:root {
    --primary: #248B65;
    --primary-light: #2da376;
    --primary-dark: #1a684b;
    --bg-light: #F9FAFB;
    --text-dark: #1F2937;
    --text-gray: #6B7280;
    --white: #FFFFFF;
    --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --glass-bg: rgba(255, 255, 255, 0.7);
    --glass-border: rgba(255, 255, 255, 0.3);
    color-scheme: light;
}

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

html {
    height: 100%;
    -webkit-tap-highlight-color: transparent;
}

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

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-dark);
    background-color: #f3f6f5 !important;
    background-image: none !important;
    line-height: 1.6;
    position: relative;
    min-height: 100%;
    display: flex;
    flex-direction: column;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

/* Unlimited Dynamic Mesh Gradient Background */
.ambient-gradient-field {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    overflow: hidden;
    pointer-events: none;
    z-index: -1 !important;
}

.ambient-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(70px);
    opacity: 0.8;
    will-change: transform;
}

.ambient-blob::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 50%;
    border: 3px dashed rgba(15, 23, 42, 0.4);
    box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.8), 0 0 20px rgba(0, 0, 0, 0.15);
}

/* Blob 1 - Изумрудный (Left Margin & Top Field) */
.ambient-blob-1 {
    width: 550px;
    height: 550px;
    background: radial-gradient(circle, rgba(36, 139, 101, 0.48) 0%, rgba(36, 139, 101, 0) 70%);
    top: -100px;
    left: -150px;
    animation: driftPeripheralLeft1 26s ease-in-out infinite alternate;
}

.ambient-blob-1::after {
    border: 3px dashed #248b65;
}

/* Blob 2 - Мятный (Right Margin & Bottom Field) */
.ambient-blob-2 {
    width: 520px;
    height: 520px;
    background: radial-gradient(circle, rgba(45, 212, 191, 0.45) 0%, rgba(45, 212, 191, 0) 70%);
    bottom: -80px;
    right: -150px;
    animation: driftPeripheralRight1 30s ease-in-out infinite alternate;
}

.ambient-blob-2::after {
    border: 3px dashed #2dd4bf;
}

/* Blob 3 - Розовый (Upper Right Edge Whitespace) */
.ambient-blob-3 {
    width: 480px;
    height: 480px;
    background: radial-gradient(circle, rgba(244, 114, 182, 0.42) 0%, rgba(244, 114, 182, 0) 70%);
    top: 20vh;
    right: -120px;
    animation: driftPeripheralRight2 24s ease-in-out infinite alternate;
}

.ambient-blob-3::after {
    border: 3px dashed #f472b6;
}

/* Blob 4 - Небесно-голубой (Lower Left Edge Whitespace) */
.ambient-blob-4 {
    width: 460px;
    height: 460px;
    background: radial-gradient(circle, rgba(56, 189, 248, 0.42) 0%, rgba(56, 189, 248, 0) 70%);
    bottom: 25vh;
    left: -120px;
    animation: driftPeripheralLeft2 28s ease-in-out infinite alternate;
}

.ambient-blob-4::after {
    border: 3px dashed #38bdf8;
}

/* Outer Whitespace Trajectories (Keep text column clear & readable) */
@keyframes driftPeripheralLeft1 {
    0% {
        transform: translate(0, 0) scale(1);
    }

    50% {
        transform: translate(5vw, 40vh) scale(1.15);
    }

    100% {
        transform: translate(-2vw, 75vh) scale(0.9);
    }
}

@keyframes driftPeripheralRight1 {
    0% {
        transform: translate(0, 0) scale(1);
    }

    50% {
        transform: translate(-6vw, -35vh) scale(1.1);
    }

    100% {
        transform: translate(2vw, -70vh) scale(0.95);
    }
}

@keyframes driftPeripheralRight2 {
    0% {
        transform: translate(0, 0) scale(1);
    }

    50% {
        transform: translate(-8vw, 30vh) scale(1.2);
    }

    100% {
        transform: translate(-2vw, -25vh) scale(0.85);
    }
}

@keyframes driftPeripheralLeft2 {
    0% {
        transform: translate(0, 0) scale(1);
    }

    50% {
        transform: translate(7vw, -30vh) scale(1.15);
    }

    100% {
        transform: translate(1vw, -60vh) scale(0.9);
    }
}

body::before {
    display: none;
}

app-header,
app-footer {
    display: block;
    width: 100%;
}

main {
    flex: 1;
}

h1,
h2,
h3,
.logo-text {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

/* Header & Nav */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 10000;
    /* Higher z-index for sub-pages */
    padding: 20px 0;
    background: var(--primary);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.page-hero {
    padding: 220px 0 40px;
    background: none;
    text-align: center;
    position: relative;
}

.page-hero h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    color: var(--primary);
    margin-bottom: 20px;
}

.page-hero p {
    font-size: 1.2rem;
    color: var(--text-gray);
    max-width: 800px;
    margin: 0 auto;
}

.cta-card {
    padding: 80px 40px;
    background: white;
    border-radius: 40px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.04);
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-left: 100px;
    /* Shifted further right */
    overflow: hidden;
    /* For color mask trick */
    padding: 10px 0;
    flex-shrink: 0;
}

.logo-img {
    height: 95px;
    width: auto;
    transform: translateX(-1000px);
    filter: drop-shadow(1000px 0 0 var(--white));
}

.logo-text {
    display: none;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: clamp(8px, 1.5vw, 32px);
    margin: 0 clamp(5px, 1.2vw, 30px);
    align-items: center;
}

.nav-links li {
    display: flex;
    align-items: center;
    justify-content: center;
}

.nav-links a {
    text-decoration: none;
    color: var(--white);
    font-weight: 500;
    font-size: clamp(12px, 1vw, 15px);
    transition: var(--transition);
    white-space: nowrap;
}

@media (max-width: 1200px) and (min-width: 993px) {
    .logo-img {
        height: 80px !important;
    }

    .desktop-coop-btn {
        padding: 8px 16px !important;
        font-size: 13px !important;
    }
}

.nav-links a {
    position: relative;
    padding-bottom: 5px;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--white);
    border-radius: 2px;
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.nav-links a:hover::after {
    transform: scaleX(1);
}

.nav-links a.active {
    font-weight: 700;
}

.nav-links a.active::after {
    transform: scaleX(1);
}

.mobile-header-text {
    display: none;
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
    color: var(--white);
    font-size: 16px;
    letter-spacing: 1px;
    white-space: nowrap;
}

/* Buttons */
.btn {
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
    display: inline-block;
    border: none;
}

.btn-primary {
    background-color: var(--primary);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(36, 139, 101, 0.3);
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(36, 139, 101, 0.4);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--primary);
    color: var(--primary);
}

.header .btn-outline {
    border-color: var(--white);
    color: var(--white);
}

.header .btn-outline:hover {
    background: var(--white);
    color: var(--primary);
}

.btn-outline:hover {
    background: var(--primary);
    color: var(--white);
}

.btn-premium-animated {
    position: relative;
    background: linear-gradient(135deg, var(--primary) 0%, #1a6b4c 100%);
    color: #fff;
    border: none;
    padding: 16px 36px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 30px;
    cursor: pointer;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
    box-shadow: 0 10px 20px rgba(36, 139, 101, 0.3);
    z-index: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    text-decoration: none;
    /* override rare link states */
}

.btn-premium-animated::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transform: skewX(-20deg);
    transition: left 0.6s ease;
    z-index: -1;
}

.btn-premium-animated:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(36, 139, 101, 0.4);
    background: linear-gradient(135deg, #1a6b4c 0%, var(--primary) 100%);
    color: #fff;
    /* guarantee hover color */
}

.btn-premium-animated:hover::before {
    left: 200%;
}

.btn-premium-animated svg {
    transition: transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.btn-premium-animated:hover svg {
    transform: translateX(4px) scale(1.1);
}

/* Brand Split Section Placeholder - styles moved below */
.brands {
    margin-top: 0;
}

/* --- Ultra-Luxury Hero Design --- */
.hero-luxury-wrap {
    position: relative;
    width: 100%;
    min-height: 100vh;
    min-height: 100dvh;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding-top: 100px;
}

/* Cinematic Background Text */
.hero-bg-text {
    position: absolute;
    top: calc(50% - 75px);
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 25vw;
    font-weight: 900;
    color: rgba(0, 0, 0, 0.02);
    letter-spacing: -0.05em;
    pointer-events: none;
    z-index: 1;
    user-select: none;
}

.hero-luxury-content {
    position: relative;
    z-index: 10;
    width: 100%;
    max-width: 1400px;
    padding: 0 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.luxury-info {
    flex: 1;
    max-width: 750px;
}

.luxury-badge {
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.5em;
    color: var(--primary);
    text-transform: uppercase;
    margin-bottom: 60px;
    font-size: 2.2rem;
    color: #222;
    line-height: 1.6;
    max-width: 900px;
    margin-bottom: 120px;
}

/* Luxury Button */
.btn-minimal-luxury {
    display: inline-flex;
    align-items: center;
    gap: 25px;
    text-decoration: none;
    color: #111;
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    position: relative;
}

.btn-line {
    width: 60px;
    height: 1px;
    background: #111;
    transition: width 0.4s ease;
}

.btn-minimal-luxury:hover .btn-line {
    width: 100px;
    background: var(--primary);
}

/* Visual Stage */
.luxury-visual-stage {
    flex: 1.2;
    position: relative;
    height: 800px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.luxury-product-main {
    position: relative;
    z-index: 5;
    width: 650px;
    height: 750px;
    display: flex;
    align-items: center;
    justify-content: center;
    top: -50px;
    /* Lifted higher as requested */
}

.hero-product-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.main-lux-img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: contain;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%) scale(0.9);
    opacity: 0;
    pointer-events: none;
    filter: drop-shadow(0 30px 60px rgba(0, 0, 0, 0.15));
    z-index: 20;
    will-change: transform, opacity;
}

/* Adjust size of the 4th pack in the Hero slider to match others */
.main-lux-img[src*="porofit-extra-120"] {
    padding: 10%;
}

.main-lux-img.active {
    /* Visible by default: if the GSAP entrance animation fails to run for any
       reason (slow connection, blocked script, in-app browser quirks), the
       product image must still be shown rather than staying hidden forever.
       main.js explicitly sets opacity:0 at runtime before animating it in,
       so this default only matters as a JS-failure fallback. */
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
    pointer-events: auto;
}

.lux-reflection {
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 40px;
    background: radial-gradient(ellipse at center, rgba(0, 0, 0, 0.05) 0%, transparent 70%);
    filter: blur(10px);
    z-index: 0;
}

.lux-glow-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120%;
    height: 120%;
    background: radial-gradient(circle, rgba(36, 139, 101, 0.15) 0%, transparent 70%);
    /* Increased */
    z-index: 1;
}

/* Realistic Liquid Water Drops - Crystal Transparent */
.glass-element {
    position: absolute;
    background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.35) 0%, rgba(212, 243, 255, 0.15) 50%, rgba(36, 161, 230, 0.08) 100%);
    -webkit-backdrop-filter: blur(1px) saturate(280%);
    backdrop-filter: blur(1px) saturate(280%);
    -webkit-backdrop-filter: blur(1px) saturate(280%);
    z-index: 2;
    transition: all 0.5s ease;
    box-shadow:
        inset 5px 10px 20px rgba(0, 50, 100, 0.08),
        inset -8px -8px 20px rgba(255, 255, 255, 0.6),
        0 15px 30px rgba(36, 161, 230, 0.05),
        0 5px 10px rgba(0, 0, 0, 0.02);
    filter: blur(0.2px);
    animation: morphDrop 6s infinite ease-in-out;
    border: 1px solid rgba(212, 243, 255, 0.45);
    will-change: transform, opacity;
    margin-top: -75px;
}

.glass-element::after {
    content: "";
    position: absolute;
    top: 15%;
    left: 15%;
    width: 30%;
    height: 30%;
    background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.9), transparent);
    border-radius: 50%;
    filter: blur(1px);
}

.glass-element::before {
    content: "";
    position: absolute;
    top: 15%;
    left: 40%;
    width: 10%;
    height: 10%;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 50%;
}

.luxury-info {
    position: relative;
    z-index: 10;
    /* Ensure text is above drops */
    max-width: 600px;
    transform: translateY(-75px);
}

/* Individual organic variations and timings - TURBO SPEED */
.ge-1 {
    width: 320px;
    height: 300px;
    top: -10%;
    right: -120px;
    animation-duration: 4s;
}

.ge-2 {
    width: 180px;
    height: 160px;
    bottom: 10%;
    left: 10%;
    animation-duration: 3s;
    animation-delay: -1s;
}

.ge-3 {
    width: 90px;
    height: 85px;
    top: 10%;
    left: 0;
    animation-duration: 3.5s;
    animation-delay: -2s;
}

.ge-4 {
    width: 50px;
    height: 50px;
    bottom: 30%;
    right: 10%;
    animation-duration: 2s;
}

.ge-5 {
    width: 120px;
    height: 130px;
    top: 40%;
    right: 20%;
    animation-duration: 3.2s;
    animation-delay: -1s;
}

.ge-6 {
    width: 70px;
    height: 75px;
    bottom: 5%;
    right: 40%;
    animation-duration: 2.5s;
}

.ge-7 {
    width: 40px;
    height: 40px;
    top: calc(50% - 75px);
    left: -50px;
    animation-duration: 3.8s;
}

@keyframes morphDrop {

    0%,
    100% {
        border-radius: 42% 58% 70% 30% / 45% 45% 55% 55%;
        transform: rotate(0deg) scale(1);
    }

    33% {
        border-radius: 70% 30% 46% 54% / 30% 39% 61% 70%;
        transform: rotate(10deg) scale(1.05);
    }

    66% {
        border-radius: 100% 60% 60% 100% / 100% 100% 60% 60%;
        /* Replaced with smoother values below */
        border-radius: 30% 70% 70% 30% / 50% 30% 70% 50%;
        transform: rotate(-10deg) scale(0.95);
    }
}

/* Updated Smoother Morph */
@keyframes morphDrop {

    0%,
    100% {
        border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
        transform: rotate(0deg) scale(1);
    }

    50% {
        border-radius: 40% 60% 70% 30% / 40% 70% 30% 60%;
        transform: rotate(-5deg) scale(0.98);
    }
}

@media (max-width: 768px) {
    .glass-element {
        animation-duration: 10s !important;
        /* Slower on mobile to save CPU */
    }
}

/* Light Source */
.pure-light-source {
    position: absolute;
    top: -20%;
    left: 50%;
    width: 100vw;
    height: 100vh;
    height: 100dvh;
    background: radial-gradient(circle at center, rgba(255, 255, 255, 0.4) 0%, transparent 50%);
    pointer-events: none;
    z-index: 2;
}

@media (max-width: 992px) {
    .hero-luxury-content {
        flex-direction: column;
        text-align: center;
        padding-top: 60px;
    }

    .luxury-info {
        transform: translateY(0);
    }

    .luxury-lead {
        margin: 0 auto 40px;
    }

    .hero-bg-text {
        font-size: 20vw;
        top: 50%;
        transform: translateY(-50%);
        width: 100%;
        text-align: center;
        left: 0;
        letter-spacing: -0.05em;
    }
}

@media (max-width: 1200px) {
    .hero-bento-grid {
        grid-template-rows: auto;
        display: flex;
        flex-direction: column;
    }

    .bento-tile {
        grid-column: span 12 !important;
        height: auto;
    }
}

/* Scroll Hint */
.hero-bottom-scroll {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    z-index: 20;
}

.scroll-mouse {
    width: 26px;
    height: 42px;
    border: 2px solid var(--text-dark);
    border-radius: 20px;
    position: relative;
}

.mouse-wheel {
    width: 4px;
    height: 8px;
    background: var(--primary);
    border-radius: 2px;
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    animation: scroll-wheel 1.5s infinite;
}

@keyframes scroll-wheel {
    0% {
        transform: translate(-50%, 0);
        opacity: 0;
    }

    30% {
        opacity: 1;
    }

    100% {
        transform: translate(-50%, 15px);
        opacity: 0;
    }
}

.hero-bottom-scroll span {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--text-dark);
}

@media (max-width: 992px) {
    .hero-premium {
        padding: 120px 0 60px;
        min-height: auto;
        text-align: center;
    }

    .hero-premium-container {
        flex-direction: column;
        gap: 60px;
    }

    .hero-top-accent {
        justify-content: center;
    }

    .hero-lead {
        margin: 0 auto 40px;
    }

    .hero-actions {
        justify-content: center;
        flex-direction: column;
        gap: 20px;
    }

    .hero-trust-badge {
        border: none;
        padding: 0;
    }

    .hero-stage {
        height: 500px;
    }

    .featured-product-wrap {
        width: 300px;
    }

    .floating-item {
        width: 180px;
    }

    .stat-1 {
        left: 0;
    }
}

.brands-split {
    display: flex;
    gap: 40px;
    padding: 100px 0;
    justify-content: center;
}

.brand-side {
    flex: 1;
    border-radius: 40px;
    padding: 80px 40px;
    background: #FDFDFD;
    border: 1px solid #F3F4F6;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    color: var(--text-dark);
}

.brand-side:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.05);
}

.brand-eco:hover {
    background: linear-gradient(180deg, #f0fdf4 0%, #ffffff 100%);
    border-color: #248B6533;
}

.brand-bloomy:hover {
    background: linear-gradient(180deg, #fdf2f8 0%, #ffffff 100%);
    border-color: #E91E6333;
}

.brand-overlay {
    display: none;
}

/* Removing dark overlay for cleaner look */

.brand-content {
    position: relative;
    z-index: 5;
    width: 100%;
}

.brand-visual {
    height: 300px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 40px;
}

.flying-item {
    width: 260px;
    filter: drop-shadow(0 15px 35px rgba(0, 0, 0, 0.1));
    animation: float 5s ease-in-out infinite;
}

@keyframes float {

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

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

.brand-side h3 {
    font-size: 42px;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.brand-side p {
    color: var(--text-gray);
    font-size: 16px;
    max-width: 320px;
    margin: 0 auto 30px;
}

/* Secondary Button for Sub-brands */
.btn-brand-eco {
    color: #248B65;
    border: 1px solid #248B65;
}

.btn-brand-eco:hover {
    background: #248B65;
    color: white;
}

.btn-brand-bloomy {
    color: #E91E63;
    border: 1px solid #E91E63;
}

.btn-brand-bloomy:hover {
    background: #E91E63;
    color: white;
}

.hero-btns {
    display: flex;
    gap: 20px;
    margin-top: 40px;
}

/* Background Elements */
.hero-bg-elements {
    position: absolute;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}

.particle {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(36, 139, 101, 0.1) 0%, rgba(36, 139, 101, 0) 70%);
    filter: blur(40px);
}

.p1 {
    width: 400px;
    height: 400px;
    top: -100px;
    left: -100px;
}

.p2 {
    width: 300px;
    height: 300px;
    bottom: 10%;
    right: 5%;
}

.p3 {
    width: 200px;
    height: 200px;
    top: 15%;
    right: 40%;
}

.hero-visual {
    flex: 1;
    position: relative;
    height: 650px;
}

.floating-pack {
    position: absolute;
    width: 420px;
    filter: drop-shadow(0 30px 60px rgba(0, 0, 0, 0.2));
}

.pack-1 {
    top: 60px;
    right: 50%;
    margin-right: -100px;
    /* Adjust center gravity */
    z-index: 3;
}

.pack-1 img {
    transform: rotate(-5deg);
}

.pack-2 {
    top: 130px;
    right: 15%;
    z-index: 2;
}

.pack-2 img {
    transform: rotate(15deg);
}

.floating-pack img {
    width: 100%;
    height: auto;
}

/* Pinned Brands Section */
.brands-pin-section {
    position: relative;
    background: #f8faf9;
    padding: 100px 0;
}

.pin-container {
    position: sticky;
    top: 0;
    height: 100vh;
    height: 100dvh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0 40px;
    background: #f8faf9;
}

.brands-main-title {
    font-size: 56px;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.brands-intro-static {
    max-width: 900px;
    margin: 0 auto 50px;
    text-align: center;
}

.brand-layers-wrap {
    position: relative;
    max-width: 1100px;
    width: 100%;
    height: 550px;
    margin: 0 auto;
}

.brand-layer {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    pointer-events: none;
}

.brand-showcase-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    border-radius: 40px;
    overflow: hidden;
    height: 100%;
    background: #fff;
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.06);
}

.card-text {
    padding: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.eco-theme .card-text {
    background-color: #f0f3f1;
}

.bloomy-theme .card-text {
    background-color: #fdf2f4;
}

.card-logo {
    font-family: 'Outfit', sans-serif;
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
}

.card-text p {
    font-size: 18px;
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 40px;
}

.card-image {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
}

.card-image img {
    width: 110%;
    height: 110%;
    object-fit: contain;
}

/* Animations Fallback and Responsive Fixes */
@media (max-width: 1024px) {
    .brands-main-title {
        font-size: 38px;
    }

    .brand-layers-wrap {
        height: auto;
        min-height: 600px;
    }

    .brand-showcase-card {
        grid-template-columns: 1fr;
    }

    .card-text {
        padding: 40px;
        text-align: center;
    }

    .card-image {
        height: 300px;
        padding: 20px;
    }

    .brands-pin-section {
        height: auto !important;
    }

    .pin-container {
        position: relative !important;
        height: auto !important;
        padding: 60px 20px;
    }

    .brand-layer {
        position: relative !important;
        opacity: 1 !important;
        pointer-events: all !important;
        margin-bottom: 40px;
    }
}

/* Animations Fallback and Responsive */
@media (max-width: 1024px) {
    .grid-2-cols {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .brand-showcase-card {
        grid-template-columns: 1fr;
        height: auto;
    }

    .card-text {
        padding: 40px;
    }

    .card-image {
        height: 300px;
    }
}

/* Assortment Showcase Premium Pearlescent Background */
.assortment-showcase {
    position: relative;
    min-height: 100vh;
    min-height: 100dvh;
    overflow: visible;
    padding: 120px 0;
    display: flex;
    align-items: center;
    background: transparent;
}

.assortment-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: transparent;
    z-index: 0;
}

.bg-left,
.bg-right {
    display: none;
}

.assortment-header {
    margin-bottom: 60px;
    position: relative;
    z-index: 20;
}

.assortment-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 10;
    width: 100%;
}

.features-column {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.feature-item-v2 {
    display: flex;
    gap: 25px;
    padding: 30px;
    background: rgba(255, 255, 255, 0.4);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.6);
    border-radius: 24px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.feature-item-v2:hover {
    transform: translateX(10px);
    background: white;
    box-shadow: 0 20px 40px rgba(36, 139, 101, 0.08);
    border-color: var(--primary);
}

.feature-icon-v2 {
    width: 60px;
    height: 60px;
    background: var(--white);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.03);
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.feature-item-v2:hover .feature-icon-v2 {
    background: var(--primary);
    color: var(--white);
    transform: scale(1.1);
}

.feature-text-v2 h4 {
    font-family: 'Outfit', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.feature-text-v2 p {
    font-size: 15px;
    color: var(--text-gray);
    line-height: 1.6;
}

.features-right .feature-item {
    flex-direction: row-reverse;
    text-align: right;
}

/* Packs Animation Styles */
.assortment-visual {
    position: relative;
    height: 500px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.packs-container {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.pack {
    position: absolute;
    width: 280px;
    filter: drop-shadow(0 20px 50px rgba(0, 0, 0, 0.15));
    opacity: 0;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

.pack-main {
    z-index: 10;
}

.pack-side {
    z-index: 5;
}

/* Features Right Side */
.feature-item {
    display: flex;
    gap: 20px;
    margin-bottom: 40px;
}

.feature-icon {
    font-size: 32px;
    color: var(--primary);
    display: flex;
    align-items: flex-start;
}

.feature-icon svg {
    filter: drop-shadow(0 5px 10px rgba(36, 139, 101, 0.25));
    transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.feature-item:hover .feature-icon svg {
    transform: scale(1.15) rotate(5deg);
}

.feature-content h4 {
    font-size: 18px;
    margin-bottom: 8px;
    color: var(--text-dark);
}

.feature-content p {
    font-size: 14px;
    color: var(--text-gray);
    line-height: 1.5;
}

@media (max-width: 1200px) {
    .assortment-grid {
        grid-template-columns: 1fr;
        gap: 60px;
        text-align: center;
    }

    .features-side {
        align-items: center;
    }

    .features-right .feature-item {
        flex-direction: row;
        text-align: left;
    }

    .feature-item,
    .feature-item-v2 {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .assortment-visual {
        height: 400px;
    }

    .pack {
        width: 220px;
    }
}

.section {
    padding: 120px 0;
}

.section-header {
    margin-bottom: 60px;
}

.section-tag {
    color: var(--primary);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 13px;
    display: block;
    margin-bottom: 12px;
}

.section-title {
    font-size: 42px;
    line-height: 1.2;
}

/* Catalog */
.text-center {
    text-align: center;
}

.category-tabs {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 30px;
}

.tab-btn {
    padding: 10px 24px;
    border-radius: 30px;
    border: 1px solid #E5E7EB;
    background: transparent;
    cursor: pointer;
    font-weight: 500;
    transition: var(--transition);
}

.tab-btn.active {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.product-card {
    background: var(--bg-light);
    border-radius: 24px;
    padding: 30px;
    position: relative;
    overflow: hidden;
    transition: var(--transition);
    border: 1px solid transparent;
}

.product-card:hover {
    transform: translateY(-10px);
    background: var(--white);
    border-color: var(--primary);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
}

.product-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--primary);
    color: var(--white);
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
}

.product-img {
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.product-img img {
    max-width: 100%;
    max-height: 100%;
    transition: var(--transition);
}

.product-card:hover .product-img img {
    transform: scale(1.1);
}

.product-info h3 {
    font-size: 20px;
    margin-bottom: 10px;
}

.product-info p {
    color: var(--text-gray);
    font-size: 14px;
}

/* Production Flow */
.flow-container {
    display: flex;
    justify-content: space-between;
    gap: 40px;
    margin-top: 60px;
    position: relative;
}

.flow-step {
    flex: 1;
    position: relative;
    padding: 40px;
    background: var(--bg-light);
    border-radius: 30px;
    transition: var(--transition);
}

.flow-step:hover {
    background: var(--white);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
}

.step-num {
    font-size: 80px;
    font-weight: 800;
    color: rgba(36, 139, 101, 0.05);
    position: absolute;
    top: 20px;
    right: 30px;
    line-height: 1;
}

.step-icon {
    font-size: 40px;
    margin-bottom: 24px;
}

.flow-step h4 {
    font-size: 24px;
    margin-bottom: 12px;
}

.flow-step p {
    color: var(--text-gray);
    font-size: 15px;
}

/* Contacts */
.contact-card {
    background: linear-gradient(135deg, rgba(36, 139, 101, 0.05) 0%, rgba(36, 139, 101, 0) 100%);
    border: 1px solid #E5E7EB;
    border-radius: 40px;
    display: flex;
    padding: 80px;
    gap: 80px;
}

.contact-text {
    flex: 1;
}

.contact-text h2 {
    font-size: 48px;
    margin-bottom: 24px;
}

.contact-info-list {
    margin-top: 40px;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.contact-form-side {
    flex: 1;
    background: var(--white);
    padding: 40px;
    border-radius: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.contact-form-side form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-form-side input,
.contact-form-side textarea {
    padding: 15px 20px;
    border-radius: 12px;
    border: 1px solid #E5E7EB;
    font-family: inherit;
    font-size: 15px;
    outline: none;
    transition: var(--transition);
}

.contact-form-side input:focus,
.contact-form-side textarea:focus {
    border-color: var(--primary);
}

.w-full {
    width: 100%;
}

/* Footer */
.footer {
    padding: 60px 0;
    background: var(--bg-light);
    border-top: none;
}

.footer-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
}

.footer-socials {
    display: flex;
    gap: 20px;
}

.footer-socials a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 600;
}

/* Lang Switcher */
.lang-switcher {
    display: flex;
    gap: 5px;
    margin-right: 20px;
    background: rgba(255, 255, 255, 0.15);
    padding: 4px;
    border-radius: 30px;
}

.lang-btn {
    background: transparent;
    border: none;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
    color: rgba(255, 255, 255, 0.7);
}

.lang-btn.active {
    background: var(--primary);
    color: var(--white);
}

.header-right {
    display: flex;
    align-items: center;
}

.footer-bottom {
    text-align: center;
    color: var(--text-gray);
    font-size: 14px;
}

/* Interactive 3D Pack */
.interactive-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 80px;
}

.pack-3d-wrap {
    perspective: 1000px;
}

.pack-3d {
    width: 100%;
    max-width: 450px;
    position: relative;
    transform-style: preserve-3d;
    transition: transform 0.6s ease-out;
}

.pack-base img {
    width: 100%;
    display: block;
    filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.1));
}

.pack-flap {
    position: absolute;
    top: 32%;
    left: 42%;
    width: 44%;
    height: 38%;
    transform-origin: top;
    transition: transform 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    z-index: 5;
    transform-style: preserve-3d;
}

.flap-front {
    position: absolute;
    width: 100%;
    height: 100%;
    background: #eef2f3;
    border-radius: 15px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    box-shadow: inset 0 2px 5px rgba(255, 255, 255, 0.8);
    backface-visibility: hidden;
}

.flap-back {
    position: absolute;
    width: 100%;
    height: 100%;
    background: #d1d9dd;
    border-radius: 15px;
    transform: rotateX(180deg);
    backface-visibility: hidden;
}

.pack-3d:hover .pack-flap {
    transform: rotateX(-120deg);
}

.pack-flap-shadow {
    position: absolute;
    top: 32%;
    left: 42%;
    width: 44%;
    height: 38%;
    background: rgba(0, 0, 0, 0.1);
    border-radius: 15px;
    z-index: 1;
}

/* Responsive */
@media (max-width: 992px) {
    .hero-container {
        flex-direction: column;
        text-align: center;
        padding-top: 100px;
    }

    .hero-title {
        font-size: 48px;
    }

    .hero-visual {
        width: 100%;
        height: 350px;
    }

    .floating-pack {
        width: 200px;
    }

    .brands-split {
        flex-direction: column;
        height: auto;
    }

    .brand-side {
        padding: 60px 40px;
    }

    .stats-grid {
        grid-template-columns: 1fr;
    }

    .interactive-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .contacts-wrapper {
        grid-template-columns: 1fr;
    }

    .info-grid {
        grid-template-columns: 1fr;
    }

    .nav-links {
        display: none;
    }

    /* Basic burger menu simplification */
}

/* Modern Contacts Page Style Extensions */
.contacts-page {
    padding-bottom: 120px;
}

.glass-card {
    background: rgba(255, 255, 255, 0.7);
    -webkit-backdrop-filter: blur(25px);
    backdrop-filter: blur(25px);
    border-radius: 40px;
    padding: 60px;
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.05);
}

.contacts-wrapper {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 50px;
}

.info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
    margin-bottom: 50px;
}

.info-box {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 25px;
    background: white;
    border-radius: 24px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
}



.map-container {
    border-radius: 30px;
    overflow: hidden;
    background: white;
    padding: 10px;
}

.map-tabs {
    display: flex;
    background: #f1f5f9;
    padding: 6px;
    border-radius: 20px;
    margin-bottom: 15px;
}

.map-tab {
    flex: 1;
    padding: 12px;
    border: none;
    background: transparent;
    border-radius: 15px;
    cursor: pointer;
    font-weight: 600;
}

.map-tab.active {
    background: white;
    color: var(--primary);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}

.map-view {
    display: none;
    height: 400px;
}

.map-view.active {
    display: block;
    animation: fadeIn 0.5s ease;
}

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

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.modern-form .form-group {
    margin-bottom: 25px;
}

.modern-form input,
.modern-form textarea {
    width: 100%;
    background: rgba(248, 250, 252, 0.8);
    border: 2px solid transparent;
    padding: 22px 30px;
    border-radius: 22px;
    font-size: 16px;
}

.modern-form input:focus,
.modern-form textarea:focus {
    background: white;
    border-color: var(--primary);
    outline: none;
}

.pulse-btn {
    height: 70px;
    font-size: 1.1rem;
    border-radius: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

/* Pinterest Bento Product Grid */
.products-bento-viewport {
    height: 100vh;
    height: 100dvh;
    width: 100vw;
    background: #f8fafb;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 20px;
    /* Accounts for header */
}

.pinterest-bento-container {
    width: 95%;
    max-width: 1600px;
    height: 85vh;
    display: flex;
    gap: 30px;
    border-radius: 40px;
    overflow: hidden;
}

.bento-hero {
    flex: 6;
    border-radius: 40px;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: background 0.8s ease;
}

.bento-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    z-index: 0;
    transition: none;
    /* We will control it with GSAP */
}

.hero-bg-blob {
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.4) 0%, rgba(255, 255, 255, 0) 70%);
    border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
    animation: morphRotate 15s linear infinite;
    z-index: 1;
}

@keyframes morphRotate {
    0% {
        transform: rotate(0deg) scale(1);
        border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
    }

    50% {
        transform: rotate(180deg) scale(1.1);
        border-radius: 70% 30% 50% 50% / 30% 40% 70% 60%;
    }

    100% {
        transform: rotate(360deg) scale(1);
        border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
    }
}

.hero-content {
    position: absolute;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 5;
}

.hero-brand-title {
    position: absolute;
    top: 60px;
    left: 80px;
    font-size: 5rem;
    line-height: 1.1;
    color: #fff;
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
    z-index: 10;
    text-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.hero-product-image {
    position: relative;
    z-index: 5;
    width: 80%;
    height: 80%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-product-image img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 40px 80px rgba(0, 0, 0, 0.3));
    transform: scale(1) translateY(20px);
}

.clay-shape {
    position: absolute;
    background: rgba(255, 255, 255, 0.4);
    -webkit-backdrop-filter: blur(20px);
    backdrop-filter: blur(20px);
    border-radius: 50px;
    box-shadow: inset 10px 10px 20px rgba(255, 255, 255, 0.6), inset -10px -10px 20px rgba(0, 0, 0, 0.05), 0 20px 40px rgba(0, 0, 0, 0.1);
    z-index: 2;
    animation: float 6s ease-in-out infinite;
}

.shape-pill {
    width: 140px;
    height: 60px;
    top: 20%;
    right: 15%;
    transform: rotate(30deg);
}

.shape-sphere {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    bottom: 15%;
    left: 20%;
    background: rgba(255, 230, 230, 0.4);
}

.bento-storehouse {
    flex: 4;
    background: rgba(255, 255, 255, 0.8);
    -webkit-backdrop-filter: blur(30px);
    backdrop-filter: blur(30px);
    border: 1px solid rgba(255, 255, 255, 0.9);
    border-radius: 40px;
    padding: 50px 40px 120px;
    display: flex;
    flex-direction: column;
    position: relative;
}

.storehouse-title {
    font-size: 2rem;
    margin-bottom: 20px;
    color: var(--text-dark);
    flex-shrink: 0;
}

.storehouse-table-header {
    display: none;
    /* Removed header for grid layout */
}

.pack-filter-container {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    padding-bottom: 10px;
    margin-bottom: 10px;
    flex-shrink: 0;
}

.pack-filter-container::-webkit-scrollbar {
    height: 4px;
}

.pack-filter-container::-webkit-scrollbar-thumb {
    background: #ccc;
    border-radius: 4px;
}

.pack-btn {
    padding: 8px 16px;
    border-radius: 20px;
    border: 1px solid #ddd;
    background: white;
    cursor: pointer;
    font-weight: 600;
    white-space: nowrap;
    transition: all 0.3s ease;
    color: var(--text-gray);
    flex-shrink: 0;
}

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

.pack-btn.active {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
}

.subcat-header {
    grid-column: 1 / -1;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-top: 10px;
    margin-bottom: 5px;
    border-bottom: 1px solid #eee;
    padding-bottom: 5px;
}

.storehouse-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 20px;
    padding: 10px;
    flex: 1;
    -webkit-overflow-scrolling: touch;
    overflow-y: auto;
}

.storehouse-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding: 24px 16px;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    background: rgba(255, 255, 255, 0.5);
    border: 2px solid transparent;
    text-align: center;
    min-height: 240px;
}

.storehouse-item:hover,
.storehouse-item.active {
    background: white;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.06);
    transform: translateY(-5px);
    border: 2px solid var(--primary);
}

.item-img-wrapper {
    width: 120px;
    height: 120px;
    background: #f8fafc;
    border-radius: 24px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 15px;
    margin-bottom: 20px;
    transition: transform 0.4s ease;
}

.storehouse-item:hover .item-img-wrapper {
    transform: scale(1.05) rotate(5deg);
}

.storehouse-item span {
    display: block;
}

.col-product {
    font-size: 1.1rem !important;
    font-weight: 700 !important;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.col-spec {
    font-size: 0.85rem !important;
    color: var(--text-gray) !important;
    line-height: 1.4;
    font-weight: 400 !important;
}

.col-no {
    display: none;
    /* Hide illustrative column in card view */
}

.item-img-wrapper img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.category-nav {
    width: 100%;
    padding: 30px 0 10px;
    background: transparent;
    display: flex;
    justify-content: center;
    margin-top: 180px;
    /* Increased margin from header */
    position: relative;
    z-index: 1100;
}

.category-nav-container {
    display: flex;
    gap: 30px;
    align-items: center;
    flex-wrap: wrap;
    justify-content: center;
}

.cat-nav-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    border: none;
    background: transparent;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 12px;
}

.cat-nav-btn i,
.cat-nav-btn span {
    pointer-events: none;
    /* Crucial: click passes through to button */
}

.cat-nav-btn i {
    width: 20px;
    height: 20px;
    color: #888;
    transition: all 0.4s ease;
}

.cat-nav-btn span {
    font-size: 1rem;
    font-weight: 500;
    font-family: 'Outfit', sans-serif;
    color: #888;
    transition: all 0.4s ease;
}

.cat-nav-btn.active {
    background: white;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.cat-nav-btn.active i {
    color: var(--primary);
}

.cat-nav-btn.active span {
    color: var(--text-dark);
    font-weight: 700;
}

.cat-nav-btn:hover:not(.active) {
    background: rgba(0, 0, 0, 0.02);
}

.brand-bar {
    width: 100%;
    padding: 30px 0;
    background: #f8fafb;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 10;
}

.brand-bar-container {
    display: flex;
    background: white;
    padding: 8px;
    border-radius: 100px;
    /* High pill shape */
    gap: 10px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.04);
    transition: all 0.6s cubic-bezier(0.2, 0.8, 0.2, 1);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.brand-sw-btn {
    height: 80px;
    width: 200px;
    border-radius: 80px;
    /* Pill inside pill */
    border: none;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.4s ease;
    padding: 5px 15px;
    /* Reduced padding to allow larger logo */
    position: relative;
}

.brand-logo-img {
    max-height: 140%;
    /* Allow it to "bulge" slightly or fill completely */
    max-width: 110%;
    object-fit: contain;
    opacity: 0.6;
    transition: all 0.4s ease;
    filter: brightness(0.8);
}

/* Active State - Slidder effect */
.brand-sw-btn.active {
    background: white;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.brand-sw-btn.active .brand-logo-img {
    opacity: 1;
    filter: brightness(1);
    transform: scale(1.1);
}

/* Expanded state for initial view when no brand is picked */
.brand-bar-container.expanded {
    padding: 20px;
    gap: 40px;
    border-radius: 40px;
}

.brand-bar-container.expanded .brand-sw-btn {
    height: 200px;
    width: 350px;
    border-radius: 30px;
    background: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(0, 0, 0, 0.03);
}

.brand-bar-container.expanded .brand-logo-img {
    max-height: 180px;
    /* Larger in initial view */
    opacity: 0.8;
}

.brand-sw-btn:hover .brand-logo-img {
    opacity: 1;
    filter: brightness(1);
}

.brand-bar-container.expanded .brand-sw-btn:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    background: white;
}

.brand-sw-btn.active::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 6px;
    height: 6px;
    background: var(--primary);
    border-radius: 50%;
}


.pill-btn {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    border: none;
    background: transparent;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--text-dark);
    transition: all 0.3s ease;
}

.pill-btn:hover {
    background: rgba(0, 0, 0, 0.05);
}

.pill-btn.primary {
    background: #25282B;
}

.pill-btn.primary:hover {
    background: var(--primary);
    transform: scale(1.05);
}

/* Utility to animate hero transitions */
.hero-transition-out {
    opacity: 0;
    transform: translateY(-20px) scale(0.95);
}

.hero-transition-in {
    opacity: 1;
    transform: translateY(0) scale(1);
}

/* Coming Soon Overlay */
.coming-soon-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.4);
    -webkit-backdrop-filter: blur(25px);
    backdrop-filter: blur(25px);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    border-radius: 40px;
}

.cs-content {
    max-width: 500px;
    padding: 40px;
    background: white;
    border-radius: 30px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    transform: translateY(20px);
}

.cs-icon {
    font-size: 4rem;
    display: block;
    margin-bottom: 20px;
}

.cs-title {
    font-family: 'Outfit', sans-serif;
    font-size: 2rem;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.cs-text {
    color: var(--text-gray);
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 30px;
}

.cs-back-btn {
    padding: 14px 30px;
    border-radius: 16px;
    border: none;
    background: var(--primary);
    color: white;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cs-back-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(36, 139, 101, 0.3);
}

@media (max-width: 1024px) {
    .fullpage-catalog-viewport {
        height: auto;
        padding-bottom: 50px;
    }

    .pinterest-bento-container {
        flex-direction: column;
        height: auto;
    }
}


.fullpage-catalog-viewport {
    position: relative;
    z-index: 1;
}

/* --- New Catalog Stage CSS --- */
#stage-1 {
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: 140px;
    gap: 20px;
    -webkit-overflow-scrolling: touch;
    overflow-y: auto;
    padding-right: 10px;
}

.category-card {
    background: rgba(255, 255, 255, 0.6);
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 20px;
    padding: 25px;
    cursor: pointer;
    transition: all 0.4s ease;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.category-card:hover {
    background: #fff;
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.05);
    border-color: var(--primary);
}

.category-card h3 {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 5px;
    position: relative;
    z-index: 2;
    transition: color 0.3s ease;
}

.category-card:hover h3 {
    color: var(--primary);
}

.category-card p {
    color: var(--text-gray);
    font-size: 0.95rem;
    position: relative;
    z-index: 2;
}

.category-card::after {
    content: '';
    position: absolute;
    right: -20px;
    bottom: -20px;
    width: 100px;
    height: 100px;
    background: radial-gradient(circle, rgba(36, 139, 101, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

/* --- Product Modal CSS --- */
.product-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.4);
    -webkit-backdrop-filter: blur(25px);
    backdrop-filter: blur(25px);
    z-index: 10000;
    display: none;
    align-items: center;
    justify-content: center;
}

.product-modal-content {
    background: white;
    width: 900px;
    max-width: 90%;
    height: 600px;
    border-radius: 40px;
    display: flex;
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
}

.modal-close-btn {
    position: absolute;
    top: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: #f1f5f9;
    border-radius: 50%;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: var(--text-dark);
    transition: all 0.3s ease;
    z-index: 10;
}

.modal-close-btn:hover {
    background: #e2e8f0;
    transform: rotate(90deg);
    color: var(--primary);
}

.modal-left {
    flex: 1;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
    position: relative;
}

.modal-left::before {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    background: var(--theme-color, radial-gradient(circle, rgba(255, 255, 255, 0.8) 0%, transparent 70%));
    filter: blur(50px);
    z-index: 0;
    border-radius: 50%;
    animation: pulse 4s infinite alternate;
}

.modal-left img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 30px 60px rgba(0, 0, 0, 0.15));
    z-index: 1;
    transform: scale(1.1);
}

.modal-right {
    flex: 1.2;
    padding: 60px 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.modal-right h2 {
    font-size: 2.5rem;
    font-family: 'Outfit', sans-serif;
    line-height: 1.1;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.modal-tags {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
}

.modal-tags .tag {
    background: rgba(36, 139, 101, 0.1);
    color: var(--primary);
    padding: 6px 14px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.85rem;
}

.modal-desc {
    font-size: 1.05rem;
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 30px;
}

.modal-specs-wrap h4 {
    font-size: 1.2rem;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.modal-specs {
    list-style: none;
}

.modal-specs li {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 12px;
    color: var(--text-dark);
    font-weight: 500;
}

.modal-specs i {
    color: var(--primary);
    width: 20px;
    text-align: center;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 0.5;
    }

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


/* --- FULLPAGE CATALOG CSS --- */
.fullpage-catalog-viewport {
    max-width: 1400px;
    margin: 0 auto;
}

.catalog-pack-tabs {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
    margin-bottom: 50px;
}

.catalog-pack-tab {
    padding: 15px 30px;
    background: rgba(255, 255, 255, 0.7);
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 30px;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-gray);
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.02);
}

.catalog-pack-tab:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
    color: var(--primary);
}

.catalog-pack-tab.active {
    background: var(--primary);
    color: white;
    box-shadow: 0 10px 20px rgba(36, 139, 101, 0.3);
}

.catalog-full-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

@media (max-width: 1200px) {
    .catalog-full-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 860px) {
    .catalog-full-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width: 480px) {
    .catalog-full-grid {
        grid-template-columns: 1fr;
    }
}

.catalog-item-card {
    background: linear-gradient(rgba(255, 255, 255, 0.6), rgba(255, 255, 255, 0.6)), var(--card-bg, white);
    border-radius: 40px;
    /* More rounded */
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    cursor: pointer;
    transition: all 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
    border: 1px solid rgba(0, 0, 0, 0.04);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
    position: relative;
    overflow: hidden;
    height: 100%;
}

/* Background blob/highlight for each card */
.catalog-item-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.5) 0%, rgba(255, 255, 255, 0) 70%);
    z-index: 0;
    transition: transform 1.2s cubic-bezier(0.2, 0.8, 0.2, 1);
    transform: translate(-10%, -10%);
    pointer-events: none;
}

.catalog-item-card:hover::before {
    transform: translate(10%, 10%);
}

.catalog-item-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.08);
    border-color: rgba(255, 255, 255, 0.65);
    background: linear-gradient(rgba(255, 255, 255, 0.4), rgba(255, 255, 255, 0.4)), var(--card-bg, white);
}

.ca-img-wrap {
    width: 100%;
    height: 240px;
    /* taller images */
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    z-index: 1;
    position: relative;
    transition: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.catalog-item-card:hover .ca-img-wrap {
    transform: scale(1.1) translateY(-5px);
}

.ca-img-wrap img {
    max-width: 85%;
    max-height: 85%;
    object-fit: contain;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.12));
}

.ca-info {
    width: 100%;
    text-align: center;
    z-index: 1;
}

.ca-title {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 8px;
    transition: color 0.3s ease;
}

.catalog-item-card:hover .ca-title {
    color: #0f172a;
}

.ca-spec {
    display: inline-block;
    font-size: 0.85rem;
    font-weight: 700;
    color: #0f172a;
    background: rgba(255, 255, 255, 0.55);
    border: 1px solid rgba(255, 255, 255, 0.4);
    -webkit-backdrop-filter: blur(4px);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    padding: 6px 16px;
    border-radius: 12px;
    margin-bottom: 10px;
    transition: all 0.3s ease;
}

.catalog-item-card:hover .ca-spec {
    background: rgba(255, 255, 255, 0.75);
    border-color: rgba(255, 255, 255, 0.6);
}

.ca-view-btn {
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.4s ease;
    font-size: 0.9rem;
    font-weight: 700;
    color: #334155;
    margin-top: 15px;
    display: flex;
    align-items: center;
    gap: 8px;
    justify-content: center;
}

.catalog-item-card:hover .ca-view-btn {
    opacity: 1;
    transform: translateY(0);
    color: #0f172a;
}

/* --- Aura of Trust: Testimonials Redesign --- */
.testimonials {
    padding: 120px 0;
    background: #ffffff;
    position: relative;
    overflow: hidden;
}

.testimonials::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100vw;
    height: 100%;
    background: radial-gradient(circle at 50% 50%, rgba(36, 139, 101, 0.03) 0%, transparent 70%);
    z-index: 0;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.6);
    -webkit-backdrop-filter: blur(20px);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 50px;
    border-radius: 40px;
    height: 100%;
    display: flex;
    flex-direction: column;
    gap: 30px;
    border: 1px solid rgba(255, 255, 255, 0.8);
    box-shadow:
        0 20px 50px rgba(0, 0, 0, 0.03),
        inset 0 0 0 1px rgba(255, 255, 255, 0.5);
    transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    z-index: 1;
}

.testimonial-card:hover {
    transform: translateY(-15px) scale(1.02);
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 40px 80px rgba(36, 139, 101, 0.08);
    border-color: var(--primary);
}

.testi-rating {
    display: flex;
    gap: 5px;
    margin-bottom: -10px;
}

.star-icon {
    width: 18px;
    height: 18px;
    fill: #FFB800;
    color: #FFB800;
}

.testi-text {
    font-size: 1.25rem;
    color: var(--text-dark);
    line-height: 1.6;
    font-weight: 400;
    letter-spacing: -0.01em;
    position: relative;
}

.testi-author {
    margin-top: auto;
    display: flex;
    align-items: center;
    gap: 20px;
    padding-top: 20px;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.author-avatar {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary) 0%, #1a6d4d 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 1.2rem;
    font-family: 'Outfit', sans-serif;
    box-shadow: 0 10px 20px rgba(36, 139, 101, 0.2);
}

.author-info h4 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 4px;
    color: var(--text-dark);
}

.author-status {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Map Section */
.map-section {
    padding: 100px 0;
    background: transparent;
}

.map-container {
    height: 500px;
    border-radius: 40px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

.map-frame {
    width: 100%;
    height: 100%;
    border: none;
}

.map-switcher {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.8);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    padding: 5px;
    border-radius: 50px;
    display: flex;
    gap: 5px;
    z-index: 100;
    border: 1px solid rgba(255, 255, 255, 0.5);
}

.map-btn {
    padding: 8px 20px;
    border-radius: 50px;
    border: none;
    background: transparent;
    cursor: pointer;
    font-weight: 600;
    font-size: 13px;
    transition: var(--transition);
}

.map-btn.active {
    background: var(--primary);
    color: white;
}

/* Interactive CTA */
.cta-interactive-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin: 50px 0;
}

@media (max-width: 1024px) {
    .cta-interactive-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .cta-interactive-grid {
        grid-template-columns: 1fr;
    }
}

.cta-interactive-item {
    background: transparent;
    border: none;
    padding: 0;
    border-radius: 30px;
    -webkit-perspective: 1000px;
    perspective: 1000px;
    min-height: 260px;
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
}

.cta-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 260px;
    text-align: center;
    -webkit-transition: -webkit-transform 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
    transition: transform 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
    -webkit-transform-style: preserve-3d;
    transform-style: preserve-3d;
}

.cta-interactive-item.is-flipped .cta-card-inner {
    -webkit-transform: rotateY(180deg);
    transform: rotateY(180deg);
}

@media (hover: hover) and (pointer: fine) {
    .cta-interactive-item:hover .cta-card-inner {
        -webkit-transform: rotateY(180deg);
        transform: rotateY(180deg);
    }
}

.cta-card-front,
.cta-card-back {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    -webkit-backface-visibility: hidden !important;
    backface-visibility: hidden !important;
    border-radius: 30px;
    padding: 30px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
    /* Do NOT use overflow: hidden here as it breaks WebKit 3D backface-visibility */
}

.cta-card-front {
    background: white;
    border: 1px solid rgba(0, 0, 0, 0.05);
    color: var(--text-dark);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
    -webkit-transform: rotateY(0deg) translateZ(1px);
    transform: rotateY(0deg) translateZ(1px);
}

.cta-card-back {
    background: var(--primary);
    color: white;
    -webkit-transform: rotateY(180deg) translateZ(1px);
    transform: rotateY(180deg) translateZ(1px);
    box-shadow: 0 15px 35px rgba(36, 139, 101, 0.2);
}

.cta-icon-bg {
    position: absolute;
    width: 120px !important;
    height: 120px !important;
    stroke-width: 1.2;
    color: var(--primary);
    opacity: 0.12;
    z-index: 1;
    pointer-events: none;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.cta-card-front h4 {
    font-family: 'Outfit', sans-serif;
    font-size: 21px;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0;
    z-index: 2;
    line-height: 1.3;
}

.cta-card-back h4 {
    font-family: 'Outfit', sans-serif;
    font-size: 21px;
    font-weight: 700;
    color: white;
    margin: 0 0 10px 0;
    line-height: 1.3;
}

.cta-card-back p {
    font-size: 14px;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.95);
    margin: 0;
}

/* Mini Catalog Carousel */
.mini-catalog {
    padding: 80px 0;
}

.product-slide {
    background: white;
    padding: 30px;
    border-radius: 30px;
    text-align: center;
    transition: var(--transition);
    border: 1px solid rgba(0, 0, 0, 0.03);
}

.product-slide:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.05);
}

.product-slide img {
    width: 100%;
    height: 200px;
    object-fit: contain;
    margin-bottom: 20px;
}

/* --- Premium Mini Catalog --- */
.mini-catalog {
    background: #ffffff;
    padding: 100px 0;
}

.product-card-slide {
    padding: 20px 0 50px;
}

.product-card {
    background: white;
    border-radius: 30px;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    border: 1px solid #f0f0f0;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.08);
    border-color: var(--primary);
}

.product-card-visual {
    height: 320px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 40px;
    transition: background 0.5s ease;
}

.product-card-visual img {
    max-width: 100%;
    max-height: 100%;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.1));
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.product-card:hover .product-card-visual img {
    transform: scale(1.1) rotate(-5deg);
}

/* Tinted Backgrounds */
.bg-green-soft {
    background: #f0fdf4;
}

.bg-pink-soft {
    background: #fdf2f8;
}

.bg-dark-soft {
    background: #f9fafb;
}

.bg-green-vibrant {
    background: #ecfdf5;
}

.bg-blue-soft {
    background: #eff6ff;
}

.product-card-tag {
    position: absolute;
    top: 20px;
    right: 20px;
    background: white;
    padding: 6px 15px;
    border-radius: 100px;
    font-size: 11px;
    font-weight: 800;
    color: var(--text-dark);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    text-transform: uppercase;
}

.product-card-info {
    padding: 35px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.product-card-info h4 {
    font-size: 24px;
    margin-bottom: 15px;
    color: var(--text-dark);
    font-family: 'Outfit', sans-serif;
}

.product-card-info p {
    font-size: 14px;
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 25px;
}

.product-card-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 30px;
}

.product-card-meta span {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    font-weight: 600;
    color: #4b5563;
}

.product-card-meta i {
    width: 14px;
    color: var(--primary);
}

.btn-card-luxury {
    width: 100%;
    padding: 16px;
    border-radius: 15px;
    border: 1px solid #e5e7eb;
    background: white;
    color: var(--text-dark);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: auto;
}

.btn-card-luxury:hover {
    background: var(--text-dark);
    color: white;
    border-color: var(--text-dark);
    transform: scale(1.02);
}

/* Custom Swiper Buttons */
.lux-swiper-btn {
    color: var(--text-dark);
    width: 60px;
    height: 60px;
    background: white;
    border-radius: 50%;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    top: calc(50% - 75px);
}

.lux-swiper-btn::after {
    font-size: 18px;
    font-weight: 900;
}

.lux-swiper-btn:hover {
    background: var(--primary);
    color: white;
}

/* --- Ultra-Premium Showcase --- */
.premium-showcase {
    position: relative;
    padding: 150px 0;
    background: #ffffff;
    overflow: hidden;
}

.showcase-bg-text {
    position: absolute;
    top: calc(50% - 75px);
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 20vw;
    font-weight: 900;
    color: rgba(0, 0, 0, 0.01);
    z-index: 1;
    pointer-events: none;
    user-select: none;
}

.showcase-main-title {
    font-size: clamp(3rem, 5vw, 5rem);
    font-weight: 300;
    margin-top: 20px;
    letter-spacing: -0.02em;
}

.showcase-display {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 100px;
    margin-top: 80px;
    position: relative;
    z-index: 10;
}

.showcase-info {
    flex: 1;
    max-width: 500px;
}

.showcase-counter {
    display: flex;
    align-items: center;
    gap: 15px;
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    margin-bottom: 40px;
}

.current-num {
    font-size: 32px;
    color: var(--primary);
}

.divider {
    font-size: 20px;
    color: #ddd;
}

.total-num {
    font-size: 18px;
    color: #bbb;
}

.showcase-details {
    display: none;
    animation: fadeUp 0.8s ease forwards;
}

.showcase-details.active {
    display: block;
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.product-title {
    font-size: 48px;
    margin-bottom: 20px;
    font-weight: 700;
    color: #111;
}

.product-desc {
    font-size: 18px;
    color: #666;
    line-height: 1.7;
    margin-bottom: 40px;
}

.product-specs {
    display: flex;
    gap: 40px;
    margin-bottom: 50px;
}

.spec-item {
    display: flex;
    flex-direction: column;
}

.spec-label {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #bbb;
    margin-bottom: 5px;
}

.spec-value {
    font-size: 18px;
    font-weight: 700;
    color: #333;
}

.showcase-navigation {
    display: flex;
    gap: 20px;
}

.showcase-nav-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 1px solid #eee;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    color: #111;
}

.showcase-nav-btn:hover {
    background: var(--text-dark);
    color: white;
    border-color: var(--text-dark);
    transform: scale(1.1);
}

/* Visual Side */
.showcase-visual {
    flex: 1.5;
    height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.product-stage {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.showcase-img {
    position: absolute;
    max-width: 80%;
    height: auto;
    opacity: 0;
    transform: scale(0.8) rotate(10deg);
    transition: all 1s cubic-bezier(0.16, 1, 0.3, 1);
    filter: drop-shadow(0 30px 60px rgba(0, 0, 0, 0.1));
    z-index: 1;
}

.showcase-img.active {
    opacity: 1;
    transform: scale(1) rotate(0);
    z-index: 5;
}

.stage-glow {
    position: absolute;
    width: 80%;
    height: 80%;
    background: radial-gradient(circle, rgba(36, 139, 101, 0.05) 0%, transparent 70%);
    z-index: 0;
}

.stage-reflection {
    position: absolute;
    bottom: 0;
    width: 60%;
    height: 40px;
    background: radial-gradient(ellipse at center, rgba(0, 0, 0, 0.03) 0%, transparent 70%);
    filter: blur(10px);
}

/* Selector Bar */
.showcase-selector {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 100px;
    border-top: 1px solid #eee;
    padding-top: 40px;
}

.selector-item {
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    opacity: 0.4;
    transition: all 0.3s ease;
}

.selector-item.active {
    opacity: 1;
}

.selector-dot {
    width: 8px;
    height: 8px;
    background: #ccc;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.selector-item.active .selector-dot {
    background: var(--primary);
    transform: scale(1.5);
}

.selector-name {
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

@media (max-width: 992px) {
    .showcase-display {
        flex-direction: column;
        gap: 40px;
        text-align: center;
    }

    .product-specs {
        justify-content: center;
    }

    .showcase-navigation {
        justify-content: center;
    }

    .showcase-visual {
        height: 400px;
    }

    .showcase-selector {
        flex-wrap: wrap;
        gap: 20px;
    }
}

/* --- Sovereign Showcase: Ultra-Luxury --- */
.sovereign-showcase {
    position: relative;
    padding: 100px 0;
    min-height: 100vh;
    min-height: 100dvh;
    display: flex;
    align-items: center;
    background: #0a0a0a;
    color: white;
    overflow: hidden;
}

.sovereign-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 50%, rgba(36, 139, 101, 0.1) 0%, transparent 70%);
    transition: background 1s ease;
    z-index: 0;
}

.sovereign-watermark {
    position: absolute;
    top: calc(50% - 75px);
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 25vw;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.03);
    white-space: nowrap;
    z-index: 1;
    pointer-events: none;
    letter-spacing: -0.05em;
    transition: all 1s cubic-bezier(0.16, 1, 0.3, 1);
}

.sovereign-content {
    position: relative;
    z-index: 10;
    width: 100%;
}

.sovereign-header {
    margin-bottom: 60px;
    text-align: center;
}

.sovereign-tag {
    font-size: 12px;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--primary);
    margin-bottom: 10px;
    display: block;
}

.sovereign-title {
    font-size: clamp(2rem, 4vw, 4rem);
    font-weight: 300;
    letter-spacing: -0.02em;
}

.sovereign-main {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 80px;
    align-items: center;
}

.sovereign-product-wrap {
    position: relative;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.sovereign-img {
    position: absolute;
    max-width: 90%;
    max-height: 100%;
    opacity: 0;
    transform: scale(0.7) translateY(50px);
    transition: all 1s cubic-bezier(0.23, 1, 0.32, 1);
    filter: drop-shadow(0 50px 100px rgba(0, 0, 0, 0.5));
}

.sovereign-img.active {
    opacity: 1;
    transform: scale(1) translateY(0);
}

.sovereign-glow {
    position: absolute;
    width: 300px;
    height: 300px;
    background: var(--primary);
    filter: blur(150px);
    opacity: 0.2;
    z-index: -1;
}

.sovereign-details {
    padding-left: 40px;
    border-left: 1px solid rgba(255, 255, 255, 0.1);
}

.sovereign-info {
    display: none;
    animation: sovFade 0.8s ease forwards;
}

.sovereign-info.active {
    display: block;
}

@keyframes sovFade {
    from {
        opacity: 0;
        x: 20px;
    }

    to {
        opacity: 1;
        x: 0;
    }
}

.sov-name {
    font-size: 64px;
    font-weight: 700;
    margin-bottom: 25px;
}

.sov-desc {
    font-size: 24px;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.6;
    margin-bottom: 50px;
}

.sov-meta {
    display: flex;
    gap: 50px;
}

.sov-meta-item span {
    display: block;
    font-size: 11px;
    letter-spacing: 2px;
    color: rgba(255, 255, 255, 0.4);
    margin-bottom: 8px;
}

.sov-meta-item strong {
    font-size: 20px;
    font-weight: 600;
}

.sovereign-nav {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin-top: 80px;
}

.sov-nav-item {
    cursor: pointer;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
}

.sov-nav-num {
    display: block;
    font-family: 'Outfit', sans-serif;
    font-size: 24px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.sov-nav-label {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: rgba(255, 255, 255, 0.3);
    margin-top: 5px;
    display: block;
}

.sov-nav-item.active .sov-nav-num {
    color: var(--primary);
    transform: scale(1.2);
}

.sov-nav-item.active .sov-nav-label {
    color: white;
}

.sov-nav-item::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.sov-nav-item.active::after {
    width: 30px;
}

@media (max-width: 992px) {
    .sovereign-main {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }

    .sovereign-details {
        padding-left: 0;
        border-left: none;
    }

    .sov-meta {
        justify-content: center;
    }

    .sovereign-nav {
        gap: 20px;
        flex-wrap: wrap;
    }
}

/* --- Pure Prism Showcase: Ultra-Light Luxury --- */
.prism-showcase {
    position: relative;
    padding: 120px 0;
    background: #ffffff;
    overflow: hidden;
}

.prism-halo {
    position: absolute;
    top: calc(50% - 75px);
    left: 40%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(0, 0, 0, 0.02) 0%, transparent 70%);
    z-index: 0;
    pointer-events: none;
}

.prism-badge {
    font-size: 11px;
    letter-spacing: 3px;
    color: #bbb;
    text-transform: uppercase;
    display: block;
    margin-bottom: 10px;
}

.prism-main-title {
    font-size: 42px;
    font-weight: 300;
    color: var(--text-dark);
    margin-bottom: 60px;
}

.prism-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 10;
}

.prism-stage {
    position: relative;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.prism-product-view {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.prism-img {
    position: absolute;
    max-width: 80%;
    height: auto;
    opacity: 0;
    transform: scale(0.9) translateX(-30px);
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.05));
}

.prism-img.active {
    opacity: 1;
    transform: scale(1) translateX(0);
}

.prism-info-panel {
    background: rgba(255, 255, 255, 0.8);
    -webkit-backdrop-filter: blur(20px);
    backdrop-filter: blur(20px);
    border: 1px solid #f0f0f0;
    border-radius: 40px;
    padding: 60px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.02);
}

.prism-num {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    color: var(--primary);
    font-size: 14px;
    margin-bottom: 20px;
    display: block;
}

.prism-name {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #111;
}

.prism-desc {
    font-size: 16px;
    color: #777;
    line-height: 1.6;
    margin-bottom: 40px;
}

.prism-specs {
    border-top: 1px solid #eee;
    padding-top: 30px;
    margin-bottom: 40px;
}

.spec-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
}

.spec-row .label {
    font-size: 12px;
    color: #bbb;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.spec-row .value {
    font-size: 14px;
    font-weight: 700;
    color: #333;
}

.btn-prism-more {
    width: 100%;
    padding: 18px;
    border-radius: 20px;
    border: none;
    background: var(--text-dark);
    color: white;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 2px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-prism-more:hover {
    background: var(--primary);
    transform: translateY(-5px);
}

.prism-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid #f5f5f5;
}

.prism-nav-btn {
    width: 40px;
    height: 40px;
    border: none;
    background: transparent;
    cursor: pointer;
    color: #ccc;
    transition: color 0.3s ease;
}

.prism-nav-btn:hover {
    color: var(--text-dark);
}

.prism-dots {
    display: flex;
    gap: 12px;
}

.prism-dot {
    width: 6px;
    height: 6px;
    background: #eee;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
}

.prism-dot.active {
    background: var(--primary);
    transform: scale(1.5);
}

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

    .prism-info-panel {
        padding: 40px;
    }

    .prism-stage {
        height: 350px;
    }
}

/* --- Sovereign Showcase: Light Luxury Version --- */
.sovereign-showcase.light {
    background: #ffffff;
    color: #111111;
}

.sovereign-showcase.light .sovereign-bg-overlay {
    background: radial-gradient(circle at 50% 50%, rgba(36, 139, 101, 0.05) 0%, transparent 70%);
}

.sovereign-showcase.light .sovereign-watermark {
    color: rgba(0, 0, 0, 0.02);
}

.sovereign-showcase.light .sov-desc {
    color: #666;
}

.sovereign-showcase.light .sov-meta-item span {
    color: #999;
}

.sovereign-showcase.light .sov-meta-item strong {
    color: #111;
}

.sovereign-showcase.light .sov-nav-num {
    color: #eee;
}

.sovereign-showcase.light .sov-nav-label {
    color: #aaa;
}

.sovereign-showcase.light .sov-nav-item.active .sov-nav-num {
    color: var(--primary);
}

.sovereign-showcase.light .sov-nav-item.active .sov-nav-label {
    color: #111;
}

.sovereign-showcase.light .sovereign-details {
    border-left: 1px solid #eee;
}

.sovereign-showcase.light .sovereign-img {
    filter: drop-shadow(0 30px 60px rgba(0, 0, 0, 0.08));
}

/* Product Categories Grid */
.product-categories {
    padding: 120px 0;
    background: #fff;
    position: relative;
    overflow: hidden;
}

.category-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 60px;
}

.category-card {
    position: relative;
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 24px;
    padding: 50px 40px;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
}

.category-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary);
    box-shadow: 0 20px 40px rgba(36, 139, 101, 0.1);
}

.category-icon {
    width: 80px;
    height: 80px;
    background: rgba(36, 139, 101, 0.05);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    margin-bottom: 25px;
    transition: all 0.5s ease;
}

.category-card:hover .category-icon {
    background: var(--primary);
    color: #fff;
    transform: scale(1.1) rotate(5deg);
}

.category-card h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0;
    z-index: 2;
}

.card-bg-icon {
    position: absolute;
    right: -20px;
    bottom: -20px;
    width: 120px;
    height: 120px;
    color: var(--primary);
    transition: all 0.6s ease;
    pointer-events: none;
    z-index: 1;
}

.category-card:hover .card-bg-icon {
    transform: scale(1.2) rotate(-10deg);
    opacity: 0.08;
}

@media (max-width: 992px) {
    .category-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

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

    .category-card {
        padding: 40px 30px;
    }
}

/* Hero Category Layout */
.hero-cat-container {
    position: relative;
    z-index: 10;
    padding: 60px 0 100px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero-cat-header {
    text-align: center;
    margin-bottom: 60px;
}

.hero-cat-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    width: 100%;
    max-width: 1100px;
}

.hero-cat-card {
    background: rgba(255, 255, 255, 0.6);
    -webkit-backdrop-filter: blur(20px);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 30px;
    padding: 40px 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
    transition: all 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
    cursor: pointer;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05);
}

.hero-cat-card:hover {
    transform: translateY(-10px) scale(1.02);
    background: rgba(255, 255, 255, 0.9);
    border-color: var(--primary);
    box-shadow: 0 25px 50px rgba(36, 139, 101, 0.15);
}

.hero-cat-icon {
    width: 70px;
    height: 70px;
    background: rgba(36, 139, 101, 0.08);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    transition: all 0.4s ease;
}

.hero-cat-card:hover .hero-cat-icon {
    background: var(--primary);
    color: #fff;
    transform: rotate(-10deg);
}

.hero-cat-card h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0;
    letter-spacing: 0.5px;
}

@media (max-width: 992px) {
    .hero-cat-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .hero-cat-grid {
        grid-template-columns: 1fr;
    }

    .hero-cat-container {
        padding: 40px 0;
    }
}

/* Radical Bento Category Design */
.bento-categories {
    padding: 140px 0;
    background: #fdfdfd;
    position: relative;
    overflow: hidden;
}

.bento-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 240px;
    gap: 25px;
    margin-top: 60px;
}

.bento-item {
    position: relative;
    border-radius: 40px;
    overflow: hidden;
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.03);
    transition: all 0.7s cubic-bezier(0.15, 0.85, 0.35, 1);
    cursor: pointer;
    display: flex;
    flex-direction: column;
    padding: 40px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.02);
}

/* Specific Bento Areas */
.bento-wet {
    grid-column: span 2;
    background: linear-gradient(135deg, #f8fbf9 0%, #e8f5ee 100%);
}

.bento-towels {
    grid-row: span 2;
    background: linear-gradient(180deg, #fdfdfd 0%, #f0f7f3 100%);
}

.bento-anti {
    grid-column: span 2;
    background: linear-gradient(135deg, #f0f9f6 0%, #d5ece4 100%);
}

.bento-item:hover {
    transform: translateY(-8px) scale(1.01);
    box-shadow: 0 30px 60px rgba(36, 139, 101, 0.12);
    border-color: var(--primary);
}

.bento-content {
    position: relative;
    z-index: 5;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.bento-item h3 {
    font-size: 24px;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 12px;
    transition: var(--transition);
}

.bento-item .cat-label {
    font-size: 13px;
    font-weight: 700;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 8px;
    opacity: 0.6;
}

.bento-icon-box {
    position: absolute;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.5s ease;
}

.bento-item:hover .bento-icon-box {
    background: var(--primary);
    color: #fff;
    transform: scale(1.2) rotate(-15deg);
}

.bento-visual-accent {
    position: absolute;
    top: -20px;
    right: -20px;
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, rgba(36, 139, 101, 0.05) 0%, transparent 70%);
    border-radius: 50%;
    transition: all 0.8s ease;
}

.bento-item:hover .bento-visual-accent {
    transform: scale(2);
    background: radial-gradient(circle, rgba(36, 139, 101, 0.1) 0%, transparent 70%);
}

.bento-btn {
    margin-top: auto;
    font-weight: 700;
    font-size: 14px;
    color: var(--primary);
    display: flex;
    align-items: center;
    gap: 8px;
    opacity: 0;
    transform: translateX(-10px);
    transition: all 0.4s ease;
}

.bento-item:hover .bento-btn {
    opacity: 1;
    transform: translateX(0);
}

@media (max-width: 992px) {
    .bento-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 220px;
    }

    .bento-wet,
    .bento-anti {
        grid-column: span 2;
    }

    .bento-towels {
        grid-row: span 1;
    }
}

@media (max-width: 600px) {
    .bento-grid {
        grid-template-columns: 1fr;
        grid-auto-rows: auto;
    }

    .bento-wet,
    .bento-anti {
        grid-column: span 1;
    }

    .bento-item {
        padding: 30px;
        min-height: 180px;
    }
}

/* Product-Style Category Cards */
.category-products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 60px;
}

.product-cat-card {
    background: #fff;
    border-radius: 20px;
    padding: 20px;
    transition: all 0.4s ease;
    border: 1px solid #eee;
    display: flex;
    flex-direction: column;
    position: relative;
    cursor: pointer;
}

.product-cat-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    border-color: var(--primary);
}

.product-cat-image {
    width: 100%;
    height: 250px;
    background: #f9f9f9;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    position: relative;
    overflow: hidden;
}

.product-cat-image svg {
    width: 100px;
    height: 100px;
    color: var(--primary);
    opacity: 0.8;
    transition: all 0.5s ease;
}

.product-cat-card:hover .product-cat-image svg {
    transform: scale(1.1);
    opacity: 1;
}

.product-cat-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--primary);
    color: #fff;
    padding: 5px 12px;
    border-radius: 50px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.product-cat-info {
    padding: 10px 5px;
}

.product-cat-info h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.product-cat-info p {
    font-size: 14px;
    color: var(--text-gray);
    line-height: 1.5;
    margin-bottom: 20px;
}

.product-cat-action {
    margin-top: auto;
    width: 100%;
    padding: 12px;
    background: transparent;
    border: 2px solid #eee;
    border-radius: 12px;
    color: var(--text-dark);
    font-weight: 700;
    font-size: 14px;
    text-align: center;
    transition: all 0.3s ease;
}

.product-cat-card:hover .product-cat-action {
    background: var(--primary);
    border-color: var(--primary);
    color: #fff;
}

@media (max-width: 992px) {
    .category-products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
}

@media (max-width: 600px) {
    .category-products-grid {
        grid-template-columns: 1fr;
    }
}

/* Ultra-Premium Product Cards Redesign */
.product-categories-lux {
    padding: 160px 0;
    background: linear-gradient(to bottom, #ffffff, #f9fbf9);
}

.category-products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 50px;
    margin-top: 80px;
}

.product-cat-card {
    background: rgba(255, 255, 255, 0.7);
    -webkit-backdrop-filter: blur(20px);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 35px;
    padding: 45px 35px;
    transition: all 0.6s cubic-bezier(0.2, 0.8, 0.2, 1);
    position: relative;
    overflow: hidden;
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.03);
}

.product-cat-card:hover {
    transform: translateY(-15px) scale(1.02);
    background: #fff;
    box-shadow: 0 40px 80px rgba(36, 139, 101, 0.1);
    border-color: rgba(36, 139, 101, 0.2);
}

.product-cat-image {
    width: 100%;
    height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
    position: relative;
}

.product-cat-image svg {
    width: 90px;
    height: 90px;
    color: var(--primary);
    filter: drop-shadow(0 10px 15px rgba(36, 139, 101, 0.15));
    transition: all 0.6s ease;
    z-index: 2;
}

/* Abstract floating blob behind icon */
.product-cat-image::after {
    content: '';
    position: absolute;
    width: 140px;
    height: 140px;
    background: radial-gradient(circle, rgba(36, 139, 101, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    transition: all 0.6s ease;
}

.product-cat-card:hover .product-cat-image svg {
    transform: scale(1.15) rotate(-5deg);
}

.product-cat-card:hover .product-cat-image::after {
    transform: scale(1.5);
    background: radial-gradient(circle, rgba(36, 139, 101, 0.15) 0%, transparent 70%);
}

.product-cat-badge {
    position: absolute;
    top: 30px;
    right: 30px;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--primary);
    opacity: 0.5;
    transition: all 0.4s ease;
}

.product-cat-card:hover .product-cat-badge {
    opacity: 1;
    transform: translateX(-5px);
}

.product-cat-info h3 {
    font-size: 26px;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 15px;
    letter-spacing: -0.5px;
}

.product-cat-info p {
    font-size: 15px;
    color: var(--text-gray);
    line-height: 1.7;
    margin-bottom: 35px;
    opacity: 0.8;
}

.product-cat-action {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-weight: 700;
    font-size: 14px;
    color: var(--text-dark);
    padding: 0;
    border: none;
    background: none;
    transition: all 0.4s ease;
}

.product-cat-action::after {
    content: '>';
    transition: transform 0.4s ease;
}

.product-cat-card:hover .product-cat-action {
    color: var(--primary);
}

.product-cat-card:hover .product-cat-action::after {
    transform: translateX(8px);
}

/* Background Number Hint */
.card-bg-hint {
    position: absolute;
    bottom: -20px;
    right: -20px;
    font-size: 120px;
    font-weight: 900;
    color: rgba(36, 139, 101, 0.03);
    pointer-events: none;
    transition: all 0.6s ease;
}

.product-cat-card:hover .card-bg-hint {
    transform: scale(1.2) rotate(-10deg);
    color: rgba(36, 139, 101, 0.05);
}

@media (max-width: 992px) {
    .category-products-grid {
        gap: 30px;
    }

    .product-cat-card {
        padding: 35px 25px;
    }
}

/* Compact One-Line Category Grid */
.category-products-grid.one-line {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 15px;
    margin-top: 50px;
}

.product-cat-card.compact {
    padding: 25px 15px;
    border-radius: 25px;
    text-align: center;
    background: #fff;
    min-height: auto;
}

.product-cat-card.compact .product-cat-image {
    height: 100px;
    margin-bottom: 15px;
}

.product-cat-card.compact .product-cat-image svg {
    width: 45px;
    height: 45px;
}

.product-cat-card.compact .product-cat-image::after {
    width: 80px;
    height: 80px;
}

.product-cat-card.compact h3 {
    font-size: 15px;
    margin-bottom: 8px;
    line-height: 1.2;
    min-height: 36px;
    /* Ensure 2 lines alignment */
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-cat-card.compact p {
    font-size: 11px;
    margin-bottom: 15px;
    display: none;
    /* Hide description for compact view */
}

.product-cat-card.compact .product-cat-action {
    font-size: 12px;
}

.product-cat-card.compact .product-cat-badge {
    top: 15px;
    right: 15px;
    font-size: 8px;
}

.product-cat-card.compact .card-bg-hint {
    font-size: 60px;
}

@media (max-width: 1200px) {
    .category-products-grid.one-line {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .category-products-grid.one-line {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .category-products-grid.one-line {
        grid-template-columns: 1fr;
    }
}

/* High Contrast Category Cards */
.product-cat-card.compact {
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
}

.product-cat-card.compact:hover {
    box-shadow: 0 20px 40px rgba(36, 139, 101, 0.1);
    border-color: var(--primary);
}

.product-cat-card.compact h3 {
    color: #1a1a1a !important;
    /* Force dark text */
    opacity: 1 !important;
}

.product-cat-card.compact .product-cat-action {
    color: var(--primary) !important;
    opacity: 0.8;
}

.product-cat-card.compact .product-cat-image svg {
    color: var(--primary) !important;
    opacity: 1 !important;
}

.product-cat-card.compact .product-cat-badge {
    color: var(--primary) !important;
    opacity: 0.6;
}

/* Ensure the section header is also visible and updated */
.product-categories-lux .luxury-title {
    color: #1a1a1a;
}

.product-categories-lux .luxury-lead {
    color: #666;
}

/* Final High-Visibility Category Cards */
.product-categories-lux {
    background: #fdfdfd;
}

.product-cat-card.compact {
    background: #ffffff !important;
    border: 1px solid #eee !important;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05) !important;
    -webkit-backdrop-filter: none !important;
    backdrop-filter: none !important;
    opacity: 1 !important;
    visibility: visible !important;
}

.product-cat-card.compact:hover {
    border-color: var(--primary) !important;
    box-shadow: 0 15px 35px rgba(36, 139, 101, 0.12) !important;
}

.product-cat-card.compact h3 {
    color: #333 !important;
    font-size: 16px !important;
    font-weight: 700 !important;
    margin-top: 10px;
}

.product-cat-card.compact .product-cat-action {
    color: var(--primary) !important;
    font-size: 12px !important;
    margin-top: 15px;
    font-weight: 600;
}

.product-cat-card.compact .product-cat-image svg {
    color: var(--primary) !important;
    width: 40px !important;
    height: 40px !important;
}

.product-cat-card.compact .product-cat-badge {
    color: #ccc !important;
    font-size: 10px !important;
    font-weight: 600;
}

/* Ensure section headers are visible */

/* --- BUG FIX: CONSOLIDATED HERO STYLES --- */
.hero-luxury-wrap {
    position: relative;
    width: 100%;
    min-height: 100vh;
    min-height: 100dvh;
    background: radial-gradient(circle at 70% 30%, #fff 0%, #f4f7f5 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding-top: 80px;
}

.hero-bg-text {
    position: absolute;
    top: calc(50% - 75px);
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 25vw;
    font-weight: 900;
    color: rgba(0, 0, 0, 0.04);
    letter-spacing: -0.05em;
    pointer-events: none;
    z-index: 1;
    user-select: none;
}

.production-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 15px;
    margin-top: 50px;
}

.hero-luxury-content {
    position: relative;
    z-index: 10;
    width: 100%;
    max-width: 1400px;
    padding: 0 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.luxury-info {
    flex: 1;
    max-width: 650px;
    position: relative;
}

.luxury-badge {
    font-family: 'Outfit', sans-serif;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.5em;
    color: var(--primary);
    text-transform: uppercase;
    margin-bottom: 40px;
    display: block;
}

.luxury-title {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(2.2rem, 5vw, 5.2rem);
    line-height: 1.05;
    font-weight: 900;
    letter-spacing: -0.04em;
    color: #0f172a;
    margin-bottom: 40px;
    text-transform: uppercase;
}

.lux-word {
    display: inline-block;
    font-weight: 900;
    margin-right: 0.3em;
    white-space: nowrap;
}

.lux-word:nth-child(2) {
    color: var(--primary);
}

.luxury-lead {
    font-family: 'Inter', sans-serif;
    font-size: clamp(1.1rem, 2vw, 1.8rem);
    color: #475569;
    line-height: 1.6;
    max-width: 700px;
    margin-bottom: 70px;
}

.luxury-cta-wrap {
    display: flex;
    align-items: center;
}

/* RESPONSIVE FIXES */
@media (max-width: 1200px) {
    .luxury-title {
        font-size: 5vw;
    }
}

@media (max-width: 992px) {
    .hero-luxury-content {
        flex-direction: column;
        text-align: center;
        padding-top: 40px;
    }

    .luxury-info {
        max-width: 100%;
        margin-bottom: 60px;
    }

    .luxury-lead {
        margin-left: auto;
        margin-right: auto;
    }

    .luxury-cta-wrap {
        justify-content: center;
    }

    .luxury-title {
        font-size: 6.5vw;
    }
}

@media (max-width: 600px) {
    .luxury-title {
        font-size: 1.6rem;
        line-height: 1.1;
    }

    .luxury-lead {
        font-size: 1rem;
    }

    .logo-img {
        height: 80px !important;
    }

    .logo-text {
        font-size: 20px;
    }

    .hero-bg-text {
        font-size: 22vw;
    }
}

.prod-card {
    border-radius: 40px;
    text-align: center;
    transition: all 0.5s cubic-bezier(0.2, 1, 0.2, 1);
    border: 1px solid rgba(0, 0, 0, 0.03);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.prod-card:hover {
    transform: translateY(-15px);
    background: #ffffff;
    box-shadow: 0 40px 80px rgba(36, 139, 101, 0.08);
    border-color: rgba(36, 139, 101, 0.2);
}

.prod-icon-wrap {
    width: 100px;
    height: 100px;
    background: #ffffff;
    border-radius: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    transition: all 0.5s ease;
}

.prod-card:hover .prod-icon-wrap {
    background: var(--primary);
    transform: rotate(-5deg);
}

.prod-icon-wrap img {
    width: 64px;
    height: 64px;
    object-fit: contain;
    transition: all 0.5s ease;
}

.prod-card:hover .prod-icon-wrap img {
    filter: brightness(0) invert(1);
}

.prod-card-title {
    font-family: 'Outfit', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: #0f172a;
    line-height: 1.3;
}

@media (max-width: 1200px) {
    .production-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .production-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .prod-card {
        padding: 40px 20px;
    }
}

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

/* Premium Overhaul for We Produce Section */
.we-produce-section {
    background: transparent;
    position: relative;
    overflow: hidden;
}

/* Subtle background pattern */
.we-produce-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(rgba(36, 139, 101, 0.03) 1px, transparent 1px);
    background-size: 40px 40px;
    opacity: 0.5;
}

.production-grid {
    gap: 25px;
    /* Slightly tighter for a more cohesive look */
}

.prod-card {
    background: rgba(255, 255, 255, 0.7);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.8);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
    position: relative;
    overflow: hidden;
}

.prod-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--primary);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.prod-card:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}

.prod-card:hover {
    background: #ffffff;
    box-shadow: 0 30px 60px rgba(36, 139, 101, 0.1);
    transform: translateY(-10px);
}

.prod-icon-wrap {
    background: #f1f7f4;
    border: 1px solid rgba(36, 139, 101, 0.05);
}

.prod-card:hover .prod-icon-wrap {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 15px 30px rgba(36, 139, 101, 0.2);
}

.prod-card-title {
    font-size: 19px;
    letter-spacing: -0.02em;
    color: #1e293b;
    margin-top: 10px;
}

/* Section Header Premium Touch */
.we-produce-section .section-tag {
    letter-spacing: 0.4em;
    font-weight: 800;
    color: var(--primary);
    opacity: 0.6;
}

.we-produce-section .section-title {
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
    font-size: 56px;
    color: #0f172a;
    letter-spacing: -0.03em;
}

.production-watermark {
    position: absolute;
    left: 50%;
    top: calc(50% - 75px);
    transform: translate(-50%, -50%);
    font-size: 22vw;
    font-weight: 900;
    color: rgba(0, 0, 0, 0.03);
    letter-spacing: -0.05em;
    pointer-events: none;
    z-index: 0;
    font-family: 'Outfit', sans-serif;
    white-space: nowrap;
    width: 100%;
    text-align: center;
}



.we-produce-section .container {
    position: relative;
    z-index: 2;
}

.we-produce-section .section-header {
    opacity: 1 !important;
    visibility: visible !important;
    transform: none !important;
    position: relative;
    z-index: 100;
}

/* Voice of Quality (Testimonials) Premium Styles */
.voice-of-quality-section {
    background: #fdfdfd;
    position: relative;
    padding: 140px 0;
    overflow: hidden;
}

.quality-watermark {
    position: absolute;
    left: 50%;
    top: calc(50% - 75px);
    transform: translate(-50%, -50%);
    font-size: 20vw;
    font-weight: 900;
    color: rgba(0, 0, 0, 0.02);
    letter-spacing: -0.05em;
    pointer-events: none;
    z-index: 0;
    font-family: 'Outfit', sans-serif;
    white-space: nowrap;
}

.quality-reviews-wrap {
    max-width: 1200px;
    margin: 80px auto 0;
    position: relative;
    z-index: 2;
}

.quality-card {
    background: #ffffff;
    padding: 80px 40px 60px;
    border-radius: 35px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.04);
    text-align: left;
    border: 1px solid rgba(0, 0, 0, 0.02);
    position: relative;
    min-height: 450px;
    display: flex;
    flex-direction: column;
}

.quality-quote {
    font-family: 'Outfit', sans-serif;
    font-size: 80px;
    color: var(--primary);
    opacity: 0.1;
    position: absolute;
    top: 20px;
    right: 30px;
    left: auto;
    transform: none;
}

.quality-text {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #475569;
    font-weight: 400;
    margin-bottom: 30px;
    flex-grow: 1;
}

.quality-author {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 15px;
    margin-top: auto;
}

.author-avatar-wrap {
    width: 100px;
    height: 100px;
    border-radius: 25px;
    overflow: hidden;
    flex-shrink: 0;
    border: 3px solid #f8fafc;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.author-name {
    font-family: 'Outfit', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: #0f172a;
    margin: 0 0 4px 0;
}

.author-meta {
    flex: 1;
    min-width: 0;
}

.author-label {
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 8px 20px;
    border-radius: 0 0 20px 20px;
    display: inline-block;
    margin-bottom: 25px;
    position: absolute;
    top: 0;
    left: 40px;
    z-index: 5;
}

/* Custom Navigation */
.quality-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    margin-top: 50px;
    position: relative;
    z-index: 10;
}

.quality-prev,
.quality-next {
    width: 60px;
    height: 60px;
    border-radius: 20px;
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    color: #0f172a;
}

.quality-prev:hover,
.quality-next:hover {
    background: var(--primary);
    color: #ffffff;
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(36, 139, 101, 0.15);
}

.quality-dots {
    display: flex;
    gap: 10px;
}

.quality-dots .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: #e2e8f0;
    opacity: 1;
    border-radius: 6px;
    transition: all 0.4s ease;
}

.quality-dots .swiper-pagination-bullet-active {
    width: 40px;
    background: var(--primary);
}

@media (max-width: 768px) {
    .quality-card {
        padding: 70px 25px 40px;
    }

    .author-label {
        left: 25px;
        font-size: 11px;
        padding: 6px 15px;
    }

    .quality-text {
        font-size: 1.1rem;
    }

    .author-avatar-wrap {
        width: 70px;
        height: 70px;
        border-radius: 20px;
    }

    .author-name {
        font-size: 18px;
    }
}


/* Enhanced Premium Quality Card Styles */
.author-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 25px;
}

.quality-card {
    transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.quality-card:hover {
    transform: translateY(-5px) scale(1.01);
    box-shadow: 0 50px 120px rgba(0, 0, 0, 0.08);
}

.quality-card::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(135deg, rgba(36, 139, 101, 0.1) 0%, transparent 50%, rgba(36, 139, 101, 0.1) 100%);
    border-radius: 52px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.6s ease;
}

.quality-card:hover::before {
    opacity: 1;
}

/* Subtle glow behind the card */
.swiper-slide-active .quality-card {
    border: 1px solid rgba(36, 139, 101, 0.1);
}

.quality-swiper {
    padding: 60px 0 100px;
}

@media (max-width: 768px) {
    .quality-swiper .swiper-slide {
        width: 90%;
    }
}

/* Testimonials Focus Effect */
.quality-swiper .swiper-slide {
    transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    opacity: 0.8;
}

.quality-swiper .swiper-slide-active {
    opacity: 1;
}

/* Ensure equal height */
.quality-swiper .swiper-wrapper {
    display: flex;
    align-items: stretch;
}

.quality-card {
    height: 100%;
}

.card-distributor {
    border: 3px solid #3b82f6 !important;
    background: linear-gradient(135deg, #ffffff 0%, #eff6ff 100%);
    box-shadow: 0 30px 70px rgba(59, 130, 246, 0.1);
}

.card-distributor .author-label {
    background: #3b82f6;
    color: #ffffff !important;
}

.card-distributor .quality-quote {
    color: #3b82f6 !important;
}

.card-buyer {
    border: 3px solid var(--primary) !important;
    background: linear-gradient(135deg, #ffffff 0%, #f0fdf4 100%);
    box-shadow: 0 30px 70px rgba(36, 139, 101, 0.08);
}

.card-buyer .author-label {
    background: var(--primary);
    color: #ffffff !important;
}

.voice-of-quality-section .section-header {
    opacity: 1 !important;
    visibility: visible !important;
    transform: none !important;
    position: relative;
    z-index: 100;
}

.quality-dots {
    position: static !important;
    width: auto !important;
}

/* Contacts Page Enhancements */
.bg-blur-circle {
    position: absolute;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    filter: blur(120px);
    z-index: 1;
    pointer-events: none;
}

.info-box-v2:hover .info-icon {
    transform: scale(1.1) translateY(-2px);
    background: rgba(36, 139, 101, 0.12) !important;
}

.info-box-v2:hover a {
    color: var(--primary) !important;
}

.info-icon {
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.input-wrap input:focus,
.form-group textarea:focus {
    border-color: var(--primary) !important;
    box-shadow: 0 0 0 4px rgba(36, 139, 101, 0.05);
    background: #fff !important;
}

.map-tab {
    background: rgba(0, 0, 0, 0.03);
    color: var(--text-gray);
}

.map-tab.active {
    background: var(--primary) !important;
    color: white !important;
    box-shadow: 0 4px 12px rgba(36, 139, 101, 0.2);
}

.map-tab:hover:not(.active) {
    background: rgba(0, 0, 0, 0.06);
}

.map-view {
    transition: opacity 0.6s ease;
    background: #eee;
}

.map-view.active {
    opacity: 1;
    pointer-events: auto;
    z-index: 10;
}

.map-view:not(.active) {
    opacity: 0;
    pointer-events: none;
    z-index: 1;
}

@media (max-width: 992px) {
    .contacts-wrapper {
        grid-template-columns: 1fr !important;
    }

    .contacts-right {
        height: 450px;
    }
}

@media (max-width: 600px) {
    .info-grid {
        grid-template-columns: 1fr !important;
    }

    .form-grid {
        grid-template-columns: 1fr !important;
    }
}

/* UNIFIED UNIVERSAL CATALOG PACK IMAGE SCALING (ECO, BLOOMY, AYVA - 120, 72, 20, 15, 10) */

/* 1. All image wrap containers across all brands have enlarged 360px fixed height */
.ca-img-wrap,
.brand-bloomy .ca-img-wrap,
.brand-ayva .ca-img-wrap,
.brand-eco .ca-img-wrap {
    height: 360px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    margin-bottom: 20px !important;
}

/* 2. All standard WebP pack images fit within container at double visual size */
.ca-img-wrap img,
.brand-bloomy .ca-img-wrap img,
.brand-ayva .ca-img-wrap img,
.brand-eco .ca-img-wrap img,
.is-small-pack .ca-img-wrap img {
    max-width: 95% !important;
    max-height: 95% !important;
    object-fit: contain !important;
    transform: scale(1.15) !important;
    transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1) !important;
}

/* 3. Tight 3D PNG Renders (no transparent canvas padding) scaled to match WebP pack size */
.ca-img-wrap img[src*=".png"],
.ca-img-wrap img[src*=".PNG"],
.brand-bloomy .ca-img-wrap img[src*=".png"],
.brand-bloomy .ca-img-wrap img[src*=".PNG"],
.brand-ayva .ca-img-wrap img[src*=".png"],
.brand-ayva .ca-img-wrap img[src*=".PNG"] {
    max-width: 88% !important;
    max-height: 88% !important;
    transform: scale(0.98) !important;
}

/* 4. Hover effect on all catalog cards */
.catalog-item-card:hover .ca-img-wrap img,
.brand-bloomy:hover .ca-img-wrap img,
.brand-ayva:hover .ca-img-wrap img,
.is-small-pack:hover .ca-img-wrap img {
    transform: scale(1.22) translateY(-6px) !important;
}

.catalog-item-card:hover .ca-img-wrap img[src*=".png"],
.catalog-item-card:hover .ca-img-wrap img[src*=".PNG"],
.brand-bloomy:hover .ca-img-wrap img[src*=".png"],
.brand-bloomy:hover .ca-img-wrap img[src*=".PNG"] {
    transform: scale(1.05) translateY(-6px) !important;
}

/* 4.5. AYVA 120 Pack Specific Visual Scaling */
.brand-ayva .ca-img-wrap img,
.brand-ayva .ca-img-wrap img[src*=".png"],
.brand-ayva .ca-img-wrap img[src*=".PNG"] {
    max-width: 95% !important;
    max-height: 95% !important;
    transform: scale(1.28) !important;
}

.brand-ayva:hover .ca-img-wrap img,
.brand-ayva:hover .ca-img-wrap img[src*=".png"],
.brand-ayva:hover .ca-img-wrap img[src*=".PNG"] {
    transform: scale(1.38) translateY(-6px) !important;
}

/* 4.5b. ECO 120 & 72 Pack Visual Scaling (Reduced by 1 step) */
.brand-eco.pack-120 .ca-img-wrap img,
.brand-eco.pack-72 .ca-img-wrap img,
.brand-eco[data-pack="120"] .ca-img-wrap img,
.brand-eco[data-pack="72"] .ca-img-wrap img,
.ca-img-wrap img[src*="ECO/120"],
.ca-img-wrap img[src*="ECO/72"],
.ca-img-wrap img[src*="eco/120"],
.ca-img-wrap img[src*="eco/72"] {
    max-width: 92% !important;
    max-height: 92% !important;
    transform: scale(1.12) !important;
}

.brand-eco.pack-120:hover .ca-img-wrap img,
.brand-eco.pack-72:hover .ca-img-wrap img,
.brand-eco[data-pack="120"]:hover .ca-img-wrap img,
.brand-eco[data-pack="72"]:hover .ca-img-wrap img,
.catalog-item-card:hover .ca-img-wrap img[src*="ECO/120"],
.catalog-item-card:hover .ca-img-wrap img[src*="ECO/72"] {
    transform: scale(1.20) translateY(-6px) !important;
}

/* 4.6. ECO 15+2 Pack Specific Visual Scaling */
.pack-15-2 .ca-img-wrap img,
.catalog-item-card[data-pack="15+2"] .ca-img-wrap img,
.ca-img-wrap img[src*="15+2"] {
    max-width: 88% !important;
    max-height: 88% !important;
    transform: scale(1.02) !important;
}

.pack-15-2:hover .ca-img-wrap img,
.catalog-item-card[data-pack="15+2"]:hover .ca-img-wrap img,
.catalog-item-card:hover .ca-img-wrap img[src*="15+2"] {
    transform: scale(1.12) translateY(-6px) !important;
}

/* 4.7. ECO 15 and 10 Pack Specific Visual Scaling (Reduced by ~1cm) */
.pack-15 .ca-img-wrap img,
.pack-10 .ca-img-wrap img,
.catalog-item-card[data-pack="15"] .ca-img-wrap img,
.catalog-item-card[data-pack="10"] .ca-img-wrap img,
.ca-img-wrap img[src*="/15/"],
.ca-img-wrap img[src*="/10/"] {
    max-width: 82% !important;
    max-height: 82% !important;
    transform: scale(0.92) !important;
}

.pack-15:hover .ca-img-wrap img,
.pack-10:hover .ca-img-wrap img,
.catalog-item-card[data-pack="15"]:hover .ca-img-wrap img,
.catalog-item-card[data-pack="10"]:hover .ca-img-wrap img,
.catalog-item-card:hover .ca-img-wrap img[src*="/15/"],
.catalog-item-card:hover .ca-img-wrap img[src*="/10/"] {
    transform: scale(1.02) translateY(-6px) !important;
}

/* 4.8. Bloomy 120 & 72 Pack Visual Scaling (Enlarged card preview) */
.brand-bloomy.pack-120 .ca-img-wrap img,
.brand-bloomy.pack-72 .ca-img-wrap img,
.brand-bloomy[data-pack="120"] .ca-img-wrap img,
.brand-bloomy[data-pack="72"] .ca-img-wrap img,
.ca-img-wrap img[src*="BLOOMY/120"],
.ca-img-wrap img[src*="BLOOMY/72"],
.ca-img-wrap img[src*="bloomy/120"],
.ca-img-wrap img[src*="bloomy/72"] {
    max-width: 100% !important;
    max-height: 100% !important;
    transform: scale(1.30) !important;
}

.brand-bloomy.pack-120:hover .ca-img-wrap img,
.brand-bloomy.pack-72:hover .ca-img-wrap img,
.brand-bloomy[data-pack="120"]:hover .ca-img-wrap img,
.brand-bloomy[data-pack="72"]:hover .ca-img-wrap img,
.catalog-item-card:hover .ca-img-wrap img[src*="BLOOMY/120"],
.catalog-item-card:hover .ca-img-wrap img[src*="BLOOMY/72"] {
    transform: scale(1.40) translateY(-6px) !important;
}

/* Baccarat Image Scaling (Reduced by 0.1 -> 1.10) */
.ca-img-wrap img[src*="baccarat"],
.ca-img-wrap img[src*="Baccarat"] {
    transform: scale(1.10) !important;
}
.catalog-item-card:hover .ca-img-wrap img[src*="baccarat"],
.catalog-item-card:hover .ca-img-wrap img[src*="Baccarat"] {
    transform: scale(1.20) translateY(-6px) !important;
}

/* 4.15. Bloomy 72 PNG Packs Visual Scaling (Kept safely within card boundaries) */
.brand-bloomy.pack-72 .ca-img-wrap img[src*=".png"],
.brand-bloomy[data-pack="72"] .ca-img-wrap img[src*=".png"],
.ca-img-wrap img[src*="BLOOMY/72/"][src*=".png"],
.ca-img-wrap img[src*="-72.png"] {
    max-width: 88% !important;
    max-height: 88% !important;
    transform: scale(1.02) !important;
}

.brand-bloomy.pack-72:hover .ca-img-wrap img[src*=".png"],
.brand-bloomy[data-pack="72"]:hover .ca-img-wrap img[src*=".png"],
.catalog-item-card:hover .ca-img-wrap img[src*="BLOOMY/72/"][src*=".png"],
.catalog-item-card:hover .ca-img-wrap img[src*="-72.png"] {
    transform: scale(1.08) translateY(-4px) !important;
}

/* 4.9. Bloomy 20 Packs Visual Scaling (Reduced by 0.2) */
.brand-bloomy.pack-20 .ca-img-wrap img,
.brand-bloomy[data-pack="20"] .ca-img-wrap img,
.ca-img-wrap img[src*="BLOOMY/20/"],
.ca-img-wrap img[src*="-20.png"] {
    max-width: 118% !important;
    max-height: 118% !important;
    transform: scale(1.8) !important;
}

.brand-bloomy.pack-20:hover .ca-img-wrap img,
.brand-bloomy[data-pack="20"]:hover .ca-img-wrap img,
.catalog-item-card:hover .ca-img-wrap img[src*="BLOOMY/20/"],
.catalog-item-card:hover .ca-img-wrap img[src*="-20.png"] {
    transform: scale(1.9) translateY(-6px) !important;
}

/* 4.13. Bloomy 15 Pack Visual Scaling */
.brand-bloomy.pack-15 .ca-img-wrap img,
.brand-bloomy[data-pack="15"] .ca-img-wrap img,
.ca-img-wrap img[src*="BLOOMY/15/"],
.ca-img-wrap img[src*="-15.png"] {
    max-width: 85% !important;
    max-height: 85% !important;
    transform: scale(1.0) !important;
}

.brand-bloomy.pack-15:hover .ca-img-wrap img,
.brand-bloomy[data-pack="15"]:hover .ca-img-wrap img,
.catalog-item-card:hover .ca-img-wrap img[src*="BLOOMY/15/"],
.catalog-item-card:hover .ca-img-wrap img[src*="-15.png"] {
    transform: scale(1.08) translateY(-6px) !important;
}

/* 4.14. ECO 20 Pack Preview Visual Scaling (Increased by 0.3) */
.brand-eco.pack-20 .ca-img-wrap img,
.brand-eco[data-pack="20"] .ca-img-wrap img,
.ca-img-wrap img[src*="ECO/20/"],
.ca-img-wrap img[src*="eco/20/"] {
    max-width: 88% !important;
    max-height: 88% !important;
    transform: scale(1.02) !important;
}

.brand-eco.pack-20:hover .ca-img-wrap img,
.brand-eco[data-pack="20"]:hover .ca-img-wrap img,
.catalog-item-card:hover .ca-img-wrap img[src*="ECO/20/"],
.catalog-item-card:hover .ca-img-wrap img[src*="eco/20/"] {
    transform: scale(1.10) translateY(-6px) !important;
}

/* 5. Product Modal Overlay Image Scaling */
.modal-left img {
    max-width: 95% !important;
    max-height: 95% !important;
    object-fit: contain !important;
    transform: scale(1.25) !important;
}

/* 5.1. Bloomy & AYVA 120 / 72 Pack Scaling in Modal */
.is-bloomy.is-pack-120 .modal-left img,
.is-bloomy.is-pack-72 .modal-left img,
.is-ayva.is-pack-120 .modal-left img,
.is-bloomy .modal-left img,
.is-ayva .modal-left img,
.modal-left img[src*="BLOOMY"],
.modal-left img[src*="AYVA"] {
    max-width: 105% !important;
    max-height: 105% !important;
    transform: scale(1.55) !important;
}

/* 5.2. Small Packs (10, 15, 20) Modal Scaling */
.is-small-pack .modal-left img {
    max-width: 85% !important;
    max-height: 85% !important;
    transform: scale(1.05) !important;
}

/* 5.3. Bloomy 20 Pack Modal Scaling (Enlarged +1x) */
.is-bloomy.is-pack-20 .modal-left img,
.is-bloomy[data-pack="20"] .modal-left img,
.product-modal-overlay.is-bloomy.is-pack-20 .modal-left img,
.modal-left img[src*="BLOOMY/20/"],
.modal-left img[src*="bloomy/20/"] {
    max-width: 130% !important;
    max-height: 130% !important;
    transform: scale(2.25) !important;
}

/* 5.4. Bloomy 72 PNG Packs Modal Scaling (Reduced by 1 step) */
.is-bloomy.is-pack-72 .modal-left img[src*=".png"],
.modal-left img[src*="BLOOMY/72/"][src*=".png"],
.modal-left img[src*="-72.png"] {
    max-width: 95% !important;
    max-height: 95% !important;
    transform: scale(1.25) !important;
}


/* ============================================================
   MOBILE ADAPTATION & RESPONSIVENESS OVERHAUL
   ============================================================ */

/* Global Mobile Fixes */
body.no-scroll {
    overflow: hidden;
}

.mobile-nav-toggle {
    display: none;
}

/* Header & Mobile Menu */
@media (max-width: 992px) {
    .nav {
        padding: 15px 20px;
    }

    .logo {
        margin-left: 0;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        height: 100dvh;
        background: rgba(255, 255, 255, 0.98);
        -webkit-backdrop-filter: blur(10px);
        backdrop-filter: blur(10px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 40px;
        box-shadow: -10px 0 30px rgba(0, 0, 0, 0.1);
        transition: right 0.6s cubic-bezier(0.16, 1, 0.3, 1);
        z-index: 1000;
        margin: 0;
        /* Remove desktop margin */
        padding: 0;
    }

    .nav-links.active {
        right: 0;
    }

    .nav-links a {
        font-size: 20px;
        color: #0f172a !important;
        font-weight: 600;
    }

    .header-right {
        gap: 15px;
    }

    .nav-coop-btn {
        display: none;
    }

    .mobile-nav-toggle {
        display: flex;
        width: 40px;
        height: 40px;
        align-items: center;
        justify-content: center;
        background: transparent;
        border: none;
        cursor: pointer;
        z-index: 1100;
        position: relative;
    }

    .hamburger {
        display: block;
        width: 28px;
        height: 3px;
        background: #fff;
        position: relative;
        transition: background 0.3s;
    }

    .hamburger::before,
    .hamburger::after {
        content: '';
        position: absolute;
        width: 28px;
        height: 3px;
        background: #fff;
        left: 0;
        transition: transform 0.3s;
    }

    .hamburger::before {
        top: -9px;
    }

    .hamburger::after {
        bottom: -9px;
    }

    .mobile-nav-toggle.active .hamburger {
        background: transparent;
    }

    .mobile-nav-toggle.active .hamburger::before,
    .mobile-nav-toggle.active .hamburger::after {
        background: #0f172a;
    }

    .mobile-nav-toggle.active .hamburger::before {
        transform: translateY(8px) rotate(45deg);
    }

    .mobile-nav-toggle.active .hamburger::after {
        transform: translateY(-8px) rotate(-45deg);
    }
}

/* Hero Section Stacking & Mobile Optimization */
@media (max-width: 992px) {

    html,
    body {
        overflow-x: hidden !important;
        -webkit-overflow-scrolling: touch;
        -webkit-tap-highlight-color: transparent;
        text-rendering: optimizeSpeed;
        -webkit-font-smoothing: antialiased;
    }

    /* Force GPU Acceleration & Eliminate Tap Delays */
    .mobile-hero-pack,
    .mobile-single-pack,
    .product-card,
    .review-card,
    .btn,
    .btn-minimal-luxury,
    .feature-item-v2 {
        -webkit-transform-style: preserve-3d;
        transform-style: preserve-3d;
        will-change: transform, opacity;
        touch-action: manipulation;
    }

    /* Silky-Smooth 60fps 3D Card Flip Architecture */
    .cta-interactive-grid,
    .cta-interactive-item {
        perspective: 1000px !important;
        -webkit-perspective: 1000px !important;
    }

    .cta-card-inner {
        position: relative !important;
        width: 100% !important;
        height: 100% !important;
        transform-style: preserve-3d !important;
        -webkit-transform-style: preserve-3d !important;
        transition: transform 0.7s cubic-bezier(0.4, 0, 0.2, 1) !important;
        -webkit-transition: -webkit-transform 0.7s cubic-bezier(0.4, 0, 0.2, 1) !important;
        will-change: transform;
    }

    .cta-interactive-item.is-flipped .cta-card-inner {
        transform: rotateY(180deg) !important;
        -webkit-transform: rotateY(180deg) !important;
    }

    .cta-card-front,
    .cta-card-back {
        position: absolute !important;
        inset: 0 !important;
        width: 100% !important;
        height: 100% !important;
        -webkit-backface-visibility: hidden !important;
        backface-visibility: hidden !important;
        border-radius: 24px;
        -webkit-transform-style: preserve-3d;
        transform-style: preserve-3d;
    }

    .cta-card-front {
        transform: rotateY(0deg) !important;
        -webkit-transform: rotateY(0deg) !important;
        z-index: 2 !important;
    }

    .cta-card-back {
        transform: rotateY(180deg) !important;
        -webkit-transform: rotateY(180deg) !important;
        z-index: 1 !important;
    }

    .page-hero {
        padding: 180px 0 60px;
    }

    .brand-showcase-section {
        padding-top: 115px !important;
    }

    .production-overview-section {
        padding-top: 135px !important;
    }

    .showcase-title {
        font-size: clamp(1.4rem, 5.2vw, 2.2rem) !important;
        margin-bottom: 20px !important;
        text-align: center !important;
        padding-top: 0px !important;
    }

    .certificates-grid {
        grid-template-columns: 1fr !important;
        gap: 20px !important;
    }

    .overview-grid {
        grid-template-columns: 1fr !important;
        gap: 30px !important;
    }

    .category-nav {
        margin-top: 140px;
    }

    .hero-luxury-wrap {
        padding-top: 215px !important;
        padding-bottom: 30px !important;
        min-height: auto !important;
        text-align: center;
        position: relative;
    }

    .hero-bg-text {
        display: block !important;
        position: absolute;
        top: 230px !important;
        left: 50% !important;
        transform: translate(-50%, -50%) !important;
        font-size: 22vw !important;
        font-weight: 900 !important;
        color: rgba(0, 0, 0, 0.04) !important;
        letter-spacing: -0.04em !important;
        pointer-events: none;
        z-index: 1 !important;
        width: 100%;
        text-align: center;
        white-space: nowrap;
    }

    .hero-luxury-content {
        flex-direction: column !important;
        align-items: center !important;
        padding: 0 16px !important;
        position: relative;
        z-index: 5;
    }

    .luxury-info {
        max-width: 100% !important;
        margin-bottom: 15px !important;
    }

    .luxury-title {
        position: relative;
        z-index: 5;
        font-size: clamp(1.8rem, 5.8vw, 2.6rem) !important;
        line-height: 1.15 !important;
        margin-bottom: 12px !important;
        text-align: center;
    }

    .luxury-lead {
        font-size: 1rem !important;
        line-height: 1.4 !important;
        margin-bottom: 20px !important;
    }

    .luxury-cta-wrap {
        justify-content: center !important;
        margin-top: 25px !important;
        margin-bottom: 20px !important;
    }

    .luxury-cta-wrap .btn-line {
        display: none !important;
    }

    .luxury-visual-stage {
        margin-top: 0px !important;
        width: 100% !important;
        max-width: 480px !important;
        height: 260px !important;
        position: relative !important;
    }

    .luxury-product-main {
        width: 100%;
        height: 100%;
        top: 0;
    }

    .main-lux-img {
        max-height: 280px !important;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%) !important;
        filter: none !important;
    }

    .main-lux-img.hero-img-compact {
        max-height: 245px !important;
    }

    .glass-element {
        display: none !important;
        animation: none !important;
    }

    .logo-img {
        height: 105px !important;
    }

    .lang-switcher {
        display: none !important;
    }

    .mobile-header-text {
        display: block !important;
        margin-right: 15px;
    }
}

/* Isolated Desktop vs Mobile display styles for Hero & Assortment Showcase */
@media (min-width: 993px) {
    .desktop-hero-showcase {
        display: flex !important;
    }

    .mobile-hero-packs-stage {
        display: none !important;
    }

    .desktop-packs-container {
        display: block !important;
    }

    .mobile-packs-container {
        display: none !important;
    }
}

@media (max-width: 992px) {
    .desktop-hero-showcase {
        display: none !important;
    }

    .mobile-hero-packs-stage {
        display: flex !important;
        position: relative;
        width: 100%;
        max-width: 480px;
        height: 275px;
        margin: -5px auto 0;
        align-items: center;
        justify-content: center;
        box-sizing: border-box;
        padding: 0 4px;
    }

    .mobile-hero-pack {
        position: absolute;
    }

    .mobile-hero-pack img {
        width: 100%;
        height: auto;
        display: block;
        filter: drop-shadow(0 16px 32px rgba(0, 0, 0, 0.16));
    }

    /* 3 packs spread apart from each other while keeping side margins */
    .mobile-hero-pack.pack-center {
        width: clamp(180px, 52%, 225px) !important;
        left: 50% !important;
        top: 45% !important;
        transform: translate(-50%, -50%) !important;
        z-index: 10 !important;
    }

    .mobile-hero-pack.pack-left {
        width: clamp(160px, 47%, 200px) !important;
        left: 17% !important;
        top: 47% !important;
        transform: translate(-50%, -50%) rotate(-6deg) !important;
        z-index: 5 !important;
    }

    .mobile-hero-pack.pack-right {
        width: clamp(155px, 45%, 190px) !important;
        left: 83% !important;
        margin-left: 0 !important;
        top: 47% !important;
        transform-origin: center center !important;
        transform: translate(-50%, -50%) rotate(6deg) !important;
        z-index: 6 !important;
    }

    .desktop-packs-container {
        display: none !important;
    }

    .mobile-packs-container {
        display: block !important;
        position: relative;
        width: 100%;
        height: 100%;
        min-height: 280px;
    }

    .mobile-packs-container .mobile-single-pack {
        display: block !important;
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%) scale(1.4) !important;
        width: 290px !important;
        z-index: 10;
        opacity: 1 !important;
    }

    /* Assortment showcase & Features cards centering for Mobile */
    .assortment-grid {
        grid-template-columns: 1fr !important;
        gap: 40px !important;
        text-align: center !important;
        width: 100% !important;
    }

    .assortment-visual-wrap {
        width: 100% !important;
        max-width: 480px !important;
        margin: 0 auto !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
    }

    .assortment-cta {
        margin-top: 25px !important;
        display: flex !important;
        justify-content: center !important;
        width: 100% !important;
    }

    .features-column {
        width: 100% !important;
        max-width: 480px !important;
        margin: 0 auto !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        gap: 20px !important;
    }

    .feature-item-v2 {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        flex-direction: column !important;
        align-items: center !important;
        text-align: center !important;
        margin: 0 auto !important;
        transform: none !important;
        padding: 24px 20px !important;
    }

    .feature-item-v2:hover {
        transform: translateY(-4px) !important;
    }
}

@media (max-width: 380px) {
    .mobile-hero-packs-stage {
        max-width: 380px;
        height: 250px;
    }

    .mobile-hero-pack.pack-center {
        width: 175px !important;
    }

    .mobile-hero-pack.pack-left {
        width: 155px !important;
        left: 17% !important;
    }

    .mobile-hero-pack.pack-right {
        width: 150px !important;
        left: 83% !important;
        margin-left: 0 !important;
    }
}

/* Floating micro-animations for 3-pack mobile showcase */
.float-pack-center {
    animation: floatMobileCenter 6s ease-in-out infinite;
}

.float-pack-left {
    animation: floatMobileLeft 7s ease-in-out infinite;
}

.float-pack-right {
    animation: floatMobileRight 8s ease-in-out infinite;
}

@keyframes floatMobileCenter {

    0%,
    100% {
        transform: translate(-50%, -48%);
    }

    50% {
        transform: translate(-50%, -53%);
    }
}

@keyframes floatMobileLeft {

    0%,
    100% {
        transform: translate(-50%, -50%) rotate(-6deg);
    }

    50% {
        transform: translate(-50%, -44%) rotate(-4deg);
    }
}

@keyframes floatMobileRight {

    0%,
    100% {
        transform: translate(-50%, -50%) rotate(6deg) !important;
        transform-origin: center center !important;
    }

    50% {
        transform: translate(-50%, -54%) rotate(4deg) !important;
        transform-origin: center center !important;
    }
}

/* Normalized Footer Spacing for Mobile */
@media (max-width: 992px) {
    .footer {
        padding: 45px 0 25px !important;
        margin-top: 40px !important;
    }

    .footer-grid {
        gap: 30px !important;
        margin-bottom: 30px !important;
    }

    .footer-bottom {
        padding-top: 20px !important;
    }

    .partners-section {
        padding-bottom: 40px !important;
    }
}

/* Assortment Showcase Fix for Desktop */
@media (min-width: 1201px) {
    .desktop-packs-container .pack-main {
        left: 50%;
        top: 50%;
    }
}

@media (min-width: 993px) and (max-width: 1200px) {
    .assortment-visual {
        display: flex;
        justify-content: center;
        align-items: center;
        height: 320px;
        position: relative;
    }

    .desktop-packs-container .pack-main {
        transform: translate(-50%, -50%) scale(1.15);
        opacity: 1 !important;
        left: 50%;
        top: 50%;
        z-index: 10;
    }

    .desktop-packs-container .pack-left {
        display: block !important;
        opacity: 0.95 !important;
        transform: translate(-88%, -48%) scale(0.85) rotate(-8deg);
        left: 50%;
        top: 50%;
        z-index: 5;
    }

    .pack-right {
        display: block !important;
        opacity: 0.95 !important;
        transform: translate(-12%, -48%) scale(0.85) rotate(8deg);
        left: 50%;
        top: 50%;
        z-index: 4;
    }
}

/* Categories Grid */
@media (max-width: 992px) {
    .category-products-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 30px !important;
    }
}

@media (max-width: 600px) {
    .category-products-grid {
        grid-template-columns: 1fr !important;
    }

    .product-cat-card {
        padding: 30px 20px !important;
    }

    .product-cat-info h3 {
        font-size: 22px !important;
    }
}

/* Footer Adaptation */
@media (max-width: 992px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr !important;
        gap: 40px !important;
    }
}

@media (max-width: 600px) {
    .footer-grid {
        grid-template-columns: 1fr !important;
        text-align: center;
    }

    .footer-col {
        align-items: center !important;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
}

/* ==========================================================
   NEW BURGER MENU & MOBILE SLIDE PANEL
   ========================================================== */

/* Fix logo margin globally */
.logo {
    margin-left: 0 !important;
}

/* Burger Button */
.burger-btn {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 12px;
    cursor: pointer;
    padding: 0;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.burger-btn span {
    display: block;
    width: 22px;
    height: 2px;
    background: #fff;
    border-radius: 2px;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    transform-origin: center;
}

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

.burger-btn.is-active span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

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

/* Mobile Menu Overlay */
.mobile-menu-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    -webkit-backdrop-filter: blur(4px);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    z-index: 9998;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.35s ease;
}

.mobile-menu-overlay.is-open {
    opacity: 1;
    pointer-events: all;
}

/* Mobile Slide-in Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    right: 0;
    width: min(320px, 85vw);
    height: 100%;
    background: #fff;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    padding: 0;
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: -20px 0 60px rgba(0, 0, 0, 0.15);
    -webkit-overflow-scrolling: touch;
    overflow-y: auto;
    overscroll-behavior: contain;
}

.mobile-menu.is-open {
    transform: translateX(0);
}

.mobile-menu-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px 28px;
    background: var(--primary);
    flex-shrink: 0;
}

.mobile-logo-text {
    font-family: 'Outfit', sans-serif;
    font-size: 26px;
    font-weight: 800;
    color: #fff;
    letter-spacing: 2px;
}

.mobile-menu-close {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: #fff;
    transition: all 0.3s ease;
}

.mobile-menu-close:hover {
    background: rgba(255, 255, 255, 0.3);
}

.mobile-nav {
    display: flex;
    flex-direction: column;
    padding: 40px 0 20px;
    flex: 1;
}

.mobile-nav-link {
    display: block;
    padding: 18px 28px;
    font-family: 'Outfit', sans-serif;
    font-size: 18px;
    font-weight: 600;
    color: var(--text-dark);
    text-decoration: none;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.25s ease;
    position: relative;
}

.mobile-nav-link::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 4px;
    background: var(--primary);
    transform: scaleY(0);
    transition: transform 0.25s ease;
    border-radius: 0 2px 2px 0;
}

.mobile-nav-link:hover,
.mobile-nav-link.active {
    color: var(--primary);
    background: rgba(36, 139, 101, 0.04);
    padding-left: 36px;
}

.mobile-nav-link:hover::before,
.mobile-nav-link.active::before {
    transform: scaleY(1);
}

.mobile-menu-footer {
    padding: 24px 28px;
    border-top: 1px solid rgba(0, 0, 0, 0.06);
    display: flex;
    flex-direction: column;
    gap: 16px;
    background: #f9fafb;
    flex-shrink: 0;
}

.mobile-lang-switcher {
    display: flex;
    gap: 8px;
    background: rgba(0, 0, 0, 0.06);
    padding: 5px;
    border-radius: 30px;
    width: fit-content;
}

/* Show burger on mobile, hide desktop nav */
@media (max-width: 992px) {
    .burger-btn {
        display: flex !important;
    }

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

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

    .header-right {
        gap: 10px;
    }

    /* Reduce container padding */
    .container {
        padding: 0 20px;
    }

    /* Sections */
    .section {
        padding: 70px 0;
    }

    /* Map */
    .map-container {
        height: 350px;
        border-radius: 20px;
    }

    /* Modal */
    .product-modal-content {
        width: 95%;
        height: auto;
        max-height: 90vh;
        flex-direction: column;
        border-radius: 24px;
        -webkit-overflow-scrolling: touch;
        overflow-y: auto;
    }

    .modal-left {
        min-height: 240px;
        flex: none;
    }

    .modal-right {
        padding: 30px 24px;
        flex: none;
    }
}

@media (max-width: 600px) {
    .container {
        padding: 0 16px;
    }

    .section {
        padding: 50px 0;
    }

    /* Modal bottom sheet */
    .product-modal-content {
        width: 100%;
        border-radius: 20px 20px 0 0;
        position: fixed;
        bottom: 0;
        left: 0;
        max-height: 92vh;
    }

    .product-modal-overlay {
        align-items: flex-end;
    }

    /* Testimonials */
    .quality-card {
        padding: 60px 20px 40px;
        min-height: auto;
    }

    .quality-prev,
    .quality-next {
        width: 48px;
        height: 48px;
        border-radius: 14px;
    }
}

@media (max-width: 768px) {
    .header {
        padding: 14px 0;
    }

    .nav.container {
        padding: 0 16px;
    }

    .we-produce-section .section-title {
        font-size: 2rem;
    }

    .page-hero {
        padding: 180px 0 60px;
    }

    .page-hero h1 {
        font-size: 2rem;
    }
}


/* ==========================================================================
   NEW REVIEWS V2 STYLES
   ========================================================================== */
.new-reviews-section {
    background: transparent;
    padding: 100px 0;
    overflow: hidden;
}

.reviews-v2-container {
    max-width: 1400px;
    margin: 60px auto 0;
    padding: 0 20px;
    position: relative;
}

.reviews-v2-swiper {
    padding-bottom: 80px !important;
    width: 100%;
}

.reviews-v2-swiper .swiper-slide {
    height: auto;
    display: flex;
}

.review-card {
    background: #ffffff;
    border-radius: 24px;
    padding: 40px;
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    transition: all 0.4s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.review-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

/* Visual Separation: Buyer vs Corporate */
.buyer-card {
    border-bottom: 6px solid var(--primary);
    /* Brand Green */
}

.corporate-card {
    border-bottom: 6px solid #3b82f6;
    /* Blue */
}

.review-badge {
    position: absolute;
    bottom: -16px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    padding: 8px 24px;
    border-radius: 30px;
    z-index: 10;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    white-space: nowrap;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    min-width: 140px;
    max-width: calc(100% - 20px);
    overflow: hidden;
    text-overflow: ellipsis;
}

.buyer-badge {
    background: var(--primary);
    color: #ffffff;
}

.corporate-badge {
    background: #3b82f6;
    color: #ffffff;
}

.review-quote-icon {
    font-size: 80px;
    color: rgba(0, 0, 0, 0.03);
    font-family: serif;
    position: absolute;
    top: 10px;
    left: 30px;
    line-height: 1;
}

.review-text {
    font-size: 18px;
    line-height: 1.6;
    color: #334155;
    font-style: italic;
    margin-bottom: 30px;
    position: relative;
    z-index: 2;
}

.review-footer {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: auto;
}

.review-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    object-position: center 20%;
    border: 3px solid #fff;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

img[src*="wom-3"],
img[src*="wom-2"],
img[src*="wom-1"] {
    object-position: 50% 15%;
    transform: scale(1.18);
}

.review-name {
    font-size: 18px;
    font-weight: 700;
    color: #0f172a;
    margin: 0;
}



/* Navigation */
.reviews-v2-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    margin-top: 40px;
}

.rv2-prev,
.rv2-next {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    color: #0f172a;
    position: relative;
    z-index: 5;
}

.rv2-prev:hover,
.rv2-next:hover {
    background: var(--primary);
    color: #fff;
    transform: scale(1.1);
}

.rv2-pagination {
    display: flex;
    gap: 8px;
    position: static !important;
    width: auto !important;
    justify-content: center;
}

.rv2-pagination .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background: #cbd5e1;
    opacity: 1;
    transition: all 0.3s ease;
}

.rv2-pagination .swiper-pagination-bullet-active {
    background: var(--primary);
    width: 30px;
    border-radius: 5px;
}

@media (max-width: 768px) {
    .review-card {
        padding: 30px;
    }

    .review-text {
        font-size: 16px;
    }

    .review-badge {
        font-size: 10px;
        padding: 7px 16px;
        min-width: 0;
    }

    /* Brand Bar Mobile Optimization */
    .brand-bar-container.expanded {
        flex-direction: row;
        width: 95%;
        gap: 10px;
        padding: 10px;
        border-radius: 20px;
    }

    .brand-bar-container.expanded .brand-sw-btn {
        width: 48%;
        height: 100px;
        padding: 5px;
    }

    .brand-bar-container.expanded .brand-logo-img {
        max-height: 70px;
        max-width: 90%;
    }
}

/* Mobile Overflow & Logo Optimizations */
@media (max-width: 768px) {
    .pack {
        width: 190px !important;
    }

    .pack-main {
        transform: translate(-50%, -50%) scale(1.05) !important;
        z-index: 10 !important;
    }

    .pack-left {
        display: block !important;
        transform: translate(-92%, -48%) scale(0.85) rotate(-10deg) !important;
        z-index: 5 !important;
    }

    .pack-right {
        display: block !important;
        transform: translate(-8%, -48%) scale(0.85) rotate(10deg) !important;
        z-index: 4 !important;
    }

    .assortment-visual {
        height: 240px !important;
        overflow: visible !important;
    }
}

@media (max-width: 600px) {
    .logo-img {
        height: 80px !important;
    }
}

/* Custom Styles for Homepage Improvements */
.h1-title {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 900;
    color: #0f172a;
    line-height: 1.1;
    letter-spacing: -0.03em;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.assortment-visual-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

.assortment-cta {
    margin-top: 30px;
    display: flex;
    justify-content: center;
    position: relative;
    z-index: 20;
}

.cta-card h2 {
    margin-bottom: 25px;
}

.cta-card p {
    margin-bottom: 45px;
}

/* Floating Loop Animations for Wipes Packs */
.pack-img-float {
    width: 100%;
    height: auto;
    display: block;
}

.float-main {
    animation: floatMain 6s ease-in-out infinite;
}

.float-right {
    animation: floatRight 7s ease-in-out infinite;
}

.float-left {
    animation: floatLeft 8s ease-in-out infinite;
}

@keyframes floatMain {
    0% {
        transform: translateY(0px) rotate(0deg);
    }

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

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

@keyframes floatRight {
    0% {
        transform: translateY(0px) rotate(0deg);
    }

    50% {
        transform: translateY(8px) rotate(-2deg);
    }

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

@keyframes floatLeft {
    0% {
        transform: translateY(0px) rotate(0deg);
    }

    50% {
        transform: translateY(-6px) rotate(2deg);
    }

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

/* ==========================================================================
   PRODUCTS PAGE: BRAND SHOWCASE SELECTOR & MYSTERY INTRIGUE OVERLAY
   ========================================================================== */

/* 1. Large Showcase Banners Grid */
.brand-showcase-section {
    width: 100%;
    padding: 70px 20px;
    background: transparent;
    overflow: hidden;
    margin-top: 130px;
    /* Accounts for fixed header after category-nav was removed */
}

.brand-showcase-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.showcase-title {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(2.2rem, 4.5vw, 3.4rem);
    color: var(--text-dark);
    margin-bottom: 50px;
    text-align: center;
    font-weight: 600;
}

.brand-banners-grid {
    display: flex;
    gap: 25px;
    width: 100%;
    height: 720px;
    perspective: 1000px;
    transform-style: preserve-3d;
}

/* 2. Brand Banner Cards */
.brand-banner-card {
    position: relative;
    flex: 1;
    height: 100%;
    border-radius: 32px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 35px 30px;
    cursor: pointer;
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.02);
    transition: flex 1.05s cubic-bezier(0.16, 1, 0.3, 1),
        border-color 0.6s ease,
        box-shadow 0.6s ease,
        transform 0.6s ease;
    will-change: flex, transform, opacity;
    transform: translate3d(0, 0, 0);
    transform-style: preserve-3d;
    backface-visibility: hidden;
    z-index: 1;
}

/* Flex Grid Hover Expansion */
.brand-banners-grid:hover .brand-banner-card:not(:hover) {
    flex: 0.6;
}

.brand-banner-card:hover {
    flex: 1.8;
    border-color: rgba(255, 255, 255, 0.15);
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.15);
}

/* Background Original Image podlozhka */
.banner-card-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transform: scale(1.22) translate3d(0, 0, 0);
    filter: blur(5px);
    transition: filter 1.05s ease, transform 1.05s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 0;
    will-change: transform, filter;
    backface-visibility: hidden;
}

.brand-banner-card:hover .banner-card-bg {
    filter: blur(0px);
    transform: scale(1.18) translate3d(0, 0, 0);
}

.card-bloomy .banner-card-bg {
    transform: scale(1.35) translate3d(0, 0, 0);
}

.card-bloomy:hover .banner-card-bg {
    transform: scale(1.30) translate3d(0, 0, 0);
}

@media (min-width: 769px) {
    .banner-card-bg {
        left: 50%;
        width: 750px;
        margin-left: -375px;
    }

    .card-eco .banner-card-bg,
    .card-ayva .banner-card-bg {
        margin-left: -420px;
    }
}


/* Gradient Overlay for Text Readability */
.banner-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.75) 0%, rgba(0, 0, 0, 0.2) 50%, rgba(0, 0, 0, 0.1) 100%);
    z-index: 1;
    opacity: 0.85;
    transition: opacity 0.5s ease;
}

.brand-banner-card:hover .banner-bg-overlay {
    opacity: 0.95;
}

/* Card Specific Themes (Fallback & Mystery) */
.card-eco {
    background-color: #f4f9f4;
}

.card-bloomy {
    background-color: #fef5f8;
}

.card-ayva {
    background-color: #f5fafd;
}

.card-mystery {
    background: linear-gradient(135deg, #020f08 0%, #082514 100%);
    border-color: rgba(42, 245, 152, 0.1);
}

.card-mystery .banner-card-bg {
    background: radial-gradient(circle at 50% 50%, rgba(42, 245, 152, 0.04) 0%, rgba(0, 0, 0, 0) 80%);
}

.card-mystery:hover .banner-card-bg {
    background: radial-gradient(circle at 50% 50%, rgba(42, 245, 152, 0.09) 0%, rgba(0, 0, 0, 0) 80%);
    transform: scale(1);
}

@media (min-width: 769px) {
    .card-mystery:hover .banner-card-bg {
        transform: translateX(-50%) scale(1);
    }
}

/* Floating Mystery Sphere Visual */
.banner-mystery-image-wrap {
    position: absolute;
    right: -25px;
    top: 50%;
    transform: translateY(-50%) rotate(-10deg);
    width: 220px;
    height: 220px;
    pointer-events: none;
    z-index: 2;
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
    opacity: 0.5;
    display: flex;
    align-items: center;
    justify-content: center;
}

.brand-banner-card:hover .banner-mystery-image-wrap {
    transform: translateY(-50%) rotate(0deg);
    right: 20px;
    opacity: 0.9;
}

.banner-mystery-sphere {
    width: 160px;
    height: 160px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(42, 245, 152, 0.15) 0%, rgba(42, 245, 152, 0) 70%);
    border: 1px dashed rgba(42, 245, 152, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 30px rgba(42, 245, 152, 0.05);
    animation: spin 20s linear infinite;
}

/* Card Content Inner layout */
.banner-content {
    position: relative;
    z-index: 3;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
    width: 100%;
    transform: translate3d(0, 0, 0);
    transform-style: preserve-3d;
    backface-visibility: hidden;
}

.banner-header {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: auto;
    margin-bottom: auto;
    transition: margin 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.banner-logo-wrap {
    height: 340px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.banner-logo-wrap::before {
    content: '';
    position: absolute;
    width: 320px;
    height: 320px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.65) 0%, rgba(255, 255, 255, 0.3) 45%, rgba(255, 255, 255, 0) 70%);
    z-index: -1;
    pointer-events: none;
    transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1), transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    opacity: 0.75;
    transform: scale(0.9);
}

.brand-banner-card:hover .banner-logo-wrap::before {
    opacity: 1;
    transform: scale(1.12);
}

.card-eco .banner-logo-wrap::before {
    display: none;
}

.banner-logo-img {
    max-height: 200px;
    max-width: 100%;
    object-fit: contain;
    filter: drop-shadow(0 8px 20px rgba(0, 0, 0, 0.16));
    transition: transform 0.5s ease;
    transform: translate3d(0, 0, 0);
    will-change: transform;
    backface-visibility: hidden;
}

.card-eco .banner-logo-img {
    filter: brightness(0) invert(1) drop-shadow(0 4px 10px rgba(0, 0, 0, 0.12));
}

@media (min-width: 769px) {

    .banner-logo-img,
    .card-eco .banner-logo-img,
    .card-bloomy .banner-logo-img {
        max-height: 320px;
    }
}

.brand-banner-card:hover .banner-logo-img {
    transform: translate3d(0, 0, 0);
}

.banner-lock-icon {
    font-size: 2.2rem;
    color: #2af598;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 300px;
}

.banner-lock-icon .lucide-lock-pulse {
    width: 150px;
    height: 150px;
}

.lucide-lock-pulse {
    width: 32px;
    height: 32px;
    filter: drop-shadow(0 0 12px rgba(42, 245, 152, 0.45));
    animation: mysteryPulse 2.2s infinite ease-in-out;
}

.banner-footer {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.banner-brand-title {
    font-family: 'Outfit', sans-serif;
    font-size: 2.8rem;
    font-weight: 700;
    margin: 0;
    color: #ffffff;
}

.mystery-title-glow {
    text-shadow: 0 0 10px rgba(42, 245, 152, 0.15);
    background: linear-gradient(135deg, #ffffff 40%, #2af598 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.banner-brand-desc {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    width: 280px;
    max-width: 90%;
    opacity: 0;
    max-height: 0;
    overflow: hidden;
    margin-top: 0;
    text-align: center;
    transition: max-height 0.7s cubic-bezier(0.25, 1, 0.5, 1),
        opacity 0.4s ease-out,
        margin-top 0.7s cubic-bezier(0.25, 1, 0.5, 1);
}

.brand-banner-card:hover .banner-brand-desc {
    opacity: 1;
    max-height: 120px;
    margin-top: 12px;
    transition: max-height 0.8s cubic-bezier(0.25, 1, 0.5, 1) 0.1s,
        opacity 0.7s cubic-bezier(0.25, 1, 0.5, 1) 0.15s,
        margin-top 0.8s cubic-bezier(0.25, 1, 0.5, 1) 0.1s;
}

/* Circular Arrow Trigger Buttons */
.banner-action-circle {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.25);
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    transition: all 0.4s ease;
    margin-top: 20px;
}

.banner-action-circle i {
    width: 20px;
    height: 20px;
    transition: transform 0.4s ease;
}

.brand-banner-card:hover .banner-action-circle {
    background: #ffffff;
    color: var(--primary);
    border-color: #ffffff;
}

.card-bloomy:hover .banner-action-circle {
    color: #e91e63;
}

.brand-banner-card:hover .banner-action-circle i {
    transform: translateX(4px);
}

/* Light Green Circle for Mystery */
.mystery-btn-glow {
    border-color: rgba(42, 245, 152, 0.4);
    color: #2af598;
}

.card-mystery:hover .mystery-btn-glow {
    background: #2af598;
    color: #03140a;
    border-color: #2af598;
    box-shadow: 0 0 15px rgba(42, 245, 152, 0.35);
}

.card-mystery:hover .mystery-btn-glow i {
    transform: translateX(4px);
}

/* 3. Compact Switcher (Assembled State) */
.compact-brand-bar {
    width: 100%;
    padding: 20px 0;
    background: #f8fafb;
    border-bottom: 1px solid rgba(0, 0, 0, 0.03);
    position: relative;
    z-index: 100;
    margin-top: 160px;
}

.compact-brand-container {
    max-width: 480px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    background: white;
    padding: 6px;
    border-radius: 100px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.04);
}

.compact-brand-btn {
    height: 72px;
    flex: 1;
    border-radius: 100px;
    border: none;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    padding: 0 15px;
}

.compact-brand-btn:hover:not(.active) {
    background: rgba(0, 0, 0, 0.02);
}

.compact-brand-btn.active {
    background: #ffffff;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.compact-brand-btn.active::after {
    content: "";
    position: absolute;
    bottom: 7px;
    left: 50%;
    transform: translateX(-50%);
    width: 5px;
    height: 5px;
    background: var(--primary);
    border-radius: 50%;
}

.compact-logo-img {
    max-height: 90%;
    max-width: 95%;
    object-fit: contain;
    opacity: 0.55;
    filter: brightness(0.95);
    transform: scale(1.2);
    transition: all 0.3s ease;
}

.compact-brand-btn.active .compact-logo-img {
    opacity: 1;
    filter: brightness(1);
    transform: scale(1.3);
}

.compact-logo-ayva {
    max-height: 32% !important;
    transform: scale(1.2) !important;
}

.compact-brand-btn.active .compact-logo-ayva {
    transform: scale(1.3) !important;
}

/* Compact Mystery Button */
.compact-mystery-btn {
    background: #061a0e;
    border: 1px solid rgba(42, 245, 152, 0.15);
    border-radius: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: #2af598;
}

.compact-mystery-btn:hover {
    background: #0d2818;
    color: #2af598;
    box-shadow: 0 0 12px rgba(42, 245, 152, 0.3);
}

.compact-lock-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
}

.compact-lock-icon {
    width: 14px;
    height: 14px;
    color: #2af598;
    animation: mysteryPulseCompact 2s infinite ease-in-out;
}

.compact-mystery-label {
    font-family: 'Outfit', sans-serif;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1px;
    color: #2af598;
}

/* 4. Mystery Intrigue Overlay */
.mystery-intrigue-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    height: 100dvh;
    background: rgba(4, 12, 7, 0.96);
    -webkit-backdrop-filter: blur(25px);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mystery-modal-box {
    position: relative;
    width: 90%;
    max-width: 580px;
    background: linear-gradient(145deg, #092113 0%, #041009 100%);
    border: 1px solid rgba(42, 245, 152, 0.15);
    border-radius: 36px;
    padding: 50px 40px;
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.9), 0 0 60px rgba(42, 245, 152, 0.05);
    overflow: hidden;
}

.mystery-close-btn {
    position: absolute;
    top: 25px;
    right: 25px;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.03);
    color: rgba(255, 255, 255, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
}

.mystery-close-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    border-color: rgba(255, 255, 255, 0.2);
    transform: rotate(90deg);
}

.mystery-modal-bg-glow {
    position: absolute;
    top: -150px;
    left: 50%;
    transform: translateX(-50%);
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(42, 245, 152, 0.1) 0%, rgba(42, 245, 152, 0) 70%);
    pointer-events: none;
    z-index: 1;
}

.mystery-modal-content-wrap {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.mystery-badge {
    font-family: 'Outfit', sans-serif;
    font-size: 0.8rem;
    font-weight: 700;
    color: #2af598;
    letter-spacing: 2px;
    padding: 6px 16px;
    border-radius: 50px;
    background: rgba(42, 245, 152, 0.05);
    border: 1px solid rgba(42, 245, 152, 0.15);
    margin-bottom: 25px;
    text-transform: uppercase;
}

.mystery-lock-container {
    position: relative;
    width: 100px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
}

.mystery-laser-ring {
    position: absolute;
    width: 100%;
    height: 100%;
    border: 1px dashed rgba(42, 245, 152, 0.25);
    border-radius: 50%;
    animation: spin 12s linear infinite;
}

.mystery-lock-icon-wrap {
    position: relative;
    width: 70px;
    height: 70px;
    background: rgba(42, 245, 152, 0.05);
    border: 1px solid rgba(42, 245, 152, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 25px rgba(42, 245, 152, 0.15);
    transition: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.lock-icon-svg {
    width: 30px;
    height: 30px;
    color: #2af598;
    transition: all 0.5s ease;
}

/* Unlock Active State */
.mystery-lock-icon-wrap.unlocked {
    background: rgba(42, 245, 152, 0.15);
    border-color: rgba(42, 245, 152, 0.5);
    color: #2af598;
    box-shadow: 0 0 35px rgba(42, 245, 152, 0.4);
    transform: scale(1.1);
}

.mystery-lock-icon-wrap.unlocked .lock-icon-svg {
    color: #2af598;
}

.mystery-main-title {
    font-family: 'Outfit', sans-serif;
    font-size: 2.2rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 15px;
    text-align: center;
}

.neon-green-gradient-text {
    background: linear-gradient(135deg, #abffc7 0%, #2af598 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.mystery-main-desc {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.7);
    text-align: center;
    line-height: 1.6;
    max-width: 480px;
    margin-bottom: 30px;
}

.mystery-specs-list {
    list-style: none;
    padding: 0;
    margin: 0 0 35px 0;
    width: 100%;
    max-width: 450px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: flex-start;
    background: rgba(255, 255, 255, 0.02);
    padding: 20px 24px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.04);
}

.mystery-specs-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.95rem;
    font-weight: 500;
    text-align: left;
}

.mystery-specs-list li i {
    color: #2af598;
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

/* Subscription Form */
.mystery-notify-form {
    display: flex;
    gap: 12px;
    width: 100%;
    max-width: 450px;
    margin-bottom: 10px;
    transition: opacity 0.4s ease, transform 0.4s ease;
}

.mystery-input-wrap {
    flex: 1;
}

.mystery-notify-form input {
    width: 100%;
    height: 50px;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.04);
    padding: 0 25px;
    color: #fff;
    font-size: 0.95rem;
    font-family: 'Inter', sans-serif;
    transition: all 0.3s ease;
}

.mystery-notify-form input:focus {
    outline: none;
    border-color: #2af598;
    background: rgba(8, 37, 20, 0.6);
    box-shadow: 0 0 15px rgba(42, 245, 152, 0.25);
}

.btn-mystery-submit {
    height: 50px;
    padding: 0 25px;
    border-radius: 50px;
    border: none;
    background: #2af598;
    color: #03140a;
    font-weight: 700;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: 'Outfit', sans-serif;
}

.btn-mystery-submit:hover {
    background: #5effb7;
    box-shadow: 0 0 20px rgba(42, 245, 152, 0.45);
    transform: translateY(-2px);
}

.btn-mystery-submit i {
    width: 16px;
    height: 16px;
    transition: transform 0.3s ease;
}

.btn-mystery-submit:hover i {
    transform: translateX(3px) translateY(-1px);
}

/* Success State Box */
.mystery-success-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    max-width: 450px;
    padding: 10px;
    text-align: center;
}

.success-icon-check {
    width: 50px;
    height: 50px;
    color: #4caf50;
    margin-bottom: 15px;
    filter: drop-shadow(0 0 15px rgba(76, 175, 80, 0.4));
}

.success-title {
    font-family: 'Outfit', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: #4caf50;
    margin-bottom: 10px;
    letter-spacing: 1px;
}

.success-desc {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.5;
}

/* 5. Keyframes Animations */
@keyframes spin {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

@keyframes mysteryPulse {
    0% {
        transform: scale(1);
        filter: drop-shadow(0 0 10px rgba(42, 245, 152, 0.35));
    }

    50% {
        transform: scale(1.06);
        filter: drop-shadow(0 0 22px rgba(42, 245, 152, 0.65));
    }

    100% {
        transform: scale(1);
        filter: drop-shadow(0 0 10px rgba(42, 245, 152, 0.35));
    }
}

@keyframes mysteryPulseCompact {
    0% {
        transform: scale(1);
        filter: drop-shadow(0 0 1px rgba(42, 245, 152, 0.3));
    }

    50% {
        transform: scale(1.15);
        filter: drop-shadow(0 0 6px rgba(42, 245, 152, 0.7));
    }

    100% {
        transform: scale(1);
        filter: drop-shadow(0 0 1px rgba(42, 245, 152, 0.3));
    }
}

@media (max-width: 991px) {
    .brand-banners-grid {
        gap: 20px;
        height: 580px;
    }

    .brand-banner-card {
        padding: 35px 24px;
    }
}

@media (max-width: 768px) {
    .brand-showcase-section {
        padding: 40px 15px;
        margin-top: 90px;
        /* Accounts for fixed header on mobile */
    }

    .compact-brand-bar {
        margin-top: 125px;
        /* Accounts for fixed header on mobile */
    }

    .brand-banners-grid {
        flex-direction: column;
        height: auto;
        gap: 20px;
    }

    .brand-banner-card {
        min-height: 560px;
        /* Match the vertical banner poster shape on mobile screens */
        border-radius: 24px;
        padding: 35px 24px;
    }

    .banner-logo-wrap {
        height: 200px;
    }

    .banner-logo-wrap::before {
        width: 180px;
        height: 180px;
    }

    .banner-logo-img {
        max-height: 180px;
    }

    .banner-lock-icon {
        height: 200px;
    }

    .banner-lock-icon .lucide-lock-pulse {
        width: 100px;
        height: 100px;
    }

    .banner-brand-title {
        font-size: 2.2rem;
    }

    .mystery-modal-box {
        padding: 45px 24px;
        border-radius: 28px;
        width: 95%;
    }

    .mystery-main-title {
        font-size: 1.8rem;
    }

    .mystery-notify-form {
        flex-direction: column;
        width: 100%;
        gap: 10px;
    }

    .btn-mystery-submit {
        width: 100%;
        justify-content: center;
    }

    .compact-brand-container {
        width: 92%;
    }
}

/* Styles for dark background catalog cards */
.catalog-item-card.is-dark-card {
    background: linear-gradient(rgba(0, 0, 0, 0.25), rgba(0, 0, 0, 0.25)), var(--card-bg, #000000);
}

.catalog-item-card.is-dark-card:hover {
    background: linear-gradient(rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.1)), var(--card-bg, #000000);
}

.catalog-item-card.is-dark-card .ca-title {
    color: #ffffff;
}

/* Card title word wrap & hyphenation fix */
.ca-title,
.catalog-item-card .ca-title,
.product-card h3,
.product-cat-info h3 {
    word-break: break-word !important;
    overflow-wrap: break-word !important;
    hyphens: auto !important;
    -webkit-hyphens: auto !important;
    line-height: 1.25 !important;
    overflow: visible !important;
}

.catalog-item-card.is-dark-card:hover .ca-title {
    color: #ffffff;
}

.catalog-item-card.is-dark-card .ca-spec {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.2);
}

.catalog-item-card.is-dark-card:hover .ca-spec {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.4);
}

.catalog-item-card.is-dark-card .ca-view-btn {
    color: rgba(255, 255, 255, 0.7);
}

.catalog-item-card.is-dark-card:hover .ca-view-btn {
    color: #ffffff;
}

/* Mobile Radial Donut Growth Showcase */
.radial-growth-showcase {
    display: none;
}

@media (max-width: 768px) {
    .desktop-chart-svg-wrap {
        display: none !important;
    }

    .chart-outer-container {
        background: transparent !important;
        border: none !important;
        border-radius: 0 !important;
        box-shadow: none !important;
        backdrop-filter: none !important;
        padding: 0 !important;
        margin: 0 !important;
        max-width: 100% !important;
        overflow-x: visible !important;
    }

    .radial-growth-showcase.corporate-style {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 18px;
        width: 100%;
        margin-top: 10px;
    }

    .radial-year-selector {
        display: flex !important;
        flex-wrap: nowrap !important;
        gap: 4px !important;
        width: 100% !important;
        max-width: 100% !important;
        padding: 4px 0 !important;
        justify-content: space-between !important;
        box-sizing: border-box !important;
        overflow: visible !important;
    }

    .radial-year-selector::-webkit-scrollbar {
        display: none !important;
    }

    .corporate-style .r-year-btn {
        background: #ffffff;
        border: 1px solid #cbd5e1;
        border-radius: 8px;
        padding: 6px 14px;
        font-family: 'Inter', sans-serif;
        font-size: 13px;
        font-weight: 700;
        letter-spacing: 0.5px;
        color: #334155;
        white-space: nowrap;
        cursor: pointer;
        transition: all 0.2s ease;
        flex-shrink: 0;
    }

    @media (max-width: 768px) {
        .corporate-style .r-year-btn {
            flex: 1 !important;
            min-width: 0 !important;
            padding: 7px 2px !important;
            font-size: clamp(10px, 3.2vw, 13px) !important;
            font-weight: 700 !important;
            text-align: center !important;
            border-radius: 8px !important;
        }
    }

    .corporate-style .r-year-btn.active {
        background: #0f172a;
        color: #ffffff;
        border-color: #0f172a;
        box-shadow: 0 4px 12px rgba(15, 23, 42, 0.15);
        transform: none;
    }

    .radial-chart-stage {
        position: relative;
        width: 220px;
        height: 220px;
        display: flex;
        justify-content: center;
        align-items: center;
        margin: 6px 0;
    }

    .radial-svg {
        width: 100%;
        height: 100%;
        filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.04));
    }

    .radial-center-info {
        position: absolute;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-align: center;
    }

    .corporate-style .r-center-year {
        font-family: 'Outfit', sans-serif;
        font-size: 32px;
        font-weight: 800;
        color: #0f172a;
        letter-spacing: -0.5px;
        line-height: 1;
    }

    .corporate-style .r-center-sub {
        font-family: 'Inter', sans-serif;
        font-size: 10px;
        font-weight: 700;
        color: #104932;
        letter-spacing: 1px;
        text-transform: uppercase;
        margin-top: 4px;
        background: rgba(16, 73, 50, 0.08);
        padding: 3px 8px;
        border-radius: 4px;
        border: 1px solid rgba(16, 73, 50, 0.15);
    }

    .radial-metrics-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 12px;
        width: 100%;
    }

    @media (max-width: 600px) {
        .radial-metrics-grid {
            grid-template-columns: 1fr !important;
            gap: 10px !important;
            width: 100% !important;
        }

        .corporate-style .r-metric-card {
            padding: 12px 16px !important;
            width: 100% !important;
            box-sizing: border-box !important;
        }

        .r-metric-val {
            font-size: 15px !important;
            white-space: nowrap !important;
        }
    }

    .corporate-style .r-metric-card {
        background: #ffffff;
        border: 1px solid #e2e8f0;
        border-radius: 12px;
        padding: 14px 12px;
        display: flex;
        flex-direction: column;
        gap: 6px;
        box-shadow: 0 2px 6px rgba(0, 0, 0, 0.02);
        text-align: left;
    }

    .corporate-style .r-metric-header {
        display: flex;
        align-items: center;
        gap: 6px;
        font-family: 'Inter', sans-serif;
        font-size: 10px;
        font-weight: 700;
        letter-spacing: 0.5px;
        text-transform: uppercase;
        color: #64748b;
    }

    .corporate-style .r-dot {
        width: 6px;
        height: 6px;
        border-radius: 2px;
        flex-shrink: 0;
    }

    .corporate-style .r-dot.green {
        background: #104932;
    }

    .corporate-style .r-dot.gold {
        background: #c59b27;
    }

    .corporate-style .r-metric-val {
        font-family: 'Outfit', sans-serif;
        font-size: 15px;
        font-weight: 800;
        color: #0f172a;
    }

    .corporate-style .r-metric-bar-bg {
        width: 100%;
        height: 5px;
        background: #f1f5f9;
        border-radius: 3px;
        overflow: hidden;
    }

    .corporate-style .r-metric-bar-fill {
        height: 100%;
        border-radius: 3px;
        transition: width 0.6s ease;
    }

    .corporate-style .r-metric-bar-fill.green {
        background: #104932;
    }

    .corporate-style .r-metric-bar-fill.gold {
        background: #c59b27;
    }

    .r-metric-bar-fill.green {
        background: linear-gradient(90deg, #248b65, #38be8d);
    }

    .r-metric-bar-fill.gold {
        background: linear-gradient(90deg, #d3a84a, #f1c453);
    }
}

/* Legal Pages Main spacing */
.legal-main {
    padding-top: 180px;
}

@media (max-width: 992px) {
    .legal-main {
        padding-top: 140px !important;
    }

    .legal-main h1 {
        font-size: clamp(1.75rem, 6.5vw, 2.5rem) !important;
        word-break: break-word !important;
        overflow-wrap: break-word !important;
        margin-bottom: 24px !important;
    }

    .legal-content {
        padding: 24px 18px !important;
        border-radius: 20px !important;
    }
}

@media (max-width: 768px) {
    .glass-card {
        padding: 24px 18px !important;
        border-radius: 20px !important;
    }

    .info-box-v2 {
        padding: 14px 16px !important;
    }

    .info-box-v2 span,
    .info-box-v2 a {
        font-size: 14px !important;
    }
}