/**
    © 2026 Sourcedbytz. All Rights Reserved.
    Unauthorized copying, modification, or distribution of this code
    is strictly prohibited and protected by international copyright laws.
    Website built with love by ikazz
 */

.announcement-bar {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    color: #fff;
    height: 35px;
    display: flex;
    align-items: center;
    overflow: hidden;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    font-family: var(--font-sans);
    font-size: 0.75rem;
    font-weight: 600;
    white-space: nowrap;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    letter-spacing: 0.05em;
}

.announcement-content {
    display: flex;
    width: max-content;
    animation: marquee 40s linear infinite;
}

.announcement-content span {
    display: inline-block;
    padding: 0 40px;
}

@keyframes marquee {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

@keyframes pulse-loader {
    0%, 100% { opacity: 0.6; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.02); }
}

#loader.fade-out {
    opacity: 0;
    pointer-events: none;
}

html,
body {
    scroll-behavior: smooth;
    overflow-x: hidden;
    width: 100%;
}

section[id] {
    scroll-margin-top: 135px;
}

:root {
    --bg-color: #000;
    --grid-line: #222;
    --text-main: #fff;
    --text-muted: #888;
    --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    --grid-size: 140px;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    background-color: var(--bg-color);
    color: var(--text-main);
    font-family: var(--font-sans);
    -webkit-font-smoothing: antialiased;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

input,
textarea {
    -webkit-user-select: text;
    -moz-user-select: text;
    -ms-user-select: text;
    user-select: text;
}

.navbar {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    padding: 1rem 2.5rem;
    position: fixed;
    top: 35px;
    left: 0;
    right: 0;
    z-index: 100;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0) 100%);
}

.nav-left {
    display: flex;
    align-items: center;
}

.nav-logo {
    height: 32px;
    object-fit: contain;
}

.nav-center {
    display: flex;
    justify-content: center;
}

.nav-pill {
    display: flex;
    position: relative;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-radius: 9999px;
    padding: 6px;
    gap: 0;
}

.nav-indicator {
    position: absolute;
    background: #fff;
    border-radius: 9999px;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 0;
    pointer-events: none;
    box-shadow: 0 2px 10px rgba(255, 255, 255, 0.2);
}

.nav-pill a {
    color: #a0a0a0;
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    padding: 10px 22px;
    border-radius: 9999px;
    transition: color 0.3s ease;
    position: relative;
    z-index: 1;
}

.nav-pill a:hover {
    color: #fff;
}

.nav-pill a.active {
    color: #000;
}

.nav-right {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 1.5rem;
}

.btn-cart {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #fff;
    padding: 10px;
    border-radius: 50%;
    cursor: pointer;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
    margin-right: 0rem;
}

.btn-cart:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: scale(1.05);
}

.cart-count {
    position: absolute;
    top: -5px;
    right: -5px;
    background: #fff;
    color: #000;
    font-size: 0.7rem;
    font-weight: 700;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-get {
    display: flex;
    align-items: center;
    gap: 8px;
    background: #fff;
    color: #000;
    text-decoration: none;
    padding: 10px 24px;
    border-radius: 9999px;
    font-size: 1rem;
    font-weight: 600;
    transition: transform 0.2s;
}

.btn-get:hover {
    transform: scale(1.03);
}

.main-wrapper {
    width: 100%;
    height: 100vh;
    min-height: 800px;
    display: flex;
    padding: 2rem;
    padding-top: 6rem;
    align-items: center;
    justify-content: center;
}

.grid-container {
    position: relative;
    width: 100%;
    max-width: 1600px;
    height: 100%;
    border: 1px solid var(--grid-line);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.interactive-grid {
    position: absolute;
    inset: 0;
    display: grid;
    z-index: 0;
    pointer-events: auto;
    overflow: hidden;
}

.grid-cell {
    border-right: 1px solid var(--grid-line);
    border-bottom: 1px solid var(--grid-line);
    background: transparent;
    transition: background 0.8s ease;
}

.grid-cell:hover {
    background: rgba(255, 255, 255, 0.08);
    transition: background 0s;
}

.crosshair {
    position: absolute;
    color: #666;
    font-family: var(--font-sans);
    font-size: 18px;
    font-weight: 300;
    line-height: 1;
    width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

.crosshair.tl {
    top: -9px;
    left: -9px;
}

.crosshair.br {
    bottom: -9px;
    right: -9px;
}

.badge-row {
    position: absolute;
    top: calc(var(--grid-size) * 1.5);
    left: var(--grid-size);
    transform: translate(0, -50%);
    z-index: 10;
    pointer-events: none;
}

.badge {
    display: flex;
    align-items: center;
    gap: 12px;
}

.badge-new {
    background: rgba(34, 34, 34, 0.8);
    backdrop-filter: blur(8px);
    border: 1px solid #444;
    color: #fff;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 9999px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.badge-text {
    font-size: 0.95rem;
    color: #bbb;
    font-weight: 500;
}

.hero-content {
    position: relative;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding-top: 2rem;
    pointer-events: none;
    z-index: 5;
}

.giant-text {
    font-size: clamp(6rem, 15vw, 16rem);
    font-weight: 700;
    letter-spacing: -0.06em;
    line-height: 1;
    color: #fff;
    margin: 0;
    position: relative;
    text-shadow: 0 0 30px rgba(0, 0, 0, 0.8);
    transform: translateX(-6vw);
}

.measure-line {
    position: absolute;
    left: -100vw;
    right: -100vw;
    border-top: 1px dashed rgba(255, 255, 255, 0.4);
}

.line-1 {
    top: 18%;
}

.line-2 {
    top: 45%;
}

.line-3 {
    bottom: 20%;
}

.line-4 {
    bottom: -5%;
}


.logo-ticker {
    width: 100%;
    background: rgba(255, 255, 255, 0.02);
    border-top: 1px solid var(--grid-line);
    border-bottom: 1px solid var(--grid-line);
    padding: 3rem 0;
    overflow: hidden;
    position: relative;
    backdrop-filter: blur(8px);
}

.logo-ticker-content {
    display: flex;
    width: max-content;
    align-items: center;
    gap: 8rem;
    animation: logo-marquee 40s linear infinite;
}

.brand-logo {
    height: 40px;
    width: auto;
    filter: brightness(0) invert(1) opacity(0.6);
    transition: filter 0.3s ease, transform 0.3s ease;
}

.brand-logo-text {
    font-size: 1.5rem;
    font-weight: 800;
    color: #fff;
    opacity: 0.6;
    letter-spacing: 0.2em;
    font-family: 'Inter', sans-serif;
    transition: opacity 0.3s ease, transform 0.3s ease;
    white-space: nowrap;
}

.brand-logo:hover,
.brand-logo-text:hover {
    opacity: 1;
    transform: scale(1.1);
}

@keyframes logo-marquee {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

.content-section {
    max-width: 1400px;
    margin: 0 auto;
    padding: 8rem 2rem;
    border-top: 1px solid var(--grid-line);
}

.section-header {
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    letter-spacing: -0.04em;
    margin-bottom: 0.5rem;
    color: var(--text-main);
}

.section-header p {
    color: var(--text-muted);
    font-size: 1.125rem;
}

.blueprint-section {
    width: 100%;
    max-width: 1600px;
    margin: 0 auto;
    border-top: 1px solid var(--grid-line);
    border-bottom: 1px solid var(--grid-line);
}

.blueprint-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    position: relative;
    overflow: hidden;
}

.bp-col {
    padding: 6rem 3rem 8rem 3rem;
    position: relative;
    display: flex;
    flex-direction: column;
}

.border-left {
    border-left: 1px solid var(--grid-line);
}

.bp-line-horizontal {
    position: absolute;
    top: 14rem;
    left: -100vw;
    right: -100vw;
    border-top: 1px dashed rgba(255, 255, 255, 0.4);
    z-index: 1;
    pointer-events: none;
}

.bp-icon {
    position: relative;
    height: 16rem;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 3rem;
    z-index: 2;
}

.holo-svg {
    width: 14rem;
    height: 14rem;
    z-index: 5;
    position: relative;
    overflow: visible;
    transition: transform 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.bp-col:hover .holo-svg {
    transform: scale(1.1) rotate(2deg) translateY(-10px);
}

.reactive-path {
    fill: none;
    stroke: #fff;
    stroke-width: 2;
    stroke-linecap: square;
    stroke-linejoin: miter;
    stroke-dasharray: 400;
    stroke-dashoffset: 400;
    animation: drawHolo 2s forwards ease-out, hologlow 4s infinite alternate;
}

.bp-col:hover .reactive-path {
    animation: pulseGlow 0.8s infinite alternate;
}

@keyframes drawHolo {
    to {
        stroke-dashoffset: 0;
    }
}

@keyframes hologlow {
    0% {
        filter: drop-shadow(0 0 4px rgba(255, 255, 255, 0.4));
    }

    100% {
        filter: drop-shadow(0 0 12px rgba(255, 255, 255, 0.8));
    }
}

@keyframes pulseGlow {
    0% {
        filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.8));
        stroke-width: 2.5;
    }

    100% {
        filter: drop-shadow(0 0 30px rgba(255, 255, 255, 1));
        stroke-width: 3.5;
    }
}

.bp-circle {
    position: absolute;
    width: 70px;
    height: 70px;
    border: 1px solid rgba(255, 255, 255, 0.6);
    border-radius: 50%;
}

.bp-circle.tl {
    top: 25%;
    left: 42%;
}

.bp-circle.tr {
    top: 25%;
    right: 42%;
}

.bp-circle.br {
    bottom: 25%;
    right: 42%;
}

.bp-title {
    font-family: var(--font-mono);
    font-size: 0.85rem;
    color: #fff;
    text-align: center;
    margin-bottom: 4rem;
}

.bp-desc {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
    max-width: 320px;
    margin: 0 auto;
}

.bp-desc p {
    margin-bottom: 1.5rem;
}

.bp-desc strong {
    color: #fff;
    font-weight: 600;
}

.bp-highlight {
    font-size: 1.85rem;
    line-height: 1.3;
    font-weight: 600;
    color: #fff;
    letter-spacing: -0.04em;
    margin: 0;
}

.specimen-section {
    padding: var(--spacing-xl) 5%;
    max-width: 1600px;
    margin: 0 auto;
    padding-top: 8rem;
    padding-bottom: 8rem;
}

.specimen-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    border: 1px solid var(--grid-line);
    background: var(--bg-color);
    margin-top: 2rem;
}

.specimen-preview {
    position: relative;
    border-right: 1px solid var(--grid-line);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 6rem 2rem 2rem;
    min-height: 600px;
}

.spec-measure {
    position: absolute;
    left: 0;
    right: 0;
    border-top: 1px dashed rgba(255, 255, 255, 0.2);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 1rem;
    pointer-events: none;
    z-index: 0;
}

.spec-measure.m-top {
    top: 20%;
}

.spec-measure.m-mid {
    top: 40%;
}

.spec-measure.m-base {
    top: 75%;
}

.m-label,
.m-val {
    font-size: 0.65rem;
    color: #aaa;
    letter-spacing: 0.1em;
    transform: translateY(-50%);
    background: var(--bg-color);
    padding: 0 4px;
    font-family: var(--font-mono, monospace);
}

.m-val {
    background: #fff;
    color: #000;
}

.specimen-image-container {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    z-index: 2;
    position: relative;
}

.image-shield {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 10;
    cursor: default;
    background: transparent;
}

.preview-img {
    width: 100%;
    height: 480px;
    object-fit: contain;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.8));
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.preview-img.fade {
    opacity: 0;
    transform: scale(0.95);
}

.specimen-details {
    width: 100%;
    margin-top: auto;
    z-index: 2;
    padding-top: 2rem;
}

.specimen-details h3 {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
    text-transform: uppercase;
    letter-spacing: -0.02em;
}

.specimen-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid var(--grid-line);
    padding-top: 1rem;
    font-family: var(--font-mono, monospace);
    color: var(--text-muted);
}

.price-tag {
    font-size: 1.2rem;
    color: #000;
    background: #fff;
    padding: 0.5rem 1rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.enquire-link {
    color: #000 !important;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.2s;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    cursor: pointer;
    border: none;
    padding: 0.5rem 1rem;
    font-size: 0.85rem;
}

.enquire-link:hover {
    background: #e0e0e0 !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 255, 255, 0.2);
}

.enquire-link:active {
    transform: translateY(0);
}

.product-holo {
    width: 18rem;
    height: 14rem;
    object-fit: contain;
    z-index: 5;
    position: relative;
    transition: transform 0.5s cubic-bezier(0.2, 0.8, 0.2, 1), filter 0.5s ease;
    filter: drop-shadow(0 15px 30px rgba(0, 0, 0, 0.8));
}

.bp-col:hover .product-holo {
    transform: scale(1.15) rotate(-3deg) translateY(-8px);
    filter: drop-shadow(0 20px 40px rgba(255, 255, 255, 0.15));
}

.specimen-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    background: var(--bg-color);
    align-self: center;
}

.sp-grid-cell {
    border-right: 1px solid var(--grid-line);
    border-bottom: 1px solid var(--grid-line);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
    background: transparent;
    padding: 1.5rem;
    position: relative;
    z-index: 1;
    aspect-ratio: 1 / 1;
}

.sp-grid-cell:nth-child(5n) {
    border-right: none;
}

.sp-grid-cell:hover {
    background: rgba(255, 255, 255, 0.03);
}

.sp-grid-cell.active {
    box-shadow: inset 0 0 0 2px #fff;
    background: rgba(255, 255, 255, 0.05);
    z-index: 2;
}

.sp-grid-cell img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.2s ease;
    filter: grayscale(1) brightness(0.7);
}

.sp-grid-cell:hover img,
.sp-grid-cell.active img {
    transform: scale(1.15);
    filter: grayscale(0) brightness(1);
}



.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-box {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--grid-line);
    border-radius: 24px;
    padding: 60px 40px;
    text-align: center;
    width: 100%;
}

.faq-box {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--grid-line);
    border-radius: 24px;
    padding: 60px 40px;
}

.faq-box h2 {
    font-size: 2rem;
    margin-bottom: 40px;
    letter-spacing: -0.02em;
    text-align: center;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.faq-question {
    font-family: var(--font-mono, monospace);
    font-size: 0.9rem;
    color: #fff;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.faq-answer {
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.6;
}

@media (max-width: 992px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

.contact-box h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.contact-box p {
    color: var(--text-muted);
    margin-bottom: 3rem;
    font-size: 1.1rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.input-group input {
    width: 100%;
    background: transparent;
    border: 1px solid #333;
    padding: 1.25rem;
    border-radius: 8px;
    color: #fff;
    font-size: 1rem;
    font-family: var(--font-sans);
    transition: border-color 0.2s;
}

.input-group input:focus {
    outline: none;
    border-color: #888;
}

.btn-primary-block {
    background: #fff;
    color: #000;
    border: none;
    padding: 1.25rem;
    border-radius: 8px;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: background 0.2s;
}

.btn-primary-block:hover {
    background: #e0e0e0;
}

.footer {
    border-top: 1px solid var(--grid-line);
    padding: 4rem 2rem;
    text-align: center;
    color: var(--text-muted);
    font-size: 0.875rem;
}

.payment-icons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.payment-icons img {
    height: 24px;
    width: auto;
    filter: grayscale(1) brightness(2) opacity(0.5);
    transition: opacity 0.3s ease;
}

.payment-icons img:hover {
    opacity: 1;
}






@media (max-width: 768px) {
    :root {
        --grid-size: 80px;
    }

    #mainNav {
        display: flex !important;
        flex-direction: column !important;
        height: auto !important;
        min-height: auto !important;
        padding: 1.5rem 1rem !important;
        gap: 1rem !important;
        position: fixed !important;
        width: 100% !important;
        left: 0 !important;
        right: 0 !important;
        top: 35px !important;
        background: rgba(0, 0, 0, 0.98) !important;
        align-items: center !important;
        justify-content: center !important;
        z-index: 2000 !important;
    }

    #mainNav .nav-left,
    #mainNav .nav-center {
        width: 100% !important;
        display: flex !important;
        justify-content: center !important;
        align-items: center !important;
        margin: 0 !important;
        padding: 0 !important;
        flex: none !important;
    }

    #mainNav .nav-logo {
        height: 28px !important;
        width: auto !important;
        display: block !important;
        margin: 0 auto !important;
    }

    .desktop-only {
        display: none !important;
        visibility: hidden !important;
        opacity: 0 !important;
        pointer-events: none !important;
        width: 0 !important;
        height: 0 !important;
        overflow: hidden !important;
    }

    .nav-pill {
        padding: 4px !important;
        width: auto !important;
        background: rgba(255, 255, 255, 0.08) !important;
    }

    .nav-pill a {
        padding: 8px 10px !important;
        font-size: 0.75rem !important;
        white-space: nowrap !important;
    }

    .nav-indicator {
        display: none !important;
    }

    .nav-pill a.active {
        background: #fff !important;
        color: #000 !important;
    }

    .giant-text {
        font-size: 11vw !important;
        line-height: 1.1 !important;
        transform: none !important;
        text-align: center !important;
        width: 100% !important;
        padding: 0 1rem !important;
        display: block !important;
        margin: 0 auto !important;
    }

    .hero-content {
        padding-top: 0 !important;
        text-align: center !important;
        width: 100% !important;
        justify-content: center !important;
        display: flex !important;
        position: relative !important;
        transform: none !important;
        left: 0 !important;
        top: 0 !important;
    }

    .badge-row {
        position: static !important;
        margin: 0 auto 1.5rem auto !important;
        justify-content: center !important;
        display: flex !important;
    }

    .blueprint-grid {
        grid-template-columns: 1fr !important;
        overflow: hidden !important;
        width: 100% !important;
    }

    .bp-line-horizontal {
        width: 100vw !important;
        left: 0 !important;
        top: 0 !important;
    }

    .measure-line {
        width: 100vw !important;
        left: 0 !important;
    }

    .border-left {
        border-left: none !important;
        border-top: 1px solid var(--grid-line) !important;
    }

    .specimen-grid {
        grid-template-columns: repeat(2, 1fr) !important;
    }

    .specimen-container {
        grid-template-columns: 1fr !important;
        width: 100% !important;
        overflow: hidden !important;
    }

    .specimen-preview {
        min-height: 400px !important;
        border-right: none !important;
        border-bottom: 1px solid var(--grid-line) !important;
    }
}

@media (max-width: 480px) {
    html {
        font-size: 85%;
    }

    .giant-text {
        font-size: 10vw !important;
    }

    .nav-pill {
        padding: 4px !important;
        width: auto !important;
        max-width: calc(100vw - 40px) !important;
        overflow-x: auto !important;
        scrollbar-width: none !important;
        white-space: nowrap !important;
        display: flex !important;
        justify-content: flex-start !important;
        gap: 5px !important;
    }

    .nav-pill::-webkit-scrollbar {
        display: none !important;
    }

    .nav-pill a {
        padding: 6px 14px !important;
        font-size: 0.75rem !important;
    }

    .specimen-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        padding: 0px !important;
    }

    .sp-grid-cell {
        padding: 0.75rem !important;
    }
}

.testimonials-section {
    padding: 100px 0;
    background: #000;
    overflow: hidden;
    position: relative;
    border-top: 1px solid var(--grid-line);
}

.section-header-centered {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 60px;
}

.section-header-centered .badge-row {
    position: static;
    justify-content: center;
    margin-bottom: 20px;
    transform: none;
}

.giant-text-small {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    letter-spacing: -0.04em;
    line-height: 1.1;
    color: #fff;
    margin: 0;
}

.section-desc {
    opacity: 0.6;
    margin-top: 20px;
    font-size: 1.1rem;
    color: var(--text-muted);
}

.testimonials-container {
    max-width: 1200px;
    margin: 0 auto;
    max-height: 740px;
    overflow: hidden;
    mask-image: linear-gradient(to bottom, transparent, black 15%, black 85%, transparent);
    -webkit-mask-image: linear-gradient(to bottom, transparent, black 15%, black 85%, transparent);
    position: relative;
}

.testimonials-grid {
    display: flex;
    justify-content: center;
    gap: 24px;
    padding-bottom: 24px;
}

.testimonials-column {
    display: flex;
    flex-direction: column;
    gap: 24px;
    width: 320px;
    animation: scroll-vertical linear infinite;
}

#col-1 {
    animation-duration: 30s;
}

#col-2 {
    animation-duration: 40s;
}

#col-3 {
    animation-duration: 35s;
}

@keyframes scroll-vertical {
    from {
        transform: translateY(0);
    }

    to {
        transform: translateY(-50%);
    }
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--grid-line);
    border-radius: 24px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    border-color: rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.04);
    transform: translateY(-5px);
}

.testimonial-text {
    font-size: 1rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 24px;
}

.author-image {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    object-fit: cover;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.author-info {
    display: flex;
    flex-direction: column;
}

.author-name {
    font-weight: 600;
    font-size: 0.95rem;
    color: #fff;
}

.author-role {
    font-size: 0.85rem;
    color: var(--text-muted);
}

@media (max-width: 1024px) {
    #col-3 {
        display: none;
    }
}

@media (max-width: 768px) {
    #col-2 {
        display: none;
    }

    .section-desc {
        font-size: 1.1rem;
        line-height: 1.6;
        margin-bottom: 3rem;
        max-width: 600px;
    }

    .giant-text-small {
        font-size: 2.5rem;
    }

    .testimonials-section {
        padding: 60px 0;
    }
}

/* Cart Drawer Styles */
.cart-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(4px);
    z-index: 3001;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
}

.cart-overlay.active {
    opacity: 1;
    visibility: visible;
}

.cart-drawer {
    position: fixed;
    top: 0;
    right: -400px;
    width: 400px;
    height: 100dvh;
    /* Dynamic viewport height for modern browsers */
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(24px);
    border-left: 1px solid rgba(255, 255, 255, 0.1);
    z-index: 3002;
    display: flex;
    flex-direction: column;
    transition: right 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    padding: 2rem;
    overflow: hidden;
    /* Prevent drawer-level overflow */
}

.cart-drawer.active {
    right: 0;
}

.cart-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.cart-header h2 {
    font-size: 1.5rem;
    letter-spacing: -0.02em;
}

.close-cart {
    background: none;
    border: none;
    color: #fff;
    font-size: 2rem;
    cursor: pointer;
    line-height: 1;
}

.cart-items {
    flex: 1;
    min-height: 0;
    /* Important for flexbox scrolling */
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    padding-right: 0;
    /* No need for padding now that scrollbar is invisible */

    /* Hide scrollbar for Chrome, Safari and Opera */
    &::-webkit-scrollbar {
        display: none;
    }

    /* Hide scrollbar for IE, Edge and Firefox */
    -ms-overflow-style: none;
    /* IE and Edge */
    scrollbar-width: none;
    /* Firefox */
}

.cart-item {
    display: flex;
    gap: 1rem;
    align-items: center;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.cart-item-img {
    width: 60px;
    height: 60px;
    object-fit: contain;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 8px;
}

.cart-item-details {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.cart-item-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.cart-item-name {
    font-size: 0.95rem;
    font-weight: 600;
}

.cart-item-sizes {
    font-size: 0.75rem;
    color: var(--text-muted);
    opacity: 0.8;
}

.cart-item-price {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.cart-item-note {
    width: 100%;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    padding: 6px 10px;
    color: #fff;
    font-size: 0.8rem;
    font-family: var(--font-sans);
}

.cart-item-note:focus {
    outline: none;
    border-color: rgba(255, 255, 255, 0.3);
}

.remove-item {
    background: rgba(255, 255, 255, 0.05);
    border: none;
    color: var(--text-muted);
    cursor: pointer;
    font-size: 1.2rem;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    padding: 0;
    line-height: 1;
    transition: all 0.2s;
}

.remove-item:hover {
    background: #ff4d4d33;
    color: #ff4d4d;
}

.empty-cart-msg {
    text-align: center;
    color: var(--text-muted);
    margin-top: 4rem;
}

.cart-footer {
    margin-top: auto;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.cart-extra-fields {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.cart-input-group {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.cart-input-group label {
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--text-muted);
}

.cart-input-group input {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 10px 14px;
    color: #fff;
    font-size: 0.9rem;
    width: 100%;
}

.discount-flex {
    display: flex;
    gap: 0.5rem;
}

.discount-flex button {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #fff;
    padding: 0 15px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 0.85rem;
    transition: background 0.2s;
}

.discount-flex button:hover {
    background: rgba(255, 255, 255, 0.2);
}

.cart-total-breakdown {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    margin-bottom: 1.5rem;
}

.breakdown-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.85rem;
    color: var(--text-muted);
}

.breakdown-row #cartTotalDisplay {
    color: #fff;
}

.total-row {
    margin-top: 0.5rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 1.25rem;
    font-weight: 700;
    color: #fff;
}


@media (max-width: 768px) {
    .nav-right {
        display: flex !important;
    }

    .btn-get.desktop-only {
        display: none !important;
    }

    .cart-drawer {
        width: 100% !important;
        right: -100% !important;
        padding: 1.5rem;
    }

    .cart-drawer.active {
        right: 0 !important;
    }

    .discount-flex button {
        padding: 12px 20px;
    }

    .mobile-cart-btn {
        position: fixed;
        top: 20px;
        right: 20px;
        z-index: 2500;
        margin: 0;
        background: rgba(255, 255, 255, 0.1);
        backdrop-filter: blur(10px);
    }
}

.btn-checkout {
    width: 100%;
    background: #fff;
    color: #000;
    border: none;
    padding: 1.25rem;
    border-radius: 12px;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: transform 0.2s;
}

.btn-checkout:hover {
    transform: scale(1.02);
}

.btn-checkout.confirm {
    background: #fff;
    color: #000;
    border: none;
    font-weight: 700;
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.4);
    animation: glowPulse 2s infinite ease-in-out;
}

@keyframes glowPulse {
    0% {
        box-shadow: 0 0 5px rgba(255, 255, 255, 0.4);
        transform: scale(1);
    }

    50% {
        box-shadow: 0 0 25px rgba(255, 255, 255, 0.8);
        transform: scale(1.02);
    }

    100% {
        box-shadow: 0 0 5px rgba(255, 255, 255, 0.4);
        transform: scale(1);
    }
}

.btn-checkout.confirm:hover {
    background: #f0f0f0;
    box-shadow: 0 0 30px rgba(255, 255, 255, 0.9);
}


@media (max-width: 480px) {
    .cart-drawer {
        width: 100% !important;
        right: -100% !important;
        padding: 1rem !important;
    }

    .cart-footer {
        padding-top: 0.75rem !important;
        gap: 0.5rem !important;
    }

    .cart-total-breakdown {
        margin-bottom: 1rem !important;
    }
}

.contact-label {
    display: block;
    text-align: left;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-muted);
    margin-bottom: 0.5rem;
    padding-left: 0.1rem;
}

.whatsapp-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #000;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6);
    z-index: 9999;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(255, 255, 255, 0.1);
    text-decoration: none;
}

.whatsapp-btn:hover {
    transform: scale(1.1) translateY(-5px);
    background: #fff;
    color: #000;
    box-shadow: 0 15px 35px rgba(255, 255, 255, 0.15);
}

.whatsapp-icon {
    width: 34px;
    height: 34px;
    object-fit: contain;
    /* Ensuring it stays B&W even if the original is colored */
    filter: brightness(0) invert(1); 
    transition: all 0.3s ease;
}

.whatsapp-btn:hover .whatsapp-icon {
    transform: scale(1.1);
    filter: brightness(0); /* Switch to black when button turns white */
}

.payment-disclaimer {
    text-align: center;
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-top: 1rem;
    opacity: 0.8;
    padding-bottom: 2rem;
}

/* Cart Drawer Stages */
.cart-stage {
    display: none;
    flex-direction: column;
    flex: 1;
    min-height: 0; /* Critical for flex scrolling */
    animation: fadeIn 0.3s ease;
}

.cart-stage.active {
    display: flex;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.shipping-form {
    display: flex;
    flex-direction: column;
    flex: 1;
    min-height: 0;
    gap: 1.25rem;
    padding-bottom: 2rem;
    overflow-y: auto;
}

.cart-input-group-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.btn-back {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-muted);
    padding: 1rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.2s;
    width: 100%;
    margin-top: 0.5rem;
}

.btn-back:hover {
    background: rgba(255, 255, 255, 0.05);
    color: #fff;
}

/* Custom scrollbar for shipping form */
.shipping-form::-webkit-scrollbar {
    width: 4px;
}

.shipping-form::-webkit-scrollbar-track {
    background: transparent;
}

.shipping-form::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 2px;
}