/* ===== VARIABLES ===== */
:root {
    --background: #f5f5f7;
    --surface: #fff;
    --surface-highlight: #eaebf0;
    --foreground: #0d0d0f;
    --text-secondary: #3c3c43;
    --text-tertiary: #6e6e78;
    --primary: #FFB800;
    --primary-glow: rgba(255, 184, 0, .25);
    --accent: #FFB800;
    --container-width: 1400px;
    --section-padding: 8rem;
    --header-height: 100px;
    --glass: rgba(255, 255, 255, .85);
    --glass-strong: rgba(255, 255, 255, .97);
    --glass-border: rgba(0, 0, 0, .12);
    --glass-highlight: rgba(0, 0, 0, .04);
    --card-shadow: 0 2px 12px rgba(0, 0, 0, .06);
    --card-shadow-hover: 0 12px 32px rgba(0, 0, 0, .10)
}

:root.dark {
    --background: #030304;
    --surface: #0a0a0c;
    --surface-highlight: #121216;
    --foreground: #fff;
    --text-secondary: #a1a1aa;
    --text-tertiary: #52525b;
    --primary: #FFD700;
    --primary-glow: rgba(255, 215, 0, .35);
    --accent: #FFD700;
    --glass: rgba(10, 10, 12, .7);
    --glass-strong: rgba(10, 10, 12, .9);
    --glass-border: rgba(255, 255, 255, .08);
    --glass-highlight: rgba(255, 255, 255, .03);
    --card-shadow: 0 2px 12px rgba(0, 0, 0, .3);
    --card-shadow-hover: 0 12px 32px rgba(0, 0, 0, .5)
}

/* ===== PRELOADER ===== */
#preloader {
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: var(--background);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: opacity .8s cubic-bezier(.65, 0, .35, 1), visibility .8s;
}

#preloader.loaded {
    opacity: 0;
    visibility: hidden;
}

.loader-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

.loader-logo {
    font-size: 2rem;
    font-weight: 500;
    letter-spacing: -0.025em;
    color: var(--foreground);
    position: relative;
    opacity: 0;
    transform: translateY(20px);
    animation: loaderFadeIn 0.8s forwards 0.2s;
}

.loader-logo span {
    color: var(--primary);
}

.loader-progress-bar {
    width: 200px;
    height: 2px;
    background: var(--surface-highlight);
    border-radius: 4px;
    overflow: hidden;
    position: relative;
}

.loader-progress-line {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--primary);
    transform: scaleX(0);
    transform-origin: left;
    animation: loaderProgress 2s ease-in-out infinite;
}

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

@keyframes loaderProgress {
    0% {
        transform: scaleX(0);
        transform-origin: left;
    }

    45% {
        transform: scaleX(1);
        transform-origin: left;
    }

    55% {
        transform: scaleX(1);
        transform-origin: right;
    }

    100% {
        transform: scaleX(0);
        transform-origin: right;
    }
}

@media(max-width:768px) {
    :root {
        --section-padding: 4rem
    }
}

/* ===== RESET & BASE ===== */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0
}

html {
    scroll-behavior: smooth;
    scrollbar-gutter: stable;
}

body {
    color: var(--foreground);
    background: var(--background);
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 500;
    overflow-x: hidden;
    line-height: 1.7;
    letter-spacing: 0.01em;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
    font-feature-settings: 'kern' 1, 'liga' 1, 'calt' 1;
    min-height: 100vh;
    display: flex;
    flex-direction: column
}

a {
    color: inherit;
    text-decoration: none;
    transition: all .3s ease
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Outfit', sans-serif;
    line-height: 1.1;
    letter-spacing: -.025em;
    font-feature-settings: 'kern' 1, 'liga' 1;
    text-wrap: balance;
    font-weight: 400;
}

h1 {
    font-size: clamp(2.25rem, 5vw + 1rem, 3.5rem)
}

h2 {
    font-size: clamp(1.75rem, 3vw + 0.75rem, 2.5rem)
}

h3 {
    font-size: clamp(1.25rem, 2vw + 0.5rem, 1.75rem)
}

/* Fluid typography via clamp() handles responsive sizes — no media query override needed */

img {
    max-width: 100%;
    display: block
}

::-webkit-scrollbar {
    width: 8px
}

::-webkit-scrollbar-track {
    background: var(--background)
}

::-webkit-scrollbar-thumb {
    background: var(--text-tertiary);
    border-radius: 4px
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary)
}

::selection {
    background: var(--primary);
    color: #000
}

/* ===== LAYOUT STABILITY ===== */
#featuredGrid,
#productContent,
#eshopGrid,
#portfolioGrid,
#blogGrid,
#reviewsGrid,
#faqAccordion,
#productionSteps,
#shippingGrid,
#paymentGrid,
#aboutMain {
    min-height: 400px;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 1.5rem
}

.desktop-flex {
    display: flex
}

/* ===== NAVBAR ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 2rem 0;
    transition: all .4s cubic-bezier(.2, .8, .2, 1);
    background: transparent;
    display: flex;
    justify-content: center;
    color: #fff;
}

.navbar .logo,
.navbar .nav-link,
.navbar .theme-toggle-btn,
.navbar .cart-btn,
.navbar .lang-dropdown .dropdown-selected {
    color: #fff !important;
    /* Force white for the pill theme */
}

.navbar.scrolled {
    padding: 1rem 0;
}

.navbar.scrolled .nav-container {
    padding: .65rem 1.75rem;
}

.navbar.scrolled .nav-container::before {
    background: rgb(255 255 255 / 10%);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.navbar.scrolled .logo,
.navbar.scrolled .nav-link,
.navbar.scrolled .theme-toggle-btn,
.navbar.scrolled .cart-btn,
.navbar.scrolled .lang-dropdown .dropdown-selected {
    color: #fff !important;
}

.nav-container {
    position: relative;
    max-width: var(--container-width);
    width: calc(100% - 3rem);
    margin: 0 auto;
    padding: 0 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all .4s cubic-bezier(.2, .8, .2, 1);
    padding: 0.6rem 2.25rem;
}

.nav-container::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 100px;
    background: rgb(255 255 255 / 10%);
    ;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    z-index: -1;
    transition: all .4s cubic-bezier(.2, .8, .2, 1);
    pointer-events: none;
}

.logo {
    font-size: 1.5rem;
    font-weight: 500;
    letter-spacing: -.02em;
    color: var(--foreground);
    display: flex;
    align-items: center;
    gap: 2px;
    white-space: nowrap
}

.logo-highlight,
.footer-highlight {
    color: var(--primary)
}

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

.nav-items {
    display: flex;
    gap: 2.25rem;
    align-items: center
}

.nav-actions-group {
    display: flex;
    align-items: center;
    gap: 1.25rem;
}

.nav-link {
    color: rgba(255, 255, 255, 0.85);
    /* Slightly muted white for better hierarchy */
    font-size: .875rem;
    font-weight: 200;
    text-transform: uppercase;
    letter-spacing: .05em;
    cursor: pointer;
    transition: all .3s cubic-bezier(.2, .8, .2, 1);
    position: relative;
    padding: .5rem 0
}

.scrolled .nav-link {
    color: rgba(255, 255, 255, 0.85);
}

.nav-link:hover {
    color: #fff
}

.scrolled .nav-link:hover {
    color: #fff;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--primary);
    transition: width .3s ease
}

.nav-link:hover::after {
    width: 100%
}

.nav-dropdown {
    position: relative;
    display: flex;
    align-items: center
}

.nav-dropdown .nav-link {
    display: flex;
    align-items: center;
    gap: .5rem
}

.chevron {
    transition: transform .3s ease;
    opacity: .7
}

.nav-dropdown.active .chevron {
    transform: rotate(-180deg)
}

.dropdown-item-content {
    display: flex;
    align-items: center;
    gap: .75rem
}

.dropdown-item-content svg {
    opacity: .6;
    transition: all .3s ease
}

.dropdown-content a:hover .dropdown-item-content svg {
    opacity: 1;
    color: var(--primary);
    transform: scale(1.1)
}

.dropdown-content {
    position: absolute;
    top: 100%;
    left: 0;
    transform: translateY(20px);
    background: var(--surface);
    min-width: 240px;
    padding: .75rem;
    border-radius: 1rem;
    border: 1px solid var(--glass-border);
    opacity: 0;
    visibility: hidden;
    transition: all .3s cubic-bezier(.2, .8, .2, 1);
    display: flex;
    flex-direction: column;
    z-index: 1100;
    pointer-events: none
}

.dropdown-content::before {
    content: '';
    position: absolute;
    top: -20px;
    left: 0;
    right: 0;
    height: 20px;
    background: transparent;
}

@media (min-width: 1025px) {
    .nav-dropdown:hover .dropdown-content {
        opacity: 1;
        visibility: visible;
        transform: translateY(10px);
        pointer-events: all
    }
}

.nav-dropdown.active .dropdown-content {
    opacity: 1;
    visibility: visible;
    transform: translateY(10px);
    pointer-events: all
}

.dropdown-content a {
    color: var(--text-secondary);
    font-size: 0.9375rem;
    padding: 0.8rem 1.25rem;
    border-radius: 0.75rem;
    white-space: nowrap;
    font-weight: 500;
    font-family: 'Outfit', sans-serif;
    letter-spacing: -0.01em;
}

.dropdown-content a:hover {
    background: var(--surface-highlight);
    color: var(--primary);
    transform: translateX(6px)
}

.btn-contact {
    background: #fff;
    color: #000;
    padding: 0.65rem 2rem;
    border-radius: 100px;
    font-weight: 400;
    font-size: .875rem;
    letter-spacing: -0.01em;
    transition: all .3s cubic-bezier(.2, .8, .2, 1);
    white-space: nowrap;
    border: none;
}

.scrolled .btn-contact {
    background: #fff;
    color: #000;
}

.btn-contact:hover {
    background: var(--primary);
    color: #000;
    transform: translateY(-2px);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    margin-left: 1.25rem
}

.cart-btn {
    background: transparent;
    border: none;
    color: var(--foreground);
    cursor: pointer;
    position: relative;
    padding: .5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color .3s
}

.cart-btn:hover {
    color: var(--primary)
}

.cart-btn svg {
    width: 20px;
    height: 20px;
    transition: transform 0.3s;
}

.cart-count-badge {
    position: absolute;
    top: -2px;
    right: -2px;
    background: var(--primary);
    color: #000;
    font-size: .7rem;
    font-weight: 700;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center
}

.mobile-toggle {
    display: none;
    background: none;
    border: none;
    padding: 10px;
    cursor: pointer;
    z-index: 1002;
    flex-direction: column;
    gap: 6px
}

.burger-line {
    display: block;
    width: 24px;
    height: 2px;
    background: #fff;
    border-radius: 2px;
    transition: all .3s cubic-bezier(.4, 0, .2, 1)
}

.toggle-open .burger-line:nth-child(1) {
    transform: translateY(8px) rotate(45deg)
}

.toggle-open .burger-line:nth-child(2) {
    opacity: 0;
    transform: translateX(10px)
}

.toggle-open .burger-line:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg)
}

.mobile-menu-header,
.mobile-menu-footer {
    display: none
}

.theme-toggle-btn {
    background: transparent;
    border: none;
    color: #fff;
    cursor: pointer;
    padding: .5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all .3s
}

.scrolled .theme-toggle-btn {
    color: #fff;
}

.theme-toggle-btn svg {
    width: 18px;
    height: 18px;
    transition: transform 0.3s;
}

.theme-toggle-btn:hover {
    /* border-color: var(--primary); */
    color: var(--primary);
    transform: rotate(15deg);
}

.theme-toggle-btn:hover {
    /* border-color: var(--primary); */
    color: var(--primary)
}

.lang-dropdown {
    width: auto;
    position: relative;
    z-index: 1001;
}

.lang-dropdown .dropdown-selected {
    padding: .5rem;
    border: none;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    cursor: pointer;
}

.scrolled .lang-dropdown .dropdown-selected {
    background: transparent;
}

.lang-dropdown .dropdown-selected svg {
    width: 20px;
    height: 20px;
    transition: transform 0.3s;
}

.lang-dropdown .dropdown-selected:hover {
    /* border-color: var(--primary); */
}

.custom-dropdown.lang-dropdown.open .dropdown-selected {
    /* border-color: var(--primary); */
}

.lang-dropdown .dropdown-options {
    min-width: 50px;
    right: 50%;
    transform: translateX(50%) translateY(10px);
    left: auto;
    border-radius: 12px;
    padding: 0.5rem;
    margin-top: 0.5rem;
}

.lang-dropdown .dropdown-options::before {
    content: '';
    position: absolute;
    top: -20px;
    left: 0;
    right: 0;
    height: 20px;
    background: transparent;
}

.custom-dropdown.lang-dropdown.open .dropdown-options {
    transform: translateX(50%) translateY(0);
}

.lang-dropdown .dropdown-option {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.5rem;
    border-bottom: none !important;
    border-radius: 8px;
    transition: all 0.2s;
}

.lang-dropdown .dropdown-option:hover {
    background: var(--surface-highlight);
}

@media(max-width:1024px) {
    .mobile-toggle {
        display: flex
    }

    .nav-items {
        flex-direction: column;
        align-items: flex-start;
        width: 100%;
        gap: 1.5rem;
        padding-top: 2rem;
        margin-bottom: 3rem
    }

    .nav-actions-group {
        display: flex;
        flex-direction: column;
        width: 100%;
        gap: 1.25rem;
        margin-top: 1.5rem;
        align-items: flex-start
    }

    .nav-links {
        margin-left: 0;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: var(--background);
        backdrop-filter: blur(20px);
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        padding: 2.5rem;
        transform: translateY(-100%);
        transition: all .6s cubic-bezier(.85, 0, .15, 1);
        z-index: 1001;
        opacity: 0;
        visibility: hidden
    }

    .nav-links.mobile-open {
        transform: translateY(0);
        opacity: 1;
        visibility: visible
    }

    .nav-links .nav-link {
        color: var(--foreground) !important;
    }

    .nav-links .logo {
        color: var(--foreground) !important;
    }

    .hide-on-mobile {
        display: none
    }

    .mobile-menu-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        width: 100%;
        padding: 0.5rem 0 2rem;
        border-bottom: 1px solid var(--glass-border)
    }

    .mobile-actions {
        display: flex;
        align-items: center;
        gap: 0.75rem;
        margin-left: 1rem;
        flex-shrink: 0
    }

    .close-menu-btn {
        background: var(--surface-highlight);
        border: 1px solid var(--glass-border);
        color: var(--foreground);
        width: 40px;
        height: 40px;
        border-radius: 50%;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: all .3s cubic-bezier(.2, .8, .2, 1);
        flex-shrink: 0
    }

    .nav-links .theme-toggle-btn,
    .nav-links .lang-dropdown .dropdown-selected {
        background: var(--surface-highlight) !important;
        border-color: var(--glass-border) !important;
        color: var(--foreground) !important;
        width: 40px !important;
        height: 40px !important;
        border-radius: 50% !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        padding: 0 !important;
        flex-shrink: 0 !important
    }

    .close-menu-btn:hover {
        color: var(--primary)
    }

    .toggle-open {
        opacity: 0;
        pointer-events: none
    }

    .mobile-menu-footer {
        display: flex;
        flex-direction: column;
        gap: 1.25rem;
        padding-top: 2rem;
        border-top: 1px solid var(--glass-border);
        width: 100%;
        margin-bottom: 1rem
    }

    .socials {
        display: flex;
        gap: 2rem;
        opacity: 0.8
    }

    .socials a {
        color: var(--text-secondary);
        font-size: .875rem;
        font-weight: 500;
        transition: color .3s
    }

    .socials a:hover {
        color: var(--primary)
    }

    .copyright-mobile {
        font-size: .75rem;
        color: var(--text-tertiary)
    }

    .nav-link {
        font-size: 1.75rem;
        font-weight: 5ы00;
        padding: 0;
        display: flex;
        align-items: center;
        justify-content: space-between;
        width: 100%
    }

    .nav-link .chevron {
        width: 20px;
        height: 20px;
        opacity: 0.5
    }

    .nav-dropdown {
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: flex-start
    }

    .dropdown-content {
        position: static;
        width: 100%;
        display: none;
        background: transparent;
        border: none;
        padding-left: 1.25rem;
        margin: 0;
        opacity: 1;
        visibility: visible;
        transform: none;
        pointer-events: all
    }

    .nav-dropdown.active .dropdown-content {
        display: flex;
        flex-direction: column;
        gap: 0.25rem;
        padding-top: 0.75rem;
        padding-bottom: 0.5rem;
    }

    .dropdown-content a {
        font-size: 1.35rem;
        padding: 0.5rem 0;
        color: var(--text-secondary);
        font-weight: 500;
        border-bottom: none;
    }

    .dropdown-content a:hover {
        background: transparent;
        color: var(--primary);
        transform: translateX(5px)
    }

    .dropdown-item-content {
        gap: 0.85rem;
    }

    .dropdown-item-content svg {
        width: 18px;
        height: 18px;
        opacity: 0.4;
    }

    .btn-contact {
        width: 100%;
        text-align: center;
        font-size: 1.25rem;
        padding: 1.25rem;
        margin-top: .5rem
    }
}

/* ===== HERO ===== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: calc(var(--header-height) + 2rem) 2rem 2rem;
    overflow: hidden;
    background: #030304
}

.hero::before {
    content: '';
    position: absolute;
    top: -20%;
    left: -20%;
    width: 60%;
    height: 60%;
    background: radial-gradient(circle, rgba(240, 192, 90, .05), transparent 60%);
    filter: blur(100px);
    z-index: 0
}

.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    object-fit: cover;
    z-index: 0;
    opacity: 1;
    /* filter: brightness(0.65) contrast(1.15) */
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(3, 3, 4, .65) 0%, rgba(3, 3, 4, .35) 50%, rgba(3, 3, 4, .7) 100%);
    z-index: 1
}

.hero-container {
    max-width: var(--container-width);
    margin: 0 auto;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 4rem;
    position: relative;
    z-index: 10
}

.hero-text-content {
    flex: 1;
    max-width: 1200px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 2
}

.hero-image-fallback {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 0;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    padding: .5rem 1.25rem;
    border-radius: 100px;
    color: #ffffff;
    font-size: .875rem;
    font-weight: 700;
    margin-bottom: 1.25rem;
    letter-spacing: .1em;
    text-transform: uppercase;
    backdrop-filter: blur(10px);
    animation: fadeInDown .8s ease-out
}

.hero-title {
    font-size: clamp(2.2rem, 5vw + 0.5rem, 4.2rem);
    line-height: 1.05;
    font-weight: 500;
    margin-bottom: 2rem;
    color: #ffb800;
    letter-spacing: -.03em;
    text-wrap: balance;
    animation: fadeInUp 1s ease-out .2s backwards;
}

.hero-highlight {
    color: var(--primary);
    display: inline;
}

.hero-description {
    font-size: 1.1rem;
    color: #ffb800;
    margin-bottom: 4rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
    letter-spacing: 0.01em;
    font-weight: 200;
    text-wrap: balance;
    opacity: 0.8;
    animation: fadeInUp 1s ease-out .4s backwards
}

.hero-actions {
    display: flex;
    justify-content: center;
    gap: 1rem;
    animation: fadeInUp 1s ease-out .6s backwards
}

.hero-btn-primary {
    background: var(--primary);
    color: #000;
    padding: 0.85rem 2.2rem;
    border-radius: 100px;
    font-weight: 200;
    font-size: 0.95rem;
    transition: all .3s ease;
    display: inline-flex;
    align-items: center;
    gap: .5rem;
}

.hero-btn-primary:hover {
    transform: translateY(-2px);
    background: var(--foreground);
    color: var(--background)
}

.hero-btn-secondary {
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
    padding: 0.85rem 2.2rem;
    border-radius: 100px;
    font-weight: 200;
    font-size: 0.95rem;
    transition: all .3s;
    border: 1px solid rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
}

.hero-btn-secondary:hover {
    color: #f0c05a;
    background: rgba(255, 255, 255, 0.12)
}

.hero-features-thin {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 3rem;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    padding: 1rem 3rem;
    border-radius: 100px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.4s cubic-bezier(0.2, 0.8, 0.2, 1)
}

.hero-features-thin:hover {
    transform: translateY(-4px);
    background: rgba(255, 255, 255, 0.08);
}

.desktop-only {
    margin-top: 6rem;
    display: flex;
    justify-content: center;
    width: 100%;
    animation: fadeInUp 1.2s cubic-bezier(0.2, 0.8, 0.2, 1) .8s backwards;
}

.hero-feature-item {
    display: flex;
    align-items: center;
    gap: .75rem;
    color: #fff;
    font-size: .875rem;
    font-weight: 200;
    transition: all .3s ease;
    cursor: default;
    white-space: nowrap;
    opacity: 0.9
}

.hero-feature-item:hover {
    opacity: 1;
}

.hero-feature-item svg {
    width: 1.1rem;
    height: 1.1rem;
    color: #f0c05a;
    transition: all .3s ease;
    flex-shrink: 0
}

.hero-feature-divider {
    width: 1px;
    height: 16px;
    background: #fff;
    opacity: 0.15;
    border-radius: 0
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px)
    }

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

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

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

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
        filter: blur(10px)
    }

    to {
        opacity: 1;
        transform: translateX(0);
        filter: blur(0)
    }
}

@keyframes float {

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

    50% {
        transform: translateY(-20px)
    }
}

@media(max-width:1200px) {
    .hero-container {
        flex-direction: column;
        text-align: center;
        gap: 4rem
    }

    .hero-text-content {
        margin: 0 auto;
        align-items: center;
        display: flex;
        flex-direction: column
    }

    .hero-highlight {
        display: block
    }

    .hero-features-thin {
        justify-content: center;
        gap: 1rem
    }

    .hero-actions {
        justify-content: center
    }
}

@media(max-width:768px) {
    .hero {
        padding: 8rem 1.25rem 2rem
    }

    .hero-description {
        margin-bottom: 2rem
    }

    .hero-badge {
        font-size: .75rem;
        padding: .4rem 1rem;
        margin-bottom: 1.5rem
    }

    .desktop-only {
        display: none
    }

    .hero-actions {
        flex-direction: column;
        width: 100%;
        gap: 1rem
    }

    .hero-btn-primary,
    .hero-btn-secondary {
        width: 100%;
        justify-content: center;
        padding: 1rem 2rem;
        font-size: .9375rem
    }
}

/* ===== WHY CHOOSE US ===== */
.why-section {
    padding: var(--section-padding) 0;
    position: relative;
    overflow: hidden;
}

.why-container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 1.5rem;
    display: flex;
    gap: 6rem;
    align-items: center;
}

.why-visual-side {
    flex: 1;
    position: relative;
}

.why-image-wrapper {
    position: relative;
    width: 100%;
    height: 700px;
    border-radius: 1.5rem;
    overflow: hidden;
}

.why-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
}

.dark .why-image-wrapper {}

.why-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.5) 0%, transparent 60%);
    z-index: 10;
}

.why-experience-badge {
    position: absolute;
    bottom: 2rem;
    right: 2rem;
    background: #fff;
    padding: 1.75rem 2rem;
    border-radius: 1.25rem;
    z-index: 20;
    display: flex;
    align-items: center;
    gap: 1rem;
    border-left: 4px solid var(--primary);
}

.dark .why-experience-badge {
    background: var(--surface);
}

.why-stat-number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary);
    line-height: 1;
}

.why-stat-text {
    font-size: 0.75rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-weight: 700;
    line-height: 1.4;
}

.why-content-side {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.why-header {
    margin-bottom: 3.5rem;
}

.why-title {
    font-size: clamp(2rem, 4vw + 0.5rem, 3.5rem);
    margin-bottom: 1.5rem;
    color: var(--foreground);
    line-height: 1.1;
    letter-spacing: -0.02em;
}

.why-subtitle {
    color: var(--text-secondary);
    font-size: clamp(0.95rem, 1vw + 0.25rem, 1.125rem);
    line-height: 1.7;
    letter-spacing: 0.01em;
    max-width: 500px;
}

.why-grid {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.why-card {
    background: var(--surface);
    padding: 2rem;
    border: none;
    border-radius: 1.25rem;
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.dark .why-card {
    background: var(--surface-highlight);
}

.why-icon-wrapper {
    width: 56px;
    height: 56px;
    flex-shrink: 0;
    background: rgba(255, 184, 0, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
}

.dark .why-icon-wrapper {
    background: rgba(255, 215, 0, 0.1);
}

.why-card-title {
    font-size: 1.1rem;
    margin-bottom: 0.35rem;
    color: var(--foreground);
    font-weight: 700;
}

.why-card-text {
    font-size: 0.9rem;
    line-height: 1.65;
    color: var(--text-tertiary);
}

@media(max-width:1024px) {
    .why-container {
        flex-direction: column;
        gap: 4rem;
    }

    .why-visual-side {
        width: 100%;
        order: -1;
    }

    .why-image-wrapper {
        height: 500px;
    }

    .why-experience-badge {
        bottom: 1.5rem;
        right: 1.5rem;
    }

    .why-header {
        margin-bottom: 2.5rem;
        text-align: center;
    }

    .why-card {
        padding: 1.5rem;
        gap: 1rem
    }
}

/* ===== SERVICES ===== */
.services-section {
    padding: var(--section-padding) 0;
    background: var(--background)
}

.services-container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 1.5rem
}

.services-header {
    text-align: center;
    margin-bottom: 4rem
}

.services-title {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--foreground)
}

.services-subtitle {
    font-size: 1.125rem;
    color: var(--text-secondary)
}

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

.service-card {
    position: relative;
    height: 450px;
    border-radius: 1.5rem;
    overflow: hidden;
    /* cursor: pointer; */
    transition: transform .5s cubic-bezier(.2, .8, .2, 1)
}

/* .service-card:hover {
    transform: translateY(-10px)
} */

.service-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    transition: transform .7s ease
}

.service-card:hover .service-image {
    transform: scale(1.1)
}

.service-image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, .8) 0%, rgba(0, 0, 0, .2) 60%, transparent 100%);
    z-index: 1
}

.service-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 2rem;
    z-index: 2
}

.service-card-title {
    color: #fff;
    font-size: 1.5rem;
    margin-bottom: .75rem;
    font-weight: 700
}

.service-card-desc {
    color: rgba(255, 255, 255, .7);
    font-size: .9375rem;
    line-height: 1.5
}

@media(max-width:768px) {
    .services-title {
        font-size: 2.5rem
    }
}

/* ===== FEATURED PRODUCTS ===== */
.featured-section {
    padding: var(--section-padding) 0;
    background: var(--surface);
    border-top: 1px solid var(--glass-border)
}

.featured-container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 1.5rem
}

.featured-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem
}

.featured-label {
    display: inline-block;
    color: var(--primary);
    font-size: .875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .1em;
    margin-bottom: 1rem;
    padding: .5rem 1rem;
    background: var(--surface-highlight);
    border-radius: 100px;
    border: 1px solid var(--glass-border)
}

.featured-title {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: var(--foreground);
    letter-spacing: -.02em
}

.featured-subtitle {
    font-size: 1.125rem;
    color: var(--text-secondary);
    line-height: 1.6
}

.featured-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
    margin-bottom: 4rem
}

.featured-card {
    display: block;
    background: var(--surface);
    border: 1px solid var(--glass-border);
    border-radius: 1.5rem;
    overflow: hidden;
    /* transition: all .4s cubic-bezier(.2, .8, .2, 1); */
}

.featured-card:hover {
    transform: translateY(-8px);
    border-color: var(--primary)
}

.featured-image-wrapper {
    position: relative;
    height: 300px;
    background: var(--surface-highlight);
    overflow: hidden
}

.featured-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .6s ease
}

.featured-card:hover .featured-image {
    transform: scale(1.05)
}

.featured-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, .3);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity .3s
}

.featured-card:hover .featured-overlay {
    opacity: 1
}

.featured-view-btn {
    background: var(--surface);
    color: var(--foreground);
    padding: .75rem 1.5rem;
    border-radius: 100px;
    font-weight: 500;
    transform: translateY(10px);
    transition: transform .3s
}

.featured-card:hover .featured-view-btn {
    transform: translateY(0)
}

.featured-content {
    padding: 2rem
}

.featured-category {
    font-size: .75rem;
    color: var(--text-tertiary);
    text-transform: uppercase;
    letter-spacing: .1em;
    font-weight: 500;
    display: block;
    margin-bottom: .5rem
}

.featured-product-name {
    font-size: 1.25rem;
    color: var(--foreground);
    margin-bottom: 1rem;
    font-weight: 700;
    transition: color .3s
}

.featured-card:hover .featured-product-name {
    color: var(--primary)
}

.featured-price {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--foreground)
}

.featured-actions {
    text-align: center
}

.featured-cta-button {
    display: inline-flex;
    align-items: center;
    gap: .75rem;
    background: var(--foreground);
    color: var(--background);
    padding: 1rem 2.5rem;
    border-radius: 100px;
    font-weight: 700;
    font-size: 1rem;
    transition: all .3s cubic-bezier(.2, .8, .2, 1)
}

.featured-cta-button:hover {
    background: var(--primary);
    color: #000;
    transform: translateY(-2px);
}

@media(max-width:768px) {
    .featured-title {
        font-size: 2.25rem
    }

    .featured-grid {
        grid-template-columns: 1fr
    }
}

/* ===== CERTIFICATIONS ===== */
.certs-section {
    padding: 6rem 0;
    border-top: 1px solid var(--glass-border);
    background: linear-gradient(to bottom, transparent, var(--surface-highlight))
}

.dark .certs-section {
    background: linear-gradient(to bottom, transparent, rgba(0, 0, 0, .4))
}

.certs-container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 1.5rem
}

.certs-title {
    font-size: 1rem;
    margin-bottom: 4rem;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--text-tertiary);
    text-align: center;
    letter-spacing: .3em
}

.certs-logo-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    align-items: center
}

.cert-logo {
    width: 140px;
    height: 140px;
    background: var(--surface);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    font-size: .875rem;
    font-weight: 700;
    color: var(--text-secondary);
    border: 1px solid var(--glass-border);
    transition: all .4s cubic-bezier(.2, .8, .2, 1);
    padding: 1rem;
    line-height: 1.3;
    position: relative;
    overflow: hidden
}

.cert-logo::before {
    content: '';
    position: absolute;
    inset: 4px;
    border-radius: 50%;
    border: 1px dashed var(--glass-border);
    transition: all .4s ease
}

.cert-logo:hover {
    transform: translateY(-5px);
    /* border-color: var(--primary); */
    color: var(--primary);
    background: var(--surface)
}

.dark .cert-logo:hover {
    background: #000
}

@media(max-width:768px) {
    .cert-logo {
        width: 110px;
        height: 110px;
        font-size: .75rem
    }
}

/* ===== HOW IT WORKS ===== */
.how-section {
    padding: var(--section-padding) 0;
    overflow: hidden;
    background: var(--background);
    position: relative;
}

.how-container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 1.5rem;
}

.how-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 5rem;
}

.how-title {
    font-size: clamp(2rem, 4vw + 0.5rem, 3.5rem);
    margin-bottom: 1rem;
    color: var(--foreground);
    line-height: 1.1;
    letter-spacing: -0.02em;
}

.how-subtitle {
    color: var(--text-secondary);
    font-size: clamp(0.95rem, 1vw + 0.25rem, 1.125rem);
    line-height: 1.7;
    max-width: 550px;
    margin: 0 auto;
}

.how-body {
    display: flex;
    align-items: stretch;
    gap: 5rem;
}

.how-steps {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0;
    counter-reset: step-counter;
    position: relative;
}

.how-step {
    padding: 2.5rem 2rem 2.5rem 5rem;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    background: none;
    position: relative;
    counter-increment: step-counter;
}

/* Vertical line connecting steps */
.how-step::before {
    content: '';
    position: absolute;
    left: 1.4rem;
    top: 0;
    bottom: 0;
    width: 1px;
    background: var(--glass-border);
}

.how-step:first-child::before {
    top: 50%;
}

.how-step:last-child::before {
    bottom: 50%;
}

.how-step-bg-alt,
.how-step-main {
    background: none;
}

.dark .how-step {
    background: none;
}

.how-icon-box {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    background: var(--background);
    color: var(--primary);
    border: 2px solid var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    font-size: 0;
}

/* Hide the SVG icon, show step number instead */
.how-icon-box svg {
    display: none;
}

.how-icon-box::after {
    content: counter(step-counter, decimal-leading-zero);
    font-size: 1rem;
    font-weight: 800;
    color: var(--primary);
    letter-spacing: -0.02em;
}

.dark .how-icon-box {
    background: var(--background);
}

.how-step-content {
    flex: 1;
}

.how-step-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--foreground);
}

.how-step-text {
    color: var(--text-tertiary);
    font-size: 0.9rem;
    line-height: 1.7;
}

.how-media {
    flex: 0 0 45%;
    position: relative;
}

.how-img-wrapper {
    border-radius: 1.5rem;
    overflow: hidden;
    height: 100%;
    min-height: 500px;
}

.dark .how-img-wrapper {}

.how-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media (max-width: 991px) {
    .how-body {
        flex-direction: column;
        gap: 3rem;
    }

    .how-media {
        flex: none;
        width: 100%;
    }

    .how-img-wrapper {
        height: 350px;
        min-height: auto;
    }

    .how-step {
        padding: 2rem 1.5rem 2rem 4.5rem;
    }

    .how-icon-box {
        width: 40px;
        height: 40px;
    }
}

/* ===== CONTACT FORM MINIMAL ===== */
.contact-section-minimal {
    padding: 10rem 0;
    position: relative;
    background: radial-gradient(circle at bottom right, var(--surface-highlight) 0%, var(--background) 100%);
    border-top: 1px solid var(--glass-border);
    overflow: hidden;
}

.contact-section-minimal::before {
    content: '';
    position: absolute;
    top: 20%;
    right: -10%;
    width: 40%;
    height: 40%;
    background: radial-gradient(circle, var(--primary-glow), transparent 70%);
    filter: blur(100px);
    z-index: 0;
    pointer-events: none;
}

.contact-minimal-container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 1.5rem;
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 6rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

@media (max-width: 1024px) {
    .contact-minimal-container {
        grid-template-columns: 1fr;
        gap: 4rem;
        text-align: center;
    }

    .contact-minimal-text {
        margin: 0 auto;
    }
}

.contact-minimal-text {
    max-width: 500px;
}

.badge-minimal {
    display: inline-block;
    color: var(--primary);
    font-size: 0.75rem;
    font-weight: 700;
    font-size: .75rem;
    color: var(--text-tertiary);
    text-transform: uppercase;
    letter-spacing: .1em;
    font-weight: 500;
    display: block;
    margin-bottom: .5rem
}

.featured-product-name {
    font-size: 1.25rem;
    color: var(--foreground);
    margin-bottom: 1rem;
    font-weight: 700;
    transition: color .3s
}

.featured-card:hover .featured-product-name {
    color: var(--primary)
}

.featured-price {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--foreground)
}

.featured-actions {
    text-align: center
}

.featured-cta-button {
    display: inline-flex;
    align-items: center;
    gap: .75rem;
    background: var(--foreground);
    color: var(--background);
    padding: 1rem 2.5rem;
    border-radius: 100px;
    font-weight: 700;
    font-size: 1rem;
    transition: all .3s cubic-bezier(.2, .8, .2, 1)
}

.featured-cta-button:hover {
    background: var(--primary);
    color: #000;
    transform: translateY(-2px);
}

@media(max-width:768px) {
    .featured-title {
        font-size: 2.25rem
    }

    .featured-grid {
        grid-template-columns: 1fr
    }
}

/* ===== CERTIFICATIONS ===== */
.certs-section {
    padding: 6rem 0;
    border-top: 1px solid var(--glass-border);
    background: linear-gradient(to bottom, transparent, var(--surface-highlight))
}

.dark .certs-section {
    background: linear-gradient(to bottom, transparent, rgba(0, 0, 0, .4))
}

.certs-container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 1.5rem
}

.certs-title {
    font-size: 1rem;
    margin-bottom: 4rem;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--text-tertiary);
    text-align: center;
    letter-spacing: .3em
}

.certs-logo-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    align-items: center
}

.cert-logo {
    width: 140px;
    height: 140px;
    background: var(--surface);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    font-size: .875rem;
    font-weight: 700;
    color: var(--text-secondary);
    border: 1px solid var(--glass-border);
    transition: all .4s cubic-bezier(.2, .8, .2, 1);
    padding: 1rem;
    line-height: 1.3;
    position: relative;
    overflow: hidden
}

.cert-logo::before {
    content: '';
    position: absolute;
    inset: 4px;
    border-radius: 50%;
    border: 1px dashed var(--glass-border);
    transition: all .4s ease
}

.cert-logo:hover {
    transform: translateY(-5px);
    /* border-color: var(--primary); */
    color: var(--primary);
    background: #000
}

@media(max-width:768px) {
    .cert-logo {
        width: 110px;
        height: 110px;
        font-size: .75rem
    }
}

/* ===== CONTACT FORM MINIMAL ===== */
.contact-section-minimal {
    padding: var(--section-padding) 0;
    position: relative;
    background: var(--background);
    border-top: 1px solid var(--glass-border);
}

.contact-minimal-container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 1.5rem;
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 6rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

@media (max-width: 1024px) {
    .contact-minimal-container {
        grid-template-columns: 1fr;
        gap: 4rem;
        text-align: center;
    }

    .contact-minimal-text {
        margin: 0 auto;
    }
}

.contact-minimal-text {
    max-width: 500px;
}

.badge-minimal {
    display: inline-block;
    color: var(--primary);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: 2rem;
}

.title-minimal {
    font-size: 3.5rem;
    line-height: 1.1;
    font-weight: 800;
    margin-bottom: 1.5rem;
    color: var(--foreground);
    letter-spacing: -0.03em;
}

.desc-minimal {
    font-size: 1.15rem;
    line-height: 1.7;
    color: var(--text-secondary);
}

.contact-form-minimal {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
    background: var(--surface);
    padding: 3.5rem;
    border-radius: 2rem;
    border: 1px solid var(--glass-border);
    position: relative;
    transition: border-color 0.3s;
}

.contact-form-minimal:hover {
    /* border-color: var(--primary); */
}

@media (max-width: 768px) {
    .contact-form-minimal {
        padding: 2.5rem 1.5rem;
    }
}

.form-row-minimal {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

@media (max-width: 768px) {
    .form-row-minimal {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

.form-group-minimal {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    flex: 1;
}

.form-group-minimal label {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--text-tertiary);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.form-input-minimal,
.form-textarea-minimal {
    width: 100%;
    padding: 1rem 0;
    background: transparent;
    border: none;
    border-bottom: 2px solid var(--glass-border);
    color: var(--foreground);
    font-family: inherit;
    font-size: 1.125rem;
    transition: all 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
    outline: none;
}

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

.form-input-minimal::placeholder,
.form-textarea-minimal::placeholder {
    color: var(--text-tertiary);
    opacity: 0.4;
}

/* Custom Dropdown Minimal */
.custom-dropdown {
    position: relative;
    width: 100%;
}

.dropdown-selected {
    width: 100%;
    padding: 1rem 0;
    border-bottom: 2px solid var(--glass-border);
    color: var(--foreground);
    font-family: 'Outfit', sans-serif;
    font-weight: 500;
    font-size: 1.125rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.dropdown-placeholder {
    color: var(--text-tertiary);
    opacity: 0.4;
}

.dropdown-selected.has-value .dropdown-placeholder {
    color: var(--foreground);
    opacity: 1;
}

.dropdown-selected:hover {
    border-bottom-color: var(--primary);
}

.custom-dropdown.open .dropdown-selected {
    border-bottom-color: var(--primary);
    transform: translateY(-2px);
}

.custom-dropdown.open .select-caret {
    transform: rotate(180deg);
    color: var(--primary);
}

.select-caret {
    color: var(--text-secondary);
    transition: transform 0.3s, color 0.3s;
}

.dropdown-options {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: var(--surface);
    border: 1px solid var(--glass-border);
    border-radius: 0 0 1rem 1rem;
    margin-top: 4px;
    z-index: 1100;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
    overflow: hidden;
}

.custom-dropdown.open .dropdown-options {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dark .dropdown-options {
    background: #111;
}


.dropdown-option {
    padding: 1rem 1.25rem;
    color: var(--text-secondary);
    cursor: pointer;
    transition: all 0.2s;
    font-size: 0.95rem;
    font-family: 'Outfit', sans-serif;
    font-weight: 500;
}

.dropdown-option:not(:last-child) {
    border-bottom: 1px dashed var(--glass-border);
}

.dropdown-option:hover {
    background: var(--surface-highlight);
    color: var(--primary);
}

.form-textarea-minimal {
    min-height: 120px;
    resize: vertical;
}

.form-footer-minimal {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 1rem;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.checkbox-minimal {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.85rem;
    color: var(--text-secondary);
    cursor: pointer;
}

.checkbox-minimal input {
    display: none;
}

.checkbox-box {
    width: 18px;
    height: 18px;
    border: 1px solid var(--glass-border);
    border-radius: 4px;
    position: relative;
    transition: all 0.2s;
}

.checkbox-minimal input:checked+.checkbox-box {
    background: var(--primary);
    /* border-color: var(--primary); */
}

.checkbox-minimal input:checked+.checkbox-box::after {
    content: '';
    position: absolute;
    left: 6px;
    top: 3px;
    width: 4px;
    height: 8px;
    border: solid #000;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.btn-minimal-submit {
    background: var(--primary);
    color: #000;
    padding: 1rem 2.5rem;
    border-radius: 100px;
    font-weight: 700;
    font-size: 1rem;
    border: none;
    cursor: pointer;
    transition: all .3s cubic-bezier(.2, .8, .2, 1);
    display: inline-flex;
    align-items: center;
    gap: .5rem;
}

.btn-minimal-submit:hover {
    transform: translateY(-4px);
    background: var(--foreground);
    color: var(--background);
}

@media (max-width: 900px) {
    .contact-minimal-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .form-row-minimal {
        flex-direction: column;
        gap: 1.5rem;
    }

    .title-minimal {
        font-size: 2.5rem;
    }
}

/* ===== MINIMAL FOOTER ===== */
.footer-wrapper {
    background: var(--background);
    margin-top: auto;
    position: relative;
    border-top: 1px solid var(--glass-border);
}

.footer {
    position: relative;
    padding: 6rem 0 2rem;
    margin: 0 auto;
    max-width: var(--container-width);
    width: 100%;
}

.footer-container {
    position: relative;
    z-index: 1;
    padding: 0 1.5rem;
    display: grid;
    grid-template-columns: 3fr 1.5fr 2fr 2fr;
    gap: 4rem
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 1.5rem
}

.footer-logo-text {
    font-weight: 700;
    font-size: 1.5rem;
    letter-spacing: -.04em;
    color: var(--foreground);
    text-transform: uppercase;
}

.footer-desc {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.8;
    max-width: 320px;
    font-weight: 400;
}

.footer-socials {
    display: flex;
    gap: 1.5rem;
    margin-top: 1rem
}

.footer-social-link {
    color: var(--text-tertiary);
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-social-link svg {
    width: 20px;
    height: 20px;
}

.footer-social-link:hover {
    color: var(--foreground);
    transform: translateY(-2px);
}

.footer-col {
    display: flex;
    flex-direction: column;
    gap: 1.5rem
}

.footer-title {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.15em;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: flex-start
}

.footer-link {
    color: var(--foreground);
    font-size: 0.95rem;
    font-weight: 500;
    transition: all 0.3s ease;
    opacity: 0.7;
}

.footer-link:hover {
    opacity: 1;
    color: var(--primary);
    transform: translateX(5px);
}

.footer-contact-item {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.5;
}

.footer-contact-label {
    color: var(--text-tertiary);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 500;
}

.footer-contact-value {
    color: var(--foreground);
    font-weight: 500;
    transition: color 0.3s;
}

a.footer-contact-value:hover {
    color: var(--primary);
}

.footer-newsletter {
    margin-top: 0.25rem;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    width: 100%
}

.footer-nl-group {
    position: relative;
    display: flex;
    align-items: center;
    border-bottom: 1px solid var(--glass-border);
    transition: border-color 0.3s;
}

.footer-nl-group:focus-within {
    border-color: var(--foreground);
}

.footer-nl-input {
    width: 100%;
    padding: 0.75rem 0;
    background: transparent;
    border: none;
    color: var(--foreground);
    font-size: 0.95rem;
    outline: none;
}

.footer-nl-input::placeholder {
    color: var(--text-tertiary);
}

.footer-nl-btn {
    position: absolute;
    right: 0;
    background: transparent;
    color: var(--foreground);
    border: none;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.5rem;
}

.footer-nl-btn:hover {
    color: var(--primary);
    transform: translateX(4px);
}

.footer-bottom {
    position: relative;
    z-index: 1;
    max-width: var(--container-width);
    margin: 5rem auto 0;
    padding: 2rem 1.5rem 0;
    border-top: 1px solid var(--glass-border);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1.5rem
}

.footer-copyright {
    color: var(--text-tertiary);
    font-size: 0.85rem;
    font-weight: 400;
}

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

.footer-legal-link {
    color: var(--text-tertiary);
    font-size: 0.85rem;
    font-weight: 400;
    transition: color 0.2s
}

.footer-legal-link:hover {
    color: var(--foreground)
}

@media(max-width:1024px) {
    .footer-container {
        grid-template-columns: 1fr 1fr;
        gap: 4rem
    }
}

@media(max-width:768px) {
    .footer {
        padding: 4rem 0 2rem
    }

    .footer-container {
        grid-template-columns: 1fr;
        gap: 3rem
    }

    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
        gap: 1.5rem;
        margin-top: 3rem;
        padding-top: 2rem
    }
}

/* ===== ESHOP ===== */
.eshop-section {
    padding: calc(var(--header-height) + 4rem) 0 6rem;
    background: var(--background);
    min-height: 100vh
}

.eshop-container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 1.5rem
}

.eshop-catalog-layout {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 2rem;
    align-items: start
}

.eshop-sidebar {
    position: sticky;
    top: calc(var(--header-height) + 1.5rem);
    display: flex;
    flex-direction: column;
    gap: 1.5rem
}

.eshop-filter-group {
    background: var(--surface);
    border: 1px solid var(--glass-border);
    border-radius: 1.25rem;
    padding: 1.5rem;
}

.eshop-filter-title {
    font-size: .8rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: .1em;
    margin-bottom: 1.25rem;
    color: var(--text-tertiary);
    border-bottom: 1px solid var(--glass-border);
    padding-bottom: .5rem
}

.eshop-category-list {
    display: flex;
    flex-direction: column;
    gap: .25rem
}

.eshop-category-btn {
    padding: .7rem 1rem;
    background: none;
    border: 1px solid transparent;
    color: var(--text-secondary);
    font-size: .95rem;
    font-family: 'Outfit', sans-serif;
    font-weight: 500;
    cursor: pointer;
    text-align: left;
    border-radius: .85rem;
    transition: all .3s;
    display: flex;
    justify-content: space-between;
    align-items: center
}

.eshop-category-btn:hover:not(.eshop-category-active) {
    background: var(--surface-highlight);
    color: var(--foreground);
    transform: translateX(4px)
}

.eshop-category-active {
    background: var(--primary-glow);
    /* border-color: var(--primary); */
    color: var(--primary);
    font-weight: 500;
}

.eshop-count {
    font-size: .8rem;
    opacity: .5;
    font-weight: 600
}

.eshop-price-inputs {
    display: flex;
    gap: .5rem;
    margin-bottom: 1.25rem
}

.eshop-price-input {
    width: 100%;
    padding: .75rem 1rem;
    background: var(--surface-highlight);
    border: 1px solid var(--glass-border);
    border-radius: .85rem;
    font-size: .85rem;
    color: var(--foreground);
    outline: none;
    transition: all .3s
}

.eshop-price-input:focus {
    /* border-color: var(--primary); */
    background: var(--surface);
}

.eshop-radio-label {
    display: flex;
    align-items: center;
    gap: .75rem;
    font-size: .9rem;
    color: var(--text-secondary);
    cursor: pointer;
    padding: .5rem .75rem;
    border-radius: .75rem;
    transition: all .2s
}

.eshop-radio-label:hover {
    background: var(--surface-highlight);
    color: var(--foreground)
}

.eshop-radio-label input {
    appearance: none;
    -webkit-appearance: none;
    width: 1.25rem;
    height: 1.25rem;
    border: 2px solid var(--glass-border);
    border-radius: 50%;
    background: var(--surface);
    cursor: pointer;
    position: relative;
    transition: all .3s;
    margin: 0
}

.eshop-radio-label input:checked {
    border-color: var(--primary)
}

.eshop-radio-label input::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    width: .6rem;
    height: .6rem;
    border-radius: 50%;
    background: var(--primary);
    transition: transform .3s cubic-bezier(.175, .885, .32, 1.275)
}

.eshop-radio-label input:checked::after {
    transform: translate(-50%, -50%) scale(1)
}

.eshop-main-content {
    display: flex;
    flex-direction: column;
    gap: 1.5rem
}

.eshop-top-bar {
    background: var(--surface);
    padding: 1rem 1.5rem;
    border: 1px solid var(--glass-border);
    border-radius: 1.25rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: .5rem
}

.eshop-search-container {
    position: relative;
    flex: 1;
    max-width: 400px
}

.eshop-search-icon {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--primary);
    opacity: .6;
    pointer-events: none
}

.eshop-search-input {
    width: 100%;
    background: var(--surface-highlight);
    border: 1px solid var(--glass-border);
    border-radius: 1rem;
    padding: .8rem 1rem .8rem 2.8rem;
    color: var(--foreground);
    font-size: .95rem;
    transition: all .3s
}

.eshop-search-input:focus {
    outline: none;
    /* border-color: var(--primary); */
    background: var(--surface);
}

.sort-container {
    position: relative;
    min-width: 200px;
    z-index: 100
}

.sort-trigger {
    width: 100%;
    padding: .75rem 1.25rem;
    border: 1px solid var(--glass-border);
    border-radius: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-size: .9rem;
    font-weight: 500;
    color: var(--foreground);
    transition: all .3s
}

.sort-trigger:hover {
    /* border-color: var(--primary); */
    background: var(--surface)
}

.sort-arrow {
    color: var(--primary);
    transition: transform .3s
}

.sort-menu {
    position: absolute;
    top: calc(100% + .5rem);
    right: 0;
    width: 100%;
    background: var(--glass-strong);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 1rem;
    padding: .5rem;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all .3s cubic-bezier(.175, .885, .32, 1.275)
}

.sort-menu.sort-menu-open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0)
}

.sort-option {
    padding: .75rem 1rem;
    border-radius: .75rem;
    font-size: .85rem;
    font-weight: 500;
    color: var(--text-secondary);
    cursor: pointer;
    transition: all .2s
}

.sort-option:hover {
    background: var(--surface-highlight);
    color: var(--foreground)
}

.sort-option-active {
    background: var(--primary-glow);
    color: var(--primary)
}

.eshop-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.5rem;
    perspective: 1000px
}

.eshop-card {
    background: var(--surface);
    border: 1px solid var(--glass-border);
    border-radius: 1.5rem;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: all .4s cubic-bezier(.4, 0, .2, 1);
    cursor: pointer;
    animation: cardAppear .6s cubic-bezier(.2, .8, .2, 1) backwards;
    animation-delay: calc(var(--i) * .05s);
}

@keyframes cardAppear {
    from {
        opacity: 0;
        transform: translateY(30px) scale(.95)
    }

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

.eshop-card:hover {
    transform: translateY(-8px);
    /* border-color: var(--primary); */
}

.eshop-image-box {
    position: relative;
    aspect-ratio: 4/3;
    background: var(--surface-highlight);
    overflow: hidden
}

.eshop-card-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .5s ease
}

.eshop-card:hover .eshop-card-image {
    transform: scale(1.05)
}

.eshop-card-tag {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: var(--primary);
    color: #000;
    padding: .4rem .8rem;
    border-radius: .75rem;
    font-size: .7rem;
    font-weight: 800;
    text-transform: uppercase;
}

.eshop-card-body {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: .75rem
}

.eshop-price-row {
    display: flex;
    align-items: baseline;
    gap: .75rem
}

.eshop-card-price {
    font-size: 1.5rem;
    font-weight: 300;
    color: var(--foreground);
    font-family: 'Outfit', sans-serif
}

.eshop-old-price {
    font-size: .9rem;
    color: var(--text-tertiary);
    text-decoration: line-through
}

.eshop-card-title {
    font-size: 1.1rem;
    font-weight: 400;
    color: var(--foreground);
    line-height: 1.4;
    height: 2.8em;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    line-clamp: 2
}

.eshop-rating-row {
    display: flex;
    align-items: center;
    gap: .4rem;
    font-size: .8rem;
    color: var(--text-tertiary)
}

.eshop-star {
    color: var(--primary)
}

.eshop-add-btn {
    margin-top: .5rem;
    padding: .85rem;
    background: var(--foreground);
    color: var(--background);
    border: none;
    border-radius: 1rem;
    font-weight: 500;
    font-size: .9rem;
    cursor: pointer;
    transition: all .3s
}

.eshop-card:hover .eshop-add-btn {
    background: var(--primary);
    color: #000
}

.eshop-add-btn:hover {
    transform: scale(1.02)
}

.eshop-cart-fab {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 3.5rem;
    height: 3.5rem;
    background: var(--foreground);
    color: var(--primary);
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 1000;
    transition: all .3s;
    border: 1px solid var(--glass-border)
}

.eshop-cart-fab:hover {
    transform: translateY(-4px);
    background: var(--primary);
    color: #000;
    border-color: var(--primary)
}

.eshop-empty {
    text-align: center;
    padding: 8rem 0;
    background: var(--surface);
    border-radius: 2rem;
    border: 1px dashed var(--glass-border)
}

.eshop-empty h3 {
    margin-bottom: 1.5rem
}

.eshop-empty button {
    padding: .75rem 2rem;
    background: var(--primary);
    border: none;
    border-radius: 1rem;
    font-weight: 700;
    cursor: pointer
}

@media(max-width:1024px) {
    .eshop-catalog-layout {
        grid-template-columns: 1fr
    }

    .eshop-sidebar {
        display: none
    }
}

@media(max-width:768px) {
    .eshop-cart-fab {
        bottom: 1.5rem;
        right: 1.5rem
    }
}

/* ===== PRODUCT PAGE ===== */
.product-page {
    padding: calc(var(--header-height) + 2rem) 0 6rem;
    background: var(--background);
    min-height: 100vh
}

.product-container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 1.5rem
}

.product-breadcrumb {
    font-size: .875rem;
    color: var(--text-tertiary);
    margin-bottom: 2rem
}

.product-breadcrumb a {
    color: var(--text-secondary);
    transition: color .2s
}

.product-breadcrumb a:hover {
    color: var(--primary)
}

.product-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-bottom: 6rem
}

.product-image-section {
    position: relative;
    border-radius: 2rem;
    min-width: 0;
    /* Prevents Swiper from expanding grid column infinitely */
}

.productMainSwiper {
    width: 100%;
    max-width: 100%;
    aspect-ratio: 4/3;
    border-radius: 1.5rem;
    overflow: hidden;
    background: var(--surface-highlight);
    border: 1px solid var(--glass-border);
    margin-bottom: 1rem;
}


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

.productThumbsSwiper {
    padding: 4px 0 1rem;
}

.productThumbsSwiper .swiper-slide {
    width: auto;
}

.product-thumb-item {
    width: 100px;
    height: 75px;
    border-radius: 1rem;
    overflow: hidden;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    background: var(--surface-highlight);
}

.product-thumb-item:hover {
    border-color: var(--primary-glow);
}

.product-thumb-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.swiper-slide-thumb-active .product-thumb-item {
    /* border-color: var(--primary); */
}

/* Custom Swiper Buttons for Product Slider */
.productMainSwiper .swiper-button-next,
.productMainSwiper .swiper-button-prev {
    color: var(--foreground);
    background: var(--glass-strong);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid var(--glass-border);
    transition: all 0.3s ease;
    opacity: 0;
    transform: scale(0.8);
}

.productMainSwiper:hover .swiper-button-next,
.productMainSwiper:hover .swiper-button-prev {
    opacity: 1;
    transform: scale(1);
}

.productMainSwiper .swiper-button-next::after,
.productMainSwiper .swiper-button-prev::after {
    font-size: 1.1rem;
    font-weight: 700;
}

.productMainSwiper .swiper-button-next:hover,
.productMainSwiper .swiper-button-prev:hover {
    background: var(--primary);
    color: #000;
    /* border-color: var(--primary); */
}


.product-info-section {
    display: flex;
    flex-direction: column;
    justify-content: center
}

.product-category {
    display: inline-block;
    color: var(--primary);
    font-size: .75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .1em;
    margin-bottom: 1rem
}

.product-title {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--foreground)
}

.product-price {
    font-size: 2rem;
    font-weight: 800;
    color: var(--foreground);
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    gap: 1rem
}

.product-badge-tag {
    background: var(--primary-glow);
    color: var(--primary);
    padding: .25rem .75rem;
    border-radius: 100px;
    font-size: .75rem;
    font-weight: 700
}

.product-description {
    color: var(--text-secondary);
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 2rem
}

.product-features-title {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: var(--foreground)
}

.product-features-list {
    list-style: none;
    margin-bottom: 2rem
}

.product-feature-item {
    display: flex;
    align-items: center;
    gap: .75rem;
    padding: .5rem 0;
    color: var(--text-secondary);
    font-size: 1rem
}

.product-feature-item svg {
    color: var(--primary);
    flex-shrink: 0
}

.product-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap
}

.product-add-to-cart-btn {
    display: inline-flex;
    align-items: center;
    gap: .75rem;
    background: var(--foreground);
    color: var(--background);
    padding: 1rem 2rem;
    border-radius: 100px;
    font-weight: 700;
    font-size: 1rem;
    border: none;
    cursor: pointer;
    transition: all .3s
}

.product-add-to-cart-btn:hover {
    background: var(--primary);
    color: #000;
    transform: translateY(-2px)
}

.product-contact-btn {
    background: transparent;
    color: var(--foreground);
    padding: 1rem 2rem;
    border-radius: 100px;
    font-weight: 500;
    font-size: 1rem;
    border: 1px solid var(--glass-border);
    cursor: pointer;
    transition: all .3s
}

.product-contact-btn:hover {
    /* border-color: var(--primary); */
    color: var(--primary)
}

.product-related-section {
    border-top: 1px solid var(--glass-border);
    padding-top: 4rem
}

.product-related-title {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: var(--foreground)
}

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

.product-related-card {
    background: var(--surface);
    border: 1px solid var(--glass-border);
    border-radius: 1.5rem;
    overflow: hidden;
    transition: all .3s
}

.product-related-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary)
}

.product-related-image {
    height: 200px;
    overflow: hidden
}

.product-related-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .5s
}

.product-related-card:hover .product-related-image img {
    transform: scale(1.05)
}

.product-related-info {
    padding: 1.5rem
}

.product-related-category {
    font-size: .7rem;
    color: var(--text-tertiary);
    text-transform: uppercase;
    letter-spacing: .1em;
    font-weight: 600
}

.product-related-name {
    font-size: 1.1rem;
    margin: .5rem 0;
    color: var(--foreground);
    font-weight: 500
}

.product-related-price {
    font-weight: 700;
    color: var(--foreground)
}

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

    .product-related-grid {
        grid-template-columns: 1fr
    }

    .product-title {
        font-size: 2rem
    }
}

/* ===== CART PAGE ===== */
.cart-page {
    padding: calc(var(--header-height) + 2rem) 0 6rem;
    background: var(--background);
    min-height: 100vh
}

.cart-container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 1.5rem
}

.cart-title {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: var(--foreground)
}

.cart-content {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 3rem
}

.cart-items {
    display: flex;
    flex-direction: column;
    gap: 1rem
}

.cart-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    background: var(--surface);
    border: 1px solid var(--glass-border);
    border-radius: 1.5rem;
    padding: 1.5rem;
    transition: all .3s
}

.cart-item:hover {
    border-color: var(--primary)
}

.cart-item-image {
    width: 100px;
    height: 100px;
    border-radius: 1rem;
    overflow: hidden;
    flex-shrink: 0;
    position: relative
}

.cart-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover
}

.cart-item-info {
    flex: 1
}

.cart-item-category {
    font-size: .7rem;
    color: var(--text-tertiary);
    text-transform: uppercase;
    letter-spacing: .1em;
    font-weight: 600
}

.cart-item-name {
    font-weight: 500;
    color: var(--foreground);
    margin: .25rem 0
}

.cart-item-price {
    color: var(--primary);
    font-weight: 700
}

.cart-quantity-controls {
    display: flex;
    align-items: center;
    gap: .75rem
}

.cart-qty-btn {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid var(--glass-border);
    background: var(--surface-highlight);
    color: var(--foreground);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    font-weight: 700;
    transition: all .2s
}

.cart-qty-btn:hover {
    /* border-color: var(--primary); */
    color: var(--primary)
}

.cart-quantity {
    font-weight: 700;
    font-size: 1.1rem;
    min-width: 20px;
    text-align: center
}

.cart-remove-btn {
    background: transparent;
    border: none;
    color: var(--text-tertiary);
    cursor: pointer;
    padding: .5rem;
    transition: color .2s;
    display: flex
}

.cart-remove-btn:hover {
    color: red
}

.cart-sidebar {
    position: sticky;
    top: calc(var(--header-height) + 2rem)
}

.cart-summary {
    background: var(--surface);
    border: 1px solid var(--glass-border);
    border-radius: 1.5rem;
    padding: 2rem
}

.cart-summary-title {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: var(--foreground)
}

.cart-checkout-form {
    display: flex;
    flex-direction: column;
    gap: 1rem
}

.cart-form-group {
    display: flex;
    flex-direction: column
}

.cart-form-group label {
    font-size: .8rem;
    font-weight: 500;
    margin-bottom: .5rem;
    color: var(--text-tertiary);
    text-transform: uppercase;
    letter-spacing: .05em
}

.cart-input {
    background: var(--surface-highlight);
    border: 1px solid var(--glass-border);
    padding: .85rem 1rem;
    color: var(--foreground);
    font-family: inherit;
    font-size: .95rem;
    border-radius: .75rem;
    transition: all .2s;
    width: 100%
}

.cart-input:focus {
    /* border-color: var(--primary); */
    outline: none;
}

.cart-total-row {
    display: flex;
    justify-content: space-between;
    padding: 1rem 0;
    border-top: 1px solid var(--glass-border);
    font-size: 1.25rem;
    font-weight: 700
}

.cart-checkout-btn {
    background: var(--foreground);
    color: var(--background);
    padding: 1rem;
    border: none;
    border-radius: 100px;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: all .3s
}

.cart-checkout-btn:hover {
    background: var(--primary);
    color: #000;
    transform: translateY(-2px)
}

.cart-empty-state {
    text-align: center;
    padding: 6rem 0
}

.cart-empty-icon {
    color: var(--text-tertiary);
    margin-bottom: 2rem
}

.cart-back-btn {
    display: inline-block;
    background: var(--foreground);
    color: var(--background);
    padding: 1rem 2rem;
    border-radius: 100px;
    font-weight: 700;
    transition: all .3s;
    margin-top: 1rem
}

.cart-back-btn:hover {
    background: var(--primary);
    color: #000
}

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

    .cart-item {
        flex-wrap: wrap
    }
}

/* ===== PORTFOLIO PAGE ===== */
.portfolio-page {
    padding: calc(var(--header-height) + 4rem) 0 6rem;
    background: var(--background)
}

.portfolio-filters {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 4rem;
    flex-wrap: wrap
}

.portfolio-filter-btn {
    padding: .75rem 1.5rem;
    border-radius: 100px;
    border: 1px solid var(--glass-border);
    background: var(--surface);
    color: var(--text-secondary);
    cursor: pointer;
    font-weight: 500;
    transition: all .3s
}

.portfolio-filter-btn:hover {
    /* border-color: var(--primary); */
    color: var(--primary)
}

.portfolio-filter-btn.active {
    background: var(--primary);
    color: #000;
    border-color: var(--primary)
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(400px, 1fr));
    gap: 2.5rem
}

.portfolio-item-card {
    background: var(--surface);
    border-radius: 2rem;
    overflow: hidden;
    border: 1px solid var(--glass-border);
    transition: all .4s;
}

.portfolio-item-card:hover {
    transform: translateY(-10px);
    /* border-color: var(--primary); */
}

.portfolio-item-image {
    position: relative;
    height: 300px;
    overflow: hidden
}

.portfolio-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .6s
}

.portfolio-item-card:hover .portfolio-item-image img {
    transform: scale(1.1)
}

.portfolio-item-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, .4);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity .3s
}

.portfolio-item-card:hover .portfolio-item-overlay {
    opacity: 1
}

.portfolio-item-overlay span {
    background: #fff;
    color: #000;
    padding: .75rem 1.5rem;
    border-radius: 100px;
    font-weight: 700
}

.portfolio-item-info {
    padding: 2rem
}

.portfolio-item-cat {
    color: var(--primary);
    font-size: .75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .1em;
    margin-bottom: .5rem;
    display: block
}

.portfolio-item-title {
    font-size: 1.5rem;
    margin-bottom: .5rem;
    color: var(--foreground)
}

.portfolio-item-loc {
    font-size: .9rem;
    color: var(--text-tertiary)
}

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

/* ===== BLOG PAGE ===== */
.blog-page {
    padding: calc(var(--header-height) + 2rem) 0 6rem
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 3rem
}

.blog-card {
    background: var(--surface);
    border-radius: 1.5rem;
    border: 1px solid var(--glass-border);
    overflow: hidden;
    transition: all .3s;
}

.blog-card:hover {
    transform: translateY(-8px);
    /* border-color: var(--primary); */
}

.blog-card-image {
    height: 240px;
    overflow: hidden
}

.blog-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover
}

.blog-card-content {
    padding: 2rem
}

.blog-card-meta {
    font-size: .8rem;
    color: var(--text-tertiary);
    margin-bottom: 1rem
}

.blog-card-title {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    line-height: 1.3
}

.blog-card-excerpt {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    font-size: .95rem
}

.blog-card-link {
    color: var(--primary);
    font-weight: 700
}

/* ===== ABOUT PAGE ===== */
.about-hero-section {
    padding: calc(var(--header-height) + 8rem) 0 6rem
}

.about-page-title {
    font-size: 4rem;
    text-align: center;
    margin-bottom: 4rem
}

.about-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 4rem;
    align-items: center
}

.about-grid.invert {
    grid-template-columns: 1fr 1.2fr
}

.about-text-box h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem
}

.about-text-box p {
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--text-secondary)
}

.about-image-box {
    border-radius: 2rem;
    overflow: hidden;
}

.production-section {
    padding: 6rem 0;
    background: var(--surface-highlight)
}

.faq-section {
    padding: 8rem 0
}

.faq-accordion {
    max-width: 800px;
    margin: 0 auto
}

.faq-item {
    border-bottom: 1px solid var(--glass-border)
}

.faq-question {
    padding: 1.5rem 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-size: 1.25rem;
    font-weight: 600
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: all .3s ease;
    color: var(--text-secondary)
}

.faq-item.open {
    margin-bottom: 1rem;
}

.faq-item.open .faq-answer {
    max-height: 400px;
    padding-bottom: 1.5rem
}

.faq-item.open svg {
    transform: rotate(180deg)
}

@media(max-width:1024px) {

    .about-grid,
    .about-grid.invert {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 3rem
    }

    .about-image-box {
        order: -1;
    }
}

@media(max-width:768px) {
    .about-hero-section {
        padding: calc(var(--header-height) + 2rem) 0 3rem
    }

    .about-page-title {
        font-size: 2.5rem;
        margin-bottom: 2.5rem
    }

    .about-text-box h2 {
        font-size: 2rem;
        margin-bottom: 1.5rem
    }

    .about-text-box p {
        font-size: 1.05rem
    }

    .production-section,
    .faq-section {
        padding: 4rem 0;
    }
}

/* ===== PRODUCTION & DELIVERY ===== */
.production-hero {
    padding: calc(var(--header-height) + 2rem) 0 4rem;
    text-align: center
}

.production-steps {
    display: flex;
    flex-direction: column;
    gap: 4rem;
    margin-top: 2rem;
    margin-bottom: 6rem
}

.production-step-item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    background: var(--surface);
    border: 1px solid var(--glass-border);
    border-radius: 2rem;
    overflow: hidden;
    align-items: stretch;
    transition: all .3s;
    height: 450px;
}

.production-step-item:hover {
    border-color: var(--primary)
}

.production-step-text {
    padding: 4rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.step-num {
    font-size: 4rem;
    font-weight: 700;
    opacity: .1;
    display: block;
    margin-bottom: -1rem;
    color: var(--primary)
}

.production-step-media {
    height: 100%;
    background: #000;
    overflow: hidden;
}

.production-step-media video {
    width: 100%;
    height: 100%;
    object-fit: cover
}

.delivery-section {
    padding: calc(var(--header-height) + 4rem) 0 6rem
}

.delivery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem
}

.delivery-card {
    background: var(--surface);
    border: 1px solid var(--glass-border);
    border-radius: 1.5rem;
    padding: 2.5rem;
    transition: all .3s
}

.delivery-card:hover {
    /* border-color: var(--primary); */
    transform: translateY(-5px)
}

.delivery-card h4 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: var(--primary)
}

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

@media(max-width:1024px) {
    .production-step-item {
        grid-template-columns: 1fr;
        height: auto;
    }

    .production-step-text {
        padding: 2rem;
        order: 1 !important
    }

    .production-step-media {
        height: 300px;
        order: 2 !important
    }
}

/* ===== BLOG POST DETAIL ===== */
.blog-post-page {
    padding-top: calc(var(--header-height) + 2rem);
    padding-bottom: 6rem;
}

.blog-post-header {
    height: 50vh;
    min-height: 400px;
    display: flex;
    align-items: center;
    background-size: cover;
    background-position: center;
    color: #fff;
    margin-bottom: 4rem;
    position: relative;
    border-radius: 2rem;
    margin-left: 1.5rem;
    margin-right: 1.5rem;
    overflow: hidden;
}

.blog-post-header .container {
    position: relative;
    z-index: 2;
    text-align: center;
}

.blog-post-title {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    font-weight: 500;
    color: #fff;
}

.blog-post-meta {
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 1rem;
    opacity: 0.9;
}

.blog-post-author {
    font-size: 1.1rem;
    opacity: 0.8;
}

.blog-post-body {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.blog-post-excerpt {
    font-size: 1.5rem;
    font-weight: 500;
    line-height: 1.5;
    margin-bottom: 3rem;
    color: var(--foreground);
    border-left: 4px solid var(--primary);
    padding-left: 2rem;
}

.legal-content,
.blog-post-content-full {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--text-secondary);
}

.legal-content p,
.blog-post-content-full p {
    margin-bottom: 1.5rem;
}

.legal-content h1,
.legal-content h2,
.blog-post-content-full h2 {
    font-size: 2rem;
    color: var(--foreground);
    margin: 3rem 0 1.5rem;
    font-weight: 500;
}

.legal-content h1 {
    font-size: 2.5rem;
    margin-top: 0;
}

.legal-content h3,
.blog-post-content-full h3 {
    font-size: 1.5rem;
    color: var(--foreground);
    margin: 2rem 0 1rem;
    font-weight: 500;
}

.legal-content ul,
.blog-post-content-full ul,
.legal-content ol,
.blog-post-content-full ol {
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
}

.legal-content li,
.blog-post-content-full li {
    margin-bottom: 0.75rem;
}

.legal-content a,
.blog-post-content-full a {
    color: var(--primary);
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 4px;
    transition: all 0.2s;
}

.legal-content a:hover,
.blog-post-content-full a:hover {
    color: var(--foreground);
    background: var(--primary);
    text-decoration-color: transparent;
}

.legal-content img,
.blog-post-content-full img {
    max-width: 100%;
    height: auto;
    border-radius: 1rem;
    margin: 2rem 0;
}

.legal-content blockquote,
.blog-post-content-full blockquote {
    border-left: 4px solid var(--primary);
    padding: 1.5rem 2rem;
    background: var(--surface);
    margin: 2rem 0;
    font-style: italic;
    border-radius: 0 1rem 1rem 0;
}

.blog-post-footer {
    margin-top: 4rem;
    padding-top: 2rem;
    border-top: 1px solid var(--glass-border);
}

.back-link {
    color: var(--primary);
    font-weight: 700;
    transition: all 0.3s;
}

.back-link:hover {
    padding-left: 0.5rem;
}

@media(max-width: 768px) {
    .blog-post-title {
        font-size: 2.5rem;
    }

    .blog-post-header {
        margin: 0 0 3rem;
        border-radius: 0;
        height: 40vh;
    }
}

/* ===== CONTACT FORM (Standalone / Grid) ===== */
.contact-section {
    padding: 6rem 0;
}

.contact-container {
    max-width: 900px;
    margin: 0 auto;
    background: var(--surface);
    border: 1px solid var(--glass-border);
    border-radius: 2.5rem;
    padding: 4rem;
    position: relative;
    overflow: hidden;
}

.dark .contact-container {
    background: var(--surface);
}

.contact-container::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, var(--primary-glow), transparent 70%);
    z-index: 0;
    pointer-events: none;
    opacity: 0.5;
}

.contact-form-side {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

@media (max-width: 768px) {
    .contact-container {
        padding: 2.5rem 1.5rem;
        border-radius: 1.5rem;
    }

    .contact-row {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

.contact-input-group {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.contact-input-group label {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--text-tertiary);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    padding-left: 0.25rem;
}

.contact-input,
.contact-textarea {
    width: 100%;
    background: var(--background);
    border: 1px solid var(--glass-border);
    border-radius: 1rem;
    padding: 1.125rem 1.5rem;
    color: var(--foreground);
    font-family: inherit;
    font-size: 1rem;
    transition: all 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
    outline: none;
}

.dark .contact-input,
.dark .contact-textarea {
    background: var(--surface-highlight);
}

.contact-input:hover,
.contact-textarea:hover {
    border-color: var(--text-tertiary);
}

.contact-input:focus,
.contact-textarea:focus {
    /* border-color: var(--primary); */
    background: var(--surface);
    transform: translateY(-2px);
}

.contact-textarea {
    min-height: 180px;
    resize: vertical;
    line-height: 1.6;
}

.contact-checkbox-group {
    margin-top: 0.5rem;
}

.contact-checkbox-row {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    cursor: pointer;
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.4;
    user-select: none;
}

.contact-checkbox-row input[type="checkbox"] {
    appearance: none;
    -webkit-appearance: none;
    width: 1.35rem;
    height: 1.35rem;
    border: 1px solid var(--glass-border);
    border-radius: 6px;
    background: var(--background);
    position: relative;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
    margin-top: 2px;
    flex-shrink: 0;
}

.contact-checkbox-row input[type="checkbox"]:checked {
    background: var(--primary);
    /* border-color: var(--primary); */
}

.contact-checkbox-row input[type="checkbox"]:checked::after {
    content: '';
    position: absolute;
    left: 7px;
    top: 3px;
    width: 5px;
    height: 10px;
    border: solid white;
    border-width: 0 2.5px 2.5px 0;
    transform: rotate(45deg);
}

.contact-checkbox-row:hover input[type="checkbox"] {
    /* border-color: var(--primary); */
}

.contact-submit-button {
    background: var(--foreground);
    color: var(--background);
    border: none;
    border-radius: 100px;
    padding: 1.25rem 3rem;
    font-size: 1rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    cursor: pointer;
    transition: all 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
    margin-top: 1rem;
    align-self: flex-start;
}

.contact-submit-button:hover {
    background: var(--primary);
    color: #000;
    transform: translateY(-5px) scale(1.02);
}

.contact-submit-button:active {
    transform: translateY(-2px);
}

.contact-submit-button:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
}

@media (max-width: 480px) {
    .contact-submit-button {
        width: 100%;
        padding: 1.25rem;
    }
}

/* LIGHTBOX */
.custom-lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 99999;
    background: rgba(0, 0, 0, 0.95);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.custom-lightbox.active {
    opacity: 1;
    pointer-events: auto;
}

.lightbox-overlay {
    position: absolute;
    inset: 0;
    cursor: zoom-out;
}

.lightbox-content {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 100000;
}

.lightbox-image-container {
    max-width: 90vw;
    max-height: 85vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-content img {
    max-width: 100%;
    max-height: 85vh;
    border-radius: 4px;
    object-fit: contain;
    opacity: 0;
    transform: scale(0.95);
    transition: all 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.lightbox-content img.active {
    opacity: 1;
    transform: scale(1);
}

.lightbox-close {
    position: absolute;
    top: 30px;
    right: 30px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 2rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 100200;
    /* Higher than nav */
}

.lightbox-close:hover {
    background: var(--primary);
    color: #000;
    transform: rotate(90deg);
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    transform: translateY(-50%);
    padding: 0 30px;
    display: flex;
    justify-content: space-between;
    pointer-events: none;
    z-index: 100100;
}

.lightbox-prev,
.lightbox-next {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    pointer-events: auto;
}

.lightbox-prev:hover,
.lightbox-next:hover {
    background: var(--primary);
    color: #000;
    transform: scale(1.1);
}

.lightbox-counter {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    color: rgba(255, 255, 255, 0.7);
    font-family: 'Outfit', sans-serif;
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    z-index: 100100;
}

@media (max-width: 768px) {
    .lightbox-nav {
        padding: 0 15px;
    }

    .lightbox-prev,
    .lightbox-next {
        width: 44px;
        height: 44px;
    }

    .lightbox-close {
        top: 15px;
        right: 15px;
        width: 40px;
        height: 40px;
    }
}




/* ===== REVIEWS SECTION ===== */
.reviews-section {
    padding: var(--section-padding);
    background: var(--background);
}

.reviews-grid {
    display: block;
    width: 100%;
    margin-top: 4rem;
    position: relative;
}

.reviewsSwiper {
    width: 100%;
    padding: 0 1rem 4rem !important;
    /* Force full width on mobile */
}

.swiper-slide {
    height: auto;
    display: flex;
}


.review-card-minimal {
    background: var(--surface);
    padding: 2.5rem;
    border-radius: 1.5rem;
    border: 1px solid var(--glass-border);
    /* transition: all 0.5s cubic-bezier(0.2, 0.8, 0.2, 1); */
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
    height: 100%;
    width: 100%;
    /* Ensure full width inside slide */
}

/* Swiper Pagination Styling */
.swiper-pagination-bullet {
    background: var(--text-tertiary);
    opacity: 0.3;
    transition: all 0.3s ease;
}

.swiper-pagination-bullet-active {
    background: var(--primary) !important;
    opacity: 1;
    width: 20px;
    border-radius: 4px;
}


.review-card-minimal::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-glow) 0%, transparent 40%);
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: 0;
    pointer-events: none;
}

.review-card-minimal:hover {
    /* transform: translateY(-12px) scale(1.02); */
    /* border-color: var(--primary); */
    background: var(--glass-strong);
}

.review-card-minimal:hover::before {
    opacity: 0.1;
}

.review-card-minimal>* {
    position: relative;
    z-index: 1;
}

.review-quotes {
    color: var(--primary);
    margin-bottom: 1rem;
    opacity: 0.3;
    transition: transform 0.5s ease;
}

.review-card-minimal:hover .review-quotes {
    transform: scale(1.1);
    opacity: 0.6;
}

.review-rating {
    margin-bottom: 1rem;
}

.review-rating span {
    color: #f0c05a;
    font-size: 0.875rem;
    letter-spacing: 2px;
}

.review-text {
    font-size: clamp(1rem, 1vw + 0.5rem, 1.125rem);
    color: var(--foreground);
    margin-bottom: 2.5rem;
    line-height: 1.8;
    font-style: italic;
    font-weight: 400;
    opacity: 0.9;
    flex-grow: 1;
}

.review-author {
    display: flex;
    flex-direction: column;
    gap: 4px;
    border-top: 1px solid var(--glass-border);
    padding-top: 1.25rem;
    margin-top: auto;
}

.author-name {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    color: var(--foreground);
}

.author-company {
    font-size: 0.75rem;
    color: var(--text-secondary);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.02em;
}


@media (max-width: 768px) {
    .reviews-grid {
        margin-top: 2rem;
        margin-left: -1.5rem;
        margin-right: -1.5rem;
        width: calc(100% + 3rem) !important;
    }

    .review-card-minimal {
        padding: 2rem 1.75rem;
        width: 100%;
    }

    .review-text {
        font-size: 1rem;
        margin-bottom: 2rem;
        line-height: 1.7;
    }

    .reviewsSwiper {
        padding: 0 0 3rem !important;
        /* Remove horizontal padding for better peek */
        overflow: visible !important;
        /* Allow peeking slides to be seen if container is narrow */
    }


}