:root {
    /* Dark Theme Variables (Premium Minimalist) */
    --bg-primary: #030303;
    --bg-secondary: #0a0a0a;
    --text-primary: #ffffff;
    --text-secondary: #888888;
    --accent: #d48f69;
    --accent-hover: #ffffff;
    --nav-bg: rgba(3, 3, 3, 0.8);
    --border-color: rgba(255, 255, 255, 0.1);
    --modal-bg: rgba(3, 3, 3, 0.95);
    --logo-invert: 0;
}

[data-theme="light"] {
    --bg-primary: #FBF9F6;
    --bg-secondary: #F2EFEA;
    --text-primary: #1A1A1A;
    --text-secondary: #5A5A5A;
    --accent: #a16951;
    --accent-hover: #000000;
    --nav-bg: rgba(251, 249, 246, 0.85);
    --border-color: rgba(0, 0, 0, 0.08);
    --modal-bg: rgba(251, 249, 246, 0.95);
    --logo-invert: 1;
}

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

html,
body,
#smooth-wrapper {
    overflow-x: hidden;
    max-width: 100%;
}

html {
    scroll-behavior: smooth;
    -ms-overflow-style: none;
    /* IE and Edge */
    scrollbar-width: none;
    /* Firefox */
}

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

body {
    font-family: 'JetBrains Mono', monospace;
    background-color: var(--bg-primary);
    color: var(--text-primary);
    transition: background-color 0.4s ease, color 0.4s ease;
    overflow-x: hidden;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Anton', sans-serif;
    font-weight: 300;
    /* text-transform: uppercase; */
    letter-spacing: -1px;
}

a {
    text-decoration: none;
    color: inherit;
}

/* -- Preloader -- */
.preloader {
    font-family: 'Anton', sans-serif;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: linear-gradient(135deg, var(--bg-secondary) 0%, var(--bg-primary) 50%, #000000 100%);
    z-index: 9999999;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

[data-theme="light"] .preloader {
    background: linear-gradient(135deg, var(--bg-secondary) 0%, var(--bg-primary) 50%, #e0e0e0 100%);
}

.preloader-bg-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
    pointer-events: none;
}

.glow-circle {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.15;
    animation: pulseGlow 4s infinite alternate;
}

.gc-1 {
    width: 40vw;
    height: 40vw;
    background: var(--accent);
    top: -10vw;
    left: -10vw;
}

.gc-2 {
    width: 50vw;
    height: 50vw;
    background: var(--accent);
    bottom: -15vw;
    right: -10vw;
    animation-delay: 2s;
}

[data-theme="light"] .gc-2 {
    background: var(--accent);
}

@keyframes pulseGlow {
    0% {
        transform: scale(1);
        opacity: 0.1;
    }

    100% {
        transform: scale(1.2);
        opacity: 0.2;
    }
}

.preloader-content {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
}

.preloader-text {
    font-size: clamp(3rem, 10vw, 8rem);
    font-weight: 300;
    letter-spacing: 5px;
    color: var(--text-primary);
    display: flex;
    gap: 0.5rem;
    text-transform: uppercase;
}

.char {
    display: inline-block;
}

.preloader-subtext {
    font-family: 'Anton', sans-serif;
    font-size: 1.5rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--accent);
    opacity: 0;
    text-align: center;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.5rem;
}

.preloader-subtext .word {
    display: inline-block;
}

/* -- Utilities -- */
.btn-primary {
    background-color: transparent;
    color: var(--text-primary);
    padding: 1rem 2rem;
    border: 1px solid var(--border-color);
    font-weight: 400;
    font-size: 0.85rem;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.4s ease;
    display: inline-block;
    position: relative;
    overflow: hidden;
    border-radius: 100px;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background-color: var(--text-primary);
    transition: transform 0.4s ease;
    z-index: -1;
}

.btn-primary:hover {
    color: var(--bg-primary);
    border-color: var(--text-primary);
    font-weight: 800;
}

.btn-primary:hover::before {
    transform: translateX(100%);
}

.btn-large {
    padding: 1.25rem 3rem;
    font-size: 1rem;
}

/* Static version for form submit */
.simple-contact-form .btn-primary {
    background-color: #ffffff !important;
    color: #000000 !important;
    border-color: #ffffff !important;
    font-weight: 800 !important;
    white-space: nowrap;
    flex-shrink: 0;
}

.simple-contact-form .btn-primary::before {
    display: none !important;
}

.btn-primary {
    color: var(--text-primary);
    border-color: var(--border-color);
}

.btn-primary::before {
    background-color: var(--text-primary);
}

.btn-primary:hover {
    color: var(--bg-primary);
    border-color: var(--text-primary);
}

/* Hero & Homepage Navbar Specifics (Always light on dark) */
.hero .navbar .btn-primary,
.hero .btn-primary {
    color: #ffffff !important;
    border-color: rgba(255, 255, 255, 0.4) !important;
}

.hero .navbar .btn-primary::before,
.hero .btn-primary::before {
    background-color: #ffffff !important;
}

.hero .navbar .btn-primary:hover,
.hero .btn-primary:hover {
    color: #000000 !important;
    border-color: #ffffff !important;
}

.section-header {
    margin-bottom: 5rem;
    border: none;
}

.section-header h2 {
    font-size: 3rem;
    font-weight: 200;
    letter-spacing: -1px;
    color: var(--text-primary);
    text-transform: uppercase;
}

/* -- Navbar -- */
.navbar {
    position: absolute;
    top: 0;
    width: 100%;
    z-index: 100;
    background-color: transparent;
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-color);
}

.nav-container {
    max-width: 1600px;
    margin: 0 auto;
    padding: 1.5rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    flex: 1;
    display: flex;
    justify-content: flex-start;
}

.logo .svg-logo {
    height: 40px;
    width: auto;
}



.nav-links {
    flex: 1;
    display: flex;
    justify-content: center;
    gap: 3rem;
}

.nav-links a {
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-secondary);
    transition: color 0.4s ease;
}

.hero .nav-links a {
    color: rgba(255, 255, 255, 0.7);
}

.hero .nav-links a:hover {
    color: #ffffff;
}

.nav-links a:hover {
    color: var(--text-primary);
}

.nav-back-link {
    text-decoration: none;
    color: var(--text-secondary);
    font-family: 'JetBrains Mono', monospace;
    font-size: 1.3rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: color 0.4s ease;
}

.nav-back-link:hover {
    color: var(--text-primary);
}

.back-nav-section {
    padding: 130px 10vw 16px 10vw;
    background-color: var(--bg-primary);
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-actions {
    flex: 1;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.nav-actions .btn-primary {
    font-size: 1rem;
}

.mobile-menu-btn {
    display: none;
}


/* Floating Actions (Sharp Premium) */
.floating-actions {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 1000;
}

.glass-btn {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
    color: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.75rem;
    border-radius: 100px;
}

[data-theme="light"] .glass-btn {
    background: rgba(0, 0, 0, 0.05);
    border-color: rgba(0, 0, 0, 0.1);
    color: #030303;
}

.glass-btn:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.4);
    transform: translateY(-2px);
}

[data-theme="light"] .glass-btn:hover {
    background: rgba(0, 0, 0, 0.1);
}

.theme-toggle {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    /* Elegant circle */
    font-size: 1.2rem;
    position: relative;
}

.theme-toggle span {
    position: absolute;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

[data-theme="dark"] .icon-dark {
    opacity: 0;
    transform: scale(0.5);
}

[data-theme="dark"] .icon-light {
    opacity: 1;
    transform: scale(1);
}

[data-theme="light"] .icon-dark {
    opacity: 1;
    transform: scale(1);
}

[data-theme="light"] .icon-light {
    opacity: 0;
    transform: scale(0.5);
}

/* -- Hero Section -- */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    z-index: 0;
}

section:not(.hero),
footer {
    background-color: var(--bg-primary);
    position: relative;
    z-index: 2;
}

.hero-media-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-video,
.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.05);
    /* Scales up to push watermark off-screen */
}

.hero-image {
    opacity: 0;
    transition: opacity 1s ease;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, var(--bg-primary) 0%, rgba(0, 0, 0, 0.45) 30%, rgba(0, 0, 0, 0.45) 100%);
    z-index: 1;
    pointer-events: none;
}

[data-theme="light"] .hero-overlay {
    background: linear-gradient(to top, var(--bg-primary) 0%, rgba(0, 0, 0, 0.15) 30%, rgba(0, 0, 0, 0.15) 100%);
}

.unmute-btn {
    position: absolute;
    bottom: 2.5rem;
    left: 2.5rem;
    z-index: 10;
    width: 55px;
    height: auto;
    min-height: 160px;
    padding: 1.5rem 0;
    writing-mode: vertical-rl;
    text-orientation: upright;
    text-transform: uppercase;
    letter-spacing: 2px;
    border-radius: 40px;
    text-align: center;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: #fff;
    max-width: 1200px;
    padding: 0 2rem;
    margin-top: 10vh;
    /* Push down slightly for dramatic effect */
}

.hero-title {
    font-size: clamp(2rem, 5vw, 5rem);
    line-height: 1.1;
    margin-bottom: 2rem;
    font-weight: 100;
    letter-spacing: -2px;
    word-spacing: 5px;
}

/* -- Brands Marquee -- */
.brands-marquee-section {
    font-family: 'Anton', sans-serif;
    letter-spacing: 6px;
    padding: 5rem 0 0 0;
    background-color: var(--bg-primary);
    border: none;
    overflow: hidden;
    border-top-left-radius: 50px;
    border-top-right-radius: 50px;
    box-shadow: 0 -20px 40px rgba(0, 0, 0, 0.05);
}

.marquee-wrapper {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.marquee-row {
    width: 100%;
    overflow: visible;
    white-space: nowrap;
    padding: 15px 0;
}

.marquee-content {
    display: flex;
    gap: 2rem;
    width: max-content;
    animation: marquee-left 35s linear infinite;
}

.marquee-content.reverse {
    animation: marquee-right 35s linear infinite;
}

@keyframes marquee-left {
    0% {
        transform: translateX(0);
    }

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

@keyframes marquee-right {
    0% {
        transform: translateX(-50%);
    }

    100% {
        transform: translateX(0);
    }
}

.brand-rectangle {
    width: 320px;
    height: 120px;
    background-color: var(--bg-secondary);
    border: 1px solid rgba(120, 120, 120, 0.2);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    font-weight: bold;
    color: var(--text-secondary);
    transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1);
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
    overflow: hidden;
}

.brand-rectangle::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.05) 0%, transparent 60%);
    opacity: 0;
    transition: opacity 0.5s ease;
}

.brand-rectangle:hover {
    color: var(--text-primary);
    border-color: var(--text-primary);
    transform: scale(1.05) translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.brand-rectangle:hover::before {
    opacity: 1;
}

/* -- Products Section -- */
.products-section {
    padding: 5rem 4vw 2rem;
    margin: 0 auto;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 4vw;
}

.product-card {
    position: relative;
    overflow: hidden;
    cursor: pointer;
    aspect-ratio: 650 / 490;
    background-color: transparent;
    border-radius: 20px;
}

.product-card:nth-child(5) {
    grid-column: 1 / -1;
    margin: 0 auto;
    width: calc(50% - 2vw);
    aspect-ratio: 650 / 490;
}

.product-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.2s cubic-bezier(0.19, 1, 0.22, 1), filter 1.2s ease;
}

.product-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.6s cubic-bezier(0.19, 1, 0.22, 1);
}

.product-card:hover .product-overlay {
    opacity: 1;
}

.product-card:hover img {
    transform: scale(1.08);
    filter: brightness(0.7) blur(2px);
}

.btn-discover {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: #fff;
    padding: 1rem 3rem;
    font-family: 'Anton', sans-serif;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.6s cubic-bezier(0.19, 1, 0.22, 1);
    transform: translateY(40px) scale(0.95);
    text-transform: uppercase;
    letter-spacing: 2px;
    border-radius: 100px;
}

.product-card:hover .btn-discover {
    transform: translateY(0) scale(1);
    background: rgba(255, 255, 255, 0.2);
}

.product-card:hover .btn-discover:hover {
    background: var(--text-primary);
    color: var(--bg-primary);
    border-color: var(--text-primary);
    transform: translateY(-5px) scale(1.05);
}

/* -- Authentic Section -- */
.authentic-section {
    padding: 5rem 4vw 0;
    background-color: transparent;
    border: none;
    font-family: 'Anton', sans-serif;
}

.authentic-container {
    width: 100%;
}

.authentic-title {
    font-size: 2.5rem;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    letter-spacing: 1px;
}

.authentic-interactive {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    width: 100%;
    align-items: center;
}

.authentic-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    width: 100%;
    align-items: flex-start;
}

.authentic-item {
    font-size: clamp(3rem, 6vw, 6rem);
    font-weight: normal;
    cursor: pointer;
    opacity: 0.3;
    color: var(--text-secondary);
    transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1);
    line-height: 1.2;
    padding: 1.5rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    flex-direction: column;
    width: 100%;
    text-align: left;
}

[data-theme="light"] .authentic-item {
    border-color: rgba(0, 0, 0, 0.1);
}

.authentic-item:first-child {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

[data-theme="light"] .authentic-item:first-child {
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.authentic-item:hover,
.authentic-item.active {
    color: var(--text-primary);
    opacity: 1;
    padding-left: 2rem;
}

.authentic-list:hover .authentic-item {
    opacity: 0.2;
}

.authentic-list .authentic-item:hover,
.authentic-list .authentic-item.active {
    opacity: 1;
}

.authentic-image-display {
    width: 530px;
    height: 270px;
    border-radius: 24px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
    display: block;
    justify-self: end;
}

[data-theme="light"] .authentic-image-display {
    box-shadow: none;
}

.auth-img-target {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 0.6s cubic-bezier(0.19, 1, 0.22, 1), transform 0.6s cubic-bezier(0.19, 1, 0.22, 1);
    transform: scale(1.05);
}

.auth-img-target.active {
    opacity: 1;
    transform: scale(1);
}

.inline-auth-img-container {
    display: none;
}

/* -- Services Section (Animated Glassmorphism) -- */
.services-section {
    padding: 3rem 4vw;
}

.gsap-service-header {
    padding: auto 0;
    text-align: center;
}

.services-grid {
    display: flex;
    justify-content: space-between;
    gap: 2rem;
    perspective: 1000px;
}

.glass-card {
    flex: 1;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 3rem 2rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 380px;
    transition: box-shadow 0.4s ease, border-color 0.4s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    /* GSAP will handle initial position */
}

[data-theme="light"] .glass-card {
    background: rgba(0, 0, 0, 0.03);
    border: 1px solid rgba(0, 0, 0, 0.1);
}

.glass-card:hover {
    border-color: rgba(212, 143, 105, 0.5);
    /* Accent color border */
    box-shadow: 0 20px 50px rgba(212, 143, 105, 0.15);
    /* Glowing shadow */
}

.glass-icon {
    font-size: 3rem;
    color: var(--accent);
    margin-bottom: 2rem;
}

.glass-card h3 {
    font-size: 2.2rem;
    font-weight: 300;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.glass-card p {
    font-size: 1.05rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* -- Reviews Section (Animated Glowing Carousel) -- */
.reviews-section {
    padding: 5rem 0 0;
    background-color: transparent;
    overflow: hidden;
}

.reviews-carousel {
    width: 100%;
    overflow: hidden;
    position: relative;
    -webkit-mask-image: linear-gradient(to right, transparent, black 15%, black 85%, transparent);
    mask-image: linear-gradient(to right, transparent, black 15%, black 85%, transparent);
}

.reviews-track {
    display: flex;
    align-items: center;
    gap: 3rem;
    width: max-content;
    animation: marquee-left 40s linear infinite;
    padding: 4rem 2rem;
    /* Give room for hover elevation */
}

.reviews-track:hover {
    animation-play-state: paused;
}

.review-glass-card {
    width: 400px;
    height: 400px;
    padding: 3.5rem 3rem;
    background: rgba(20, 20, 20, 0.6);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    text-align: left;
    position: relative;
    transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1), box-shadow 0.6s ease, border-color 0.6s ease;
    /* Gentle floating animation */
    animation: float 6s ease-in-out infinite;
}

[data-theme="light"] .review-glass-card {
    background: rgba(240, 240, 240, 0.6);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.review-author-header {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.avatar-circle {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    flex-shrink: 0;
}

.review-avatar {
    width: 100%;
    height: 100%;
    object-fit: contain;
    /* Optional: If the PNG still has a little too much empty space, you can carefully use transform: scale(1.1) to tweak it. */
    /* transform: scale(1.2); */
}

.review-author {
    font-family: 'Anton', sans-serif;
    font-size: 2rem;
    color: var(--text-primary);
    letter-spacing: 1px;
    margin: 0;
}

.review-title {
    font-family: 'JetBrains Mono', monospace;
    font-size: 1rem;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.review-text {
    font-size: 1.1rem;
    color: var(--text-secondary);
    line-height: 1.6;
    font-style: italic;
}

.review-glass-card:nth-child(even) {
    animation-delay: -3s;
}

.review-glass-card:hover {
    transform: translateY(-20px) scale(1.02) !important;
    border-color: rgba(212, 143, 105, 0.6);
    box-shadow: 0 30px 60px rgba(212, 143, 105, 0.2);
    animation-play-state: paused;
}

.review-text {
    font-size: 1.3rem;
    font-weight: 300;
    margin-bottom: 2.5rem;
    color: var(--text-primary);
    line-height: 1.6;
}

.review-author {
    font-size: 0.9rem;
    color: var(--accent);
    letter-spacing: 2px;
    text-transform: uppercase;
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }

    100% {
        transform: translateY(0px);
    }
}

/* -- Contact Section -- */
.contact-section {
    padding: 1rem 4rem 6rem;
    max-width: 1400px;
    margin: 0 auto;
}


.contact-container {
    display: flex;
    gap: 4rem;
    align-items: flex-start;
}

.contact-info {
    flex: 1;
    max-width: 400px;
}

.contact-info h3 {
    font-size: 2rem;
    font-weight: 300;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
    font-family: 'Anton', sans-serif;
    letter-spacing: 1px;
}

.contact-info p {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 3rem;

}

.contact-email {
    display: inline-block;
    font-size: 1.2rem;
    font-weight: 500;
    color: var(--text-primary);
    margin-bottom: 4rem;
    text-decoration: none;

    transition: opacity 0.3s ease;
}

.contact-email:hover {
    opacity: 0.7;
}

.contact-socials {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.contact-socials a {
    font-size: 1rem;
    color: var(--text-primary);
    text-decoration: none;

    transition: opacity 0.3s ease;
}

.contact-socials a:hover {
    opacity: 0.7;
}

.contact-form-wrapper {
    flex: 2;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    border-radius: 24px;
    padding: 3rem;

}

[data-theme="light"] .contact-form-wrapper {
    background: rgba(0, 0, 0, 0.03);
    border: 1px solid rgba(0, 0, 0, 0.1);
}

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

.form-row {
    display: flex;
    gap: 2rem;
}

@media (max-width: 600px) {
    .form-row {
        flex-direction: column;
    }
}

.input-group {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    flex: 1;
}

.input-group label {
    font-size: 0.95rem;
    color: var(--text-primary);
    font-weight: 400;
}

.input-group input[type="text"],
.input-group input[type="email"],
.input-group input[type="tel"],
.input-group input[type="url"],
.input-group select,
.input-group textarea {
    background: transparent;
    border: none;
    border-bottom: 1px solid var(--border-color);
    border-radius: 0;
    padding: 0.8rem 0;
    color: var(--text-primary);
    font-family: inherit;
    font-size: 1rem;
    transition: border-color 0.3s;
}

.input-group input::placeholder,
.input-group textarea::placeholder {
    color: var(--text-secondary);
    opacity: 0.5;
}

.input-group select:invalid {
    color: color-mix(in srgb, var(--text-secondary) 50%, transparent);
}

.input-group select option {
    color: var(--text-primary);
    background: var(--bg-primary);
    opacity: 1;
}

.input-group input:focus,
.input-group select:focus,
.input-group textarea:focus {
    outline: none;
    border-color: var(--text-primary);
}

.checkbox-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 0.8rem;
    margin-top: 0.5rem;
}

.custom-checkbox {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.95rem;
    color: var(--text-secondary);
    cursor: pointer;
    transition: color 0.3s;
}

.custom-checkbox:hover {
    color: var(--text-primary);
}

.custom-checkbox input[type="checkbox"] {
    accent-color: var(--accent);
    width: 16px;
    height: 16px;
}

.form-submit-row {
    font-family: 'JetBrains Mono', monospace;
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    flex-wrap: nowrap;
}

.privacy-text {
    font-size: 0.85rem;
    color: var(--text-secondary);
    font-family: 'JetBrains Mono', monospace;
    white-space: normal;
}

/* -- Enquiry Hero Section -- */
.enquiry-hero-section {
    position: relative;
    padding: 2rem 4vw;
    border: none;
    background-color: transparent;
    color: var(--text-primary);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 80vh;
    z-index: 10;
    overflow: hidden;
}

.footer-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        linear-gradient(to bottom, var(--bg-primary) 0%, transparent 15%),
        radial-gradient(ellipse at 20% 40%, rgba(210, 160, 120, 0.15) 0%, transparent 80%),
        radial-gradient(ellipse at 85% 85%, rgba(210, 160, 120, 0.05) 0%, transparent 50%);
    z-index: -1;
    pointer-events: none;
}

[data-theme="light"] .footer-overlay {
    background:
        linear-gradient(to bottom, var(--bg-primary) 0%, transparent 15%),
        radial-gradient(ellipse at 20% 40%, rgba(180, 120, 90, 0.12) 0%, transparent 70%),
        radial-gradient(ellipse at 85% 85%, rgba(180, 120, 90, 0.04) 0%, transparent 50%);
}

.footer-top-bar,
.footer-bottom-bar {
    display: flex;
    justify-content: space-between;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 2px;

    color: var(--text-secondary);
}

.footer-middle {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    margin: 6rem 0;
    gap: 6vw;
    flex: 1;
}

.footer-huge-text-wrapper {
    display: flex;
    flex-direction: column;
}

.footer-huge-text {
    font-size: clamp(3rem, 10vw, 11.5rem);
    font-family: 'Anton', sans-serif;
    line-height: 0.95;
    margin: 0;
    text-transform: uppercase;
    color: var(--text-primary);
    letter-spacing: 0px;
}

.footer-huge-text-bottom {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.footer-img {
    width: 15vw;
    height: 10vw;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.footer-cta-box {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    max-width: 350px;
    gap: 2rem;

}

.footer-cta-box p {
    font-size: 1.2rem;
    line-height: 1.4;
    color: var(--text-primary);
    font-weight: 400;
}

.btn-say-hello {
    font-size: 0.9rem;
    font-family: 'Jetbrains Mono', monospace;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.3s ease;
}

.btn-say-hello:hover {
    color: var(--text-primary);
}

/* -- Original Footer -- */
.site-footer {
    padding: 6rem 0 2rem;
    border: none;
    background-color: transparent;
}

.footer-content {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 5rem;
    position: relative;
}

.footer-logo {
    display: flex;
    align-items: center;
}

.footer-logo .svg-logo {
    height: 40px;
    width: auto;
}

/* Footer logo color inherited from global .svg-logo styles */

.footer-links {
    display: flex;
    gap: 3rem;
    padding-right: 2rem;
}

.footer-links a {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-secondary);
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--text-primary);
}

.footer-social {
    display: flex;
    gap: 2rem;
}

.footer-social a {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-secondary);
    transition: color 0.3s ease;
}

.footer-social a:hover {
    color: var(--text-primary);
}

.footer-bottom {
    text-align: center;
    color: var(--text-secondary);
    font-size: 0.75rem;
    padding: 2rem 2rem 0;
    border-top: 1px solid var(--border-color);
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
}

.back-to-top-btn {
    position: absolute;
    right: 0;
    bottom: 100%;
    margin-bottom: 1.5rem;
    background: transparent;
    border: 1px solid var(--border-color);
    color: var(--text-primary);
    padding: 0.5rem 1.5rem;
    border-radius: 100px;
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.75rem;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
}

.back-to-top-btn:hover {
    background: var(--text-primary);
    color: var(--bg-primary);
}

@media (max-width: 1024px) {
    .back-to-top-btn {
        position: relative;
        right: auto;
        bottom: auto;
        margin-top: 1rem;
        margin-bottom: 0;
        display: block;
        margin-left: auto;
        margin-right: auto;
    }

    .footer-bottom {
        padding-bottom: 2rem;
    }
}

/* -- Premium Product Overlay (SPA View) -- */
.product-view {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 2000;
    pointer-events: none;
    /* Ignore clicks when hidden */
    overflow-y: auto;
    overflow-x: hidden;
    /* Zoom out effect starting state */
    opacity: 0;
    transform: scale(1.1) translateX(100px);
    visibility: hidden;
}

.zoom-avatar {
    /* For images that have huge transparent padding (like Alex/Emily) */
    transform: scale(1.0);
    transform-origin: center 20%;
    /* Keeps the face from shifting out the top when zoomed */
}

.product-view.active {
    pointer-events: auto;
    opacity: 1;
    transform: scale(1) translateX(0);
    visibility: visible;
}

.product-view-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--bg-primary);
    z-index: -1;
}

.product-view-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 3rem 4rem 8rem;
    min-height: 100%;
}

.product-view-header {
    display: flex;
    justify-content: flex-start;
    padding-bottom: 4rem;
}

.btn-back-home {
    background: transparent;
    border: none;
    color: var(--text-primary);
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 1rem;
    font-weight: 500;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.btn-back-home .arrow {
    font-size: 1.5rem;
    transition: transform 0.3s ease;
}

.btn-back-home:hover {
    opacity: 0.7;
}

.btn-back-home:hover .arrow {
    transform: translateX(-10px);
}

.product-hero-section {
    position: relative;
    margin-bottom: 2rem;
}

.product-huge-title {
    font-size: clamp(3rem, 8vw, 8rem);
    font-family: 'Anton', sans-serif;
    color: var(--text-primary);
    text-transform: uppercase;
    line-height: 1;
    margin-bottom: 2rem;
    /* No more overlap */
    position: relative;
    z-index: 2;
    letter-spacing: 2px;
}

.product-layout-split {
    display: flex;
    gap: 4rem;
    align-items: flex-start;
}

.product-hero-image-wrapper {
    flex: 1.2;
    height: 60vh;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    z-index: 1;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
}

.product-hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-content-grid {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.pv-text-block {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.pv-text-block h4 {
    font-size: 0.9rem;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.pv-text-block p {

    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--text-secondary);
    font-weight: 300;
}

/* Responsive */
@media (max-width: 1024px) {
    .enquiry-container {
        grid-template-columns: 1fr;
    }

    .modal-content {
        flex-direction: column;
        height: 80vh;
        overflow-y: auto;
    }

    .modal-img-container,
    .modal-text {
        width: 100%;
    }

    .services-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }

    .authentic-interactive {
        gap: 4rem;
    }

    .marquee-content {
        gap: 1rem;
    }

    .brand-rectangle {
        width: 260px;
        height: 100px;
        font-size: 1.2rem;
    }
}

@media (max-width: 768px) {
    .product-grid {
        grid-template-columns: 1fr;
    }

    .product-card:nth-child(5) {
        width: 100%;
    }

    .services-grid {
        display: flex !important;
        flex-direction: column !important;
        gap: 2rem !important;
    }

    .authentic-interactive {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .authentic-item {
        font-size: clamp(2.5rem, 8vw, 4rem);
    }

    .authentic-image-display {
        width: 100%;
    }

    .hero-title {
        font-size: clamp(2rem, 10vw, 4rem);
    }

    .nav-links {
        display: none;
    }

    .nav-actions {
        display: none;
    }

    .footer-middle {
        flex-direction: column;
        align-items: flex-start;
        gap: 3rem;
    }

    .footer-huge-text-bottom {
        flex-direction: column-reverse;
        align-items: flex-start;
        gap: 0.5rem;
    }

    .footer-img {
        width: 100%;
        height: 40vw;
    }

    .footer-top-bar,
    .footer-bottom-bar {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
        text-align: center;
    }

    .review-glass-card {
        width: 300px;
        height: 350px;
        padding: 2.5rem 2rem;
    }

    .gc-1,
    .gc-2 {
        width: max(40vw, 300px);
        height: max(40vw, 300px);
    }

    .footer-content {
        flex-direction: column;
        gap: 2rem;
        align-items: center;
        text-align: center;
    }

    .footer-links {
        padding-right: 0;
        justify-content: center;
        gap: 1.5rem;
    }
}

/* -- Contact Modal -- */
.contact-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 3000;
    display: flex;
    justify-content: center;
    align-items: center;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.contact-modal.active {
    pointer-events: auto;
    opacity: 1;
}

.contact-modal-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(30, 20, 15, 0.95) 0%, rgba(10, 10, 10, 0.98) 100%);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
}

[data-theme="light"] .contact-modal-bg {
    background: radial-gradient(circle at center, rgba(240, 230, 220, 0.95) 0%, rgba(255, 255, 255, 0.98) 100%);
}

.contact-modal-content {
    position: relative;
    width: 100%;
    height: 100%;
    max-width: 100%;
    z-index: 1;
    display: flex;
    flex-direction: row;
    transform: translateY(100%);
    transition: transform 0.6s cubic-bezier(0.19, 1, 0.22, 1);
    background: var(--bg-primary);
}

.contact-modal.active .contact-modal-content {
    transform: translateY(0);
}

.contact-modal-left {
    flex: 1;
    padding: 6rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background: var(--bg-secondary);
}

.contact-modal-left h2 {
    font-size: clamp(3rem, 6vw, 6rem);
    line-height: 1;
    color: var(--text-primary);
    font-family: 'Anton', sans-serif;
    letter-spacing: 1px;
}

.contact-info p {
    font-size: 1.2rem;
    color: var(--text-secondary);
    font-family: 'JetBrains Mono', monospace;
}

.contact-modal-right {
    flex: 1;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    overflow-y: auto;
}

/* Hide mobile-only elements by default on desktop */
.mobile-nav-overlay,
.mobile-menu-btn {
    display: none;
}

.close-modal-btn {
    position: fixed;
    top: 1.5rem;
    right: 1.5rem;
    font-size: 2.5rem;
    color: var(--text-primary);
    background: transparent;
    border: none;
    cursor: pointer;
    transition: opacity 0.3s, transform 0.3s;
    z-index: 10;
}

.close-modal-btn:hover {
    opacity: 0.6;
    transform: rotate(90deg);
}

.modal-form-wrapper {
    width: 100%;
    max-width: 800px;
    max-height: none;
    overflow-y: visible;
    padding: 4rem 5rem 4rem 2rem;
    margin: auto 0;
}

@media (max-width: 1024px) {
    .contact-modal-content {
        flex-direction: column;
        overflow-y: auto;
    }

    .contact-modal-left {
        flex: none;
        padding: 4rem 2rem 2rem;
    }

    .contact-modal-right {
        align-items: flex-start;
    }

    .close-modal-btn {
        position: relative;
        top: auto;
        right: auto;
        color: var(--text-primary);
        z-index: 4000;
    }
}



/* --- COMPREHENSIVE MOBILE OPTIMIZATION (PHONE ONLY) --- */
@media (max-width: 768px) {

    /* Navbar Visibility & Alignment */
    body .navbar .nav-links,
    body .navbar .nav-actions {
        display: none !important;
    }

    .navbar {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        background-color: transparent;
        transition: background-color 0.3s ease, backdrop-filter 0.3s ease;
        height: 70px;
        z-index: 9999;
        display: flex;
        align-items: center;
    }

    .navbar.scrolled {
        background-color: var(--bg-primary) !important;
        backdrop-filter: blur(15px) !important;
        border-bottom: 1px solid var(--border-color);
    }

    .nav-container {
        padding: 0 1.5rem !important;
        width: 100% !important;
        height: 100% !important;
        max-width: none !important;
    }

    .logo .svg-logo {
        height: 32px !important;
    }

    .mobile-menu-btn {
        display: flex !important;
        flex-direction: column;
        gap: 5px;
        cursor: pointer;
        padding: 10px;
        z-index: 1001;
    }

    .mobile-menu-btn span {
        width: 22px;
        height: 2px;
        background-color: var(--text-primary);
        transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .mobile-menu-btn.active span:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
    }

    .mobile-menu-btn.active span:nth-child(2) {
        opacity: 0;
    }

    .mobile-menu-btn.active span:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
    }

    /* Mobile Overlay structure */
    .mobile-nav-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: var(--bg-primary);
        z-index: 9998;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 2rem;
        transform: translateY(-100%);
        transition: transform 0.4s ease;
        visibility: hidden;
        padding: 2rem;
    }

    .mobile-nav-overlay.active {
        transform: translateY(0);
        visibility: visible;
    }

    /* Dedicated Product Pages Image Alignment */
    .hero-section {
        height: auto;
        min-height: 40vh;
        margin-top: 70px;
        display: block;
        position: relative;
        z-index: 1;
    }

    #hero-img {
        height: 45vh;
        width: 100%;
        object-fit: cover;
        border-radius: 0;
        position: relative;
        display: block;
    }

    #content-sec {
        flex-direction: column;
        padding: 2rem 1.5rem;
        gap: 1.5rem;
        margin-top: 0;
        position: relative;
        z-index: 2;
        background-color: var(--bg-primary);
    }


    .content-text {
        padding-right: 0 !important;
    }

    .content-text h1 {
        font-size: 3rem !important;
        margin-bottom: 1.5rem !important;
    }

    .content-image {
        padding: 0 !important;
    }

    .content-image img {
        border-radius: 16px !important;
    }

    /* Process Images Grid */
    .process-images {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 10px !important;
        padding: 0 1.5rem 3rem !important;
    }

    /* Navigation Sections */
    .back-nav-section {
        display: none !important;
    }

    /* Grid Stacking Site-Wide */
    .product-grid {
        grid-template-columns: 1fr !important;
        gap: 2rem !important;
        padding: 0 1.5rem !important;
    }

    .services-grid {
        display: flex !important;
        flex-direction: column !important;
        gap: 3.5rem !important;
        /* Increased gap to prevent any perceived overlap */
        padding: 0 1.5rem 4rem !important;
        height: auto !important;
        width: 100% !important;
        box-sizing: border-box !important;
    }

    .services-grid .glass-card {
        flex: none;
        width: 100%;
        min-height: auto;
        padding: 2.5rem 1.5rem;
        margin: 0 0 1rem 0;
        /* Added bottom margin as safety */
        box-sizing: border-box;
    }

    .glass-card h3 {
        font-size: 1.75rem !important;
    }

    /* Reviews Mobile Optimization */
    .review-glass-card {
        width: 85vw !important;
        height: auto !important;
        min-height: auto !important;
        /* Allow card to grow with content */
        padding: 2.5rem 2rem !important;
        margin-right: 1.5rem !important;
        animation: float 6s ease-in-out infinite !important;
    }

    .review-text {
        font-size: 1.1rem !important;
        margin-bottom: 1.5rem !important;
    }

    .review-author {
        font-size: 1.2rem !important;
    }

    .reviews-section {
        padding: 2rem 0 0 !important;
    }

    .reviews-track {
        padding: 1rem 0 !important;
        gap: 1.5rem !important;
    }

    .section-subtitle {
        font-size: 0.75rem !important;
        margin-bottom: 1rem !important;
    }

    /* Contact Modal Mobile Alignment */
    .contact-modal-content {
        flex-direction: column !important;
        overflow-y: auto !important;
    }

    .contact-modal-left {
        padding: 4rem 1.5rem 2rem !important;
        flex: none !important;
    }

    .contact-modal-right {
        padding: 2rem 1.5rem 4rem !important;
        flex: none !important;
    }

    .contact-modal-left h2 {
        font-size: 2.5rem !important;
    }

    .modal-form-wrapper {
        padding: 2rem 1.5rem 8rem !important;
    }

    .form-submit-row {
        flex-direction: column !important;
        align-items: stretch !important;
        text-align: center;
        gap: 2rem !important;
    }

    .privacy-text {
        order: 2;
        white-space: normal !important;
    }

    .form-submit-row .btn-primary {
        order: 1;
        width: 100% !important;
        padding: 1.2rem !important;
    }

    .form-row {
        flex-direction: column !important;
        gap: 1rem !important;
    }

    /* Mobile Overlay Nav */
    .mobile-nav-overlay {
        padding: 2rem;
        gap: 2.5rem !important;
    }

    .mobile-nav-overlay a {
        font-family: 'Anton', sans-serif !important;
        font-size: 2.5rem !important;
        letter-spacing: 1px !important;
        color: var(--text-primary) !important;
        text-transform: uppercase !important;
    }

    .mobile-nav-overlay .btn-primary {
        font-family: 'JetBrains Mono', monospace !important;
        font-size: 0.9rem !important;
        padding: 1.2rem 2.5rem !important;
        white-space: nowrap !important;
        margin-top: 1rem !important;
        width: auto !important;
        display: inline-block !important;
    }

    /* General Spacing */
    .section-header {
        margin-bottom: 1.5rem !important;
        padding: 0 1.5rem !important;
    }

    .section-header h2 {
        font-size: 2.2rem !important;
    }

    /* Primary Button Mobile Optimization */
    .btn-primary {
        padding: 0.8rem 1.8rem !important;
        font-size: 0.8rem !important;
    }

    .btn-large {
        padding: 1rem 2.2rem !important;
        font-size: 0.9rem !important;
    }

    /* Fix for Get in Touch buttons on mobile */
    .content-text .btn-primary {
        text-align: left !important;
        margin: 1.5rem 0 !important;
        width: auto !important;
    }

    /* Enquiry Hero Section Mobile Spacing */
    .enquiry-hero-section {
        min-height: auto;
        height: auto;
        padding: 2rem 1.5rem;
        display: block;
        /* Change to block to allow natural content flow */
    }

    .footer-middle {
        margin: 1rem 0;
        gap: 1rem;
        display: flex;
        flex-direction: column;
    }

    .footer-huge-text {
        font-size: 3.5rem !important;
        /* Smaller text to prevent overflow */
        line-height: 1.1 !important;
    }

    .footer-huge-text-bottom {
        flex-direction: column !important;
        gap: 2rem !important;
    }

    .footer-img {
        width: 100% !important;
        height: 50vw !important;
        margin: 0.5rem 0 !important;
    }

    .floating-actions {
        bottom: 1.5rem !important;
        right: 1.5rem !important;
    }

    .glass-btn {
        width: 45px !important;
        height: 45px !important;
    }

    .hero {
        height: 100vh !important;
        min-height: 100vh !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
    }

    .hero-content {
        margin-top: 0 !important;
        padding: 0 1.5rem !important;
        text-align: center !important;
    }

    .hero-title {
        font-size: clamp(2.5rem, 10vw, 3.5rem) !important;
        margin-bottom: 1.5rem !important;
        line-height: 1.1 !important;
    }

    /* Brands Section Spacing */
    .brands-section {
        padding: 2rem 0 !important;
        margin-top: 0 !important;
    }

    .marquee-container {
        margin: 1rem 0 !important;
    }

    .authentic-section {
        padding: 4rem 1.5rem !important;
        text-align: center;
        /* Center section for better mobile feel */
    }

    .authentic-title {
        font-size: 1.8rem !important;
        /* Smaller size for mobile titles */
        margin-bottom: 2rem !important;
        line-height: 1.3 !important;
        word-wrap: break-word;
        max-width: 100%;
    }

    .authentic-list {
        padding: 0 !important;
        width: 100% !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
    }

    .authentic-item {
        font-size: clamp(2.2rem, 10vw, 3.5rem) !important;
        padding: 1.5rem 0 !important;
        opacity: 0.3;
        transition: opacity 0.4s ease;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        width: 100% !important;
        text-align: center !important;
    }

    .authentic-item.active {
        opacity: 1 !important;
    }

    .authentic-image-display {
        display: none !important;
    }

    .inline-auth-img-container {
        display: grid !important;
        grid-template-rows: 0fr;
        transition: grid-template-rows 0.5s cubic-bezier(0.19, 1, 0.22, 1), margin 0.5s cubic-bezier(0.19, 1, 0.22, 1), opacity 0.5s ease;
        margin-top: 0;
        opacity: 0;
        width: 100%;
        max-width: 90vw !important;
        /* Prevent touching screen edges */
        overflow: hidden;
        pointer-events: none;
    }

    .inline-auth-img-container>img {
        min-height: 0;
        width: 100%;
        aspect-ratio: 4 / 3 !important;
        /* Taller on mobile */
        object-fit: cover;
        border-radius: 16px !important;
        /* Scaled down border radius */
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    }

    .authentic-item.active .inline-auth-img-container {
        grid-template-rows: 1fr;
        margin-top: 1.5rem;
        margin-bottom: 0.5rem;
        opacity: 1;
        pointer-events: auto;
    }
}

/* Global Logo Visibility & Coloring */
.svg-logo {
    filter: invert(var(--logo-invert));
    transition: filter 0.3s ease;
}

[data-theme="light"] .svg-logo {
    filter: invert(1) hue-rotate(180deg);
}

/* Homepage Hero Logo Exception (Always white) */
.hero .svg-logo {
    filter: none !important;
}

.theme-toggle {
    background: none !important;
    border: 1px solid var(--border-color) !important;
    border-radius: 50% !important;
    width: 40px !important;
    height: 40px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    cursor: pointer !important;
    color: var(--text-primary) !important;
    transition: all 0.3s ease !important;
}

.theme-icon {
    width: 20px;
    height: 20px;
    background-color: var(--text-primary);
    mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M12 3v1m0 16v1m9-9h-1M4 12H3m15.364-6.364l-.707.707M6.343 17.657l-.707.707m0-11.314l.707.707m11.314 11.314l.707.707M12 8a4 4 0 100 8 4 4 0 000-8z'/%3E%3C/svg%3E") no-repeat center;
    -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M12 3v1m0 16v1m9-9h-1M4 12H3m15.364-6.364l-.707.707M6.343 17.657l-.707.707m0-11.314l.707.707m11.314 11.314l.707.707M12 8a4 4 0 100 8 4 4 0 000-8z'/%3E%3C/svg%3E") no-repeat center;
}

[data-theme="dark"] .theme-icon {
    mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M21 12.79A9 9 0 1111.21 3 7 7 0 0021 12.79z'/%3E%3C/svg%3E") no-repeat center;
    -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M21 12.79A9 9 0 1111.21 3 7 7 0 0021 12.79z'/%3E%3C/svg%3E") no-repeat center;
}

/* -- Thank You Overlay -- */
.thank-you-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: var(--modal-bg);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    z-index: 99999;
    justify-content: center;
    align-items: center;
}

.thank-you-content {
    text-align: center;
    max-width: 90vw;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.thank-you-title {
    font-family: 'Anton', sans-serif;
    font-size: clamp(2rem, 8vw, 6rem);
    color: var(--text-primary);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin: 0;
    line-height: 1;
    white-space: nowrap;
}

.thank-you-text {
    font-family: 'JetBrains Mono', monospace;
    color: var(--text-secondary);
    font-size: clamp(1rem, 2vw, 1.2rem);
    line-height: 1.6;
    margin: 0;
}

.thank-you-redirect {
    font-family: 'JetBrains Mono', monospace;
    color: var(--accent);
    font-size: 1 rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    opacity: 0.7;
    margin-top: 1rem;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        opacity: 0.3;
    }

    50% {
        opacity: 0.8;
    }

    100% {
        opacity: 0.3;
    }
}

@media (max-width: 768px) {
    .thank-you-content {
        padding: 1.5rem;
        gap: 1rem;
    }
}

/* Fix for dedicated product pages content interaction */
#content-sec,
.process-images {
    position: relative;
    z-index: 10;
}