/* ============================================================
   ROOT VARIABLES - LIGHT THEME
   ============================================================ */
:root {
    /* Base colors - light theme */
    --bg: #fffefe;
    --bg2: #f8f4fc;
    --surface: rgba(123, 77, 255, .04);
    --surface-2: rgba(123, 77, 255, .075);
    --border: rgba(31, 21, 48, .08);
    --text: #221733;
    --text-dim: rgba(34, 23, 51, .55);

    /* Accent colors */
    --gold: #bc9344;
    --gold-2: #dcb96a;
    --violet: #7c4dff;
    --violet-2: #9d7bff;
    --coral: #d8bfff;
    --grad-1: linear-gradient(120deg, var(--violet) 0%, var(--gold) 100%);
    --grad-2: linear-gradient(120deg, var(--violet), var(--violet-2));

    /* Effects */
    --shadow-glow: 0 0 0 1px rgba(31, 21, 48, .04), 0 26px 60px -28px rgba(123, 77, 255, .16);
    --ease: cubic-bezier(.16, 1, .3, 1);
    --radius: 22px;
    --radius-lg: 28px;
    --transition: .3s ease;

    /* Fonts */
    --font: 'IRANSans', sans-serif;
    --font-display: 'IRANSans','Lalezar', cursive;
}

/* ============================================================
   BASE RESET
   ============================================================ */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font);
    background: var(--bg);
    color: var(--text);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

/* Background texture */
body::before {
    content: '';
    position: fixed;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    opacity: .1;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='140' height='140' filter='url(%23n)' opacity='0.05'/%3E%3C/svg%3E");
}

img {
    max-width: 100%;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
}

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
    color: inherit;
}

input,
textarea {
    font-family: inherit;
}

ul {
    list-style: none;
}

::selection {
    background: var(--gold);
    color: var(--bg);
}

/* ============================================================
   SCROLLBAR
   ============================================================ */
::-webkit-scrollbar {
    width: 6px;
    height: 6px;
}

::-webkit-scrollbar-track {
    background: var(--bg2);
}

::-webkit-scrollbar-thumb {
    background: var(--gold);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--gold-2);
}

/* ============================================================
   CURSOR TRAIL
   ============================================================ */
.drop {
    position: fixed;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--gold);
    pointer-events: none;
    z-index: 9999;
    opacity: .85;
    box-shadow: 0 0 14px 3px rgba(240, 193, 75, .5);
    transition: transform .7s var(--ease), opacity .7s var(--ease);
}

/* ============================================================
   WRAP
   ============================================================ */
.wrap {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 32px;
    position: relative;
    z-index: 2;
}

/* ============================================================
   REVEAL ANIMATIONS
   ============================================================ */
.reveal {
    opacity: 0;
    transform: translateY(36px);
    transition: opacity .9s var(--ease), transform .9s var(--ease);
}

.reveal.in {
    opacity: 1;
    transform: translateY(0);
}

.reveal-left {
    opacity: 0;
    transform: translateX(40px);
    transition: opacity .9s var(--ease), transform .9s var(--ease);
}

.reveal-left.in {
    opacity: 1;
    transform: translateX(0);
}

.reveal-right {
    opacity: 0;
    transform: translateX(-40px);
    transition: opacity .9s var(--ease), transform .9s var(--ease);
}

.reveal-right.in {
    opacity: 1;
    transform: translateX(0);
}

/* ============================================================
   SECTION HEAD
   ============================================================ */
.section-head {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 50px;
    flex-wrap: wrap;
    gap: 18px;
}

.section-head.center {
    text-align: center;
    justify-content: center;
    flex-direction: column;
    align-items: center;
}

.section-head .eyebrow {
    color: var(--coral);
    font-size: 12.5px;
    letter-spacing: 3px;
    font-weight: 800;
    margin-bottom: 12px;
    display: block;
    text-transform: uppercase;
}

.section-head h2 {
    font-size: clamp(28px, 3.6vw, 46px);
    font-weight: 800;
    line-height: 1.15;
}

.section-head h2 em {
    font-style: normal;
    background: var(--grad-1);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.section-head p {
    color: var(--text-dim);
    max-width: 420px;
    font-size: 14.5px;
    line-height: 1.85;
}

/* ============================================================
   UTILITY BAR
   ============================================================ */
.utility-bar {
    background: var(--bg2);
    color: var(--text-dim);
    font-size: 11.5px;
    border-bottom: 1px solid var(--border);
    position: relative;
    z-index: 5;
}

.utility-bar .wrap {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 38px;
}

.utility-bar .tag {
    letter-spacing: 1.5px;
    opacity: .75;
}

/* ============================================================
   LANGUAGE SWITCH
   ============================================================ */
.lang-switch {
    position: relative;
}

.lang-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 6px 12px;
    border-radius: 30px;
    transition: background .25s;
    color: var(--text-dim);
    border: 1px solid transparent;
}

.lang-btn:hover {
    background: var(--surface);
    border-color: var(--border);
}

.lang-flag {
    font-size: 15px;
}

.lang-caret {
    font-size: 9px;
    transition: transform .3s var(--ease);
}

.lang-switch.open .lang-caret {
    transform: rotate(180deg);
}

.lang-menu {
    position: absolute;
    top: calc(100% + 12px);
    inset-inline-start: 0;
    background: rgba(255, 255, 255, .96);
    backdrop-filter: blur(20px);
    color: var(--text);
    width: 270px;
    max-height: 0;
    overflow: hidden;
    border-radius: 18px;
    border: 1px solid var(--border);
    box-shadow: var(--shadow-glow);
    z-index: 200;
    opacity: 0;
    transition: max-height .4s var(--ease), opacity .3s var(--ease);
}

.lang-switch.open .lang-menu {
    max-height: 380px;
    opacity: 1;
    overflow-y: auto;
}

.lang-menu ul {
    list-style: none;
}

.lang-menu li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 16px;
    font-size: 13px;
    cursor: pointer;
    transition: background .2s;
}

.lang-menu li:hover {
    background: var(--surface-2);
}

.lang-menu li.active {
    background: rgba(240, 193, 75, .12);
    color: var(--gold);
    font-weight: 700;
}

.lang-menu .native {
    color: var(--text-dim);
    font-size: 11px;
    margin-inline-start: auto;
}

.lang-note {
    font-size: 10.5px;
    color: var(--text-dim);
    padding: 10px 16px;
    border-top: 1px solid var(--border);
    opacity: .7;
}

/* ============================================================
   HEADER / NAV
   ============================================================ */
header.site {
    position: sticky;
    top: 0;
    z-index: 150;
    padding: 18px 0;
}

.nav-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 64px;
    background: rgba(255, 255, 255, .55);
    backdrop-filter: blur(18px);
    border: 1px solid var(--border);
    border-radius: 50px;
    padding: 0 14px 0 26px;
}

[dir="rtl"] .nav-row {
    padding: 0 26px 0 14px;
}

.logo {
    font-family: 'Lalezar', var(--font);
    font-size: 25px;
}

.logo span {
    color: var(--gold);
}

.nav-links {
    display: flex;
    gap: 30px;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-dim);
}

.nav-links a {
    position: relative;
    padding: 6px 0;
    transition: color .3s;
}

.nav-links a:hover,
.nav-links a.current {
    color: var(--text);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    inset-inline-start: 0;
    width: 0;
    height: 1.5px;
    background: var(--grad-1);
    transition: width .35s var(--ease);
}

.nav-links a:hover::after,
.nav-links a.current::after {
    width: 100%;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 10px;
}

.icon-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--border);
    background: var(--surface);
    transition: var(--transition);
    font-size: 15px;
}

.icon-btn:hover {
    background: var(--surface-2);
    transform: scale(1.06);
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn-gold {
    background: var(--grad-1);
    color: var(--bg);
    padding: 13px 26px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 800;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: transform .35s var(--ease), box-shadow .35s;
    border: none;
    cursor: pointer;
    font-family: inherit;
}

.btn-gold:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 40px -10px rgba(240, 193, 75, .5);
}

.btn-outline {
    border: 1.5px solid var(--border);
    background: var(--surface);
    color: var(--text);
    padding: 12px 24px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
}

.btn-outline:hover {
    border-color: var(--gold);
    color: var(--gold);
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
    position: relative;
    min-height: 78vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero .mesh {
    position: absolute;
    inset: 0;
    z-index: 0;
    background:
        radial-gradient(ellipse 700px 500px at 15% 15%, rgba(123, 77, 255, .11), transparent 60%),
        radial-gradient(ellipse 650px 600px at 88% 25%, rgba(188, 147, 68, .13), transparent 60%),
        radial-gradient(ellipse 800px 650px at 50% 95%, rgba(157, 123, 255, .11), transparent 60%),
        var(--bg);
    animation: meshmove 16s ease-in-out infinite alternate;
}

@keyframes meshmove {
    0% {
        filter: hue-rotate(0deg);
    }

    100% {
        filter: hue-rotate(8deg);
    }
}

.hero .wrap {
    position: relative;
    z-index: 3;
    display: grid;
    grid-template-columns: 1.15fr .85fr;
    gap: 50px;
    align-items: center;
    width: 100%;
    padding-top: 40px;
}

.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--gold);
    font-size: 12.5px;
    letter-spacing: 3px;
    margin-bottom: 24px;
    font-weight: 700;
    text-transform: uppercase;
}

.hero-eyebrow .line {
    width: 36px;
    height: 1px;
    background: var(--gold);
}

.hero h1 {
    font-size: clamp(42px, 6vw, 88px);
    line-height: 1.06;
    margin-bottom: 22px;
    font-weight: 900;
}

.hero h1 em {
    font-style: normal;
}

[dir="rtl"] .hero h1 {
    line-height: 1.25;
}

.hero p.lead {
    color: var(--text-dim);
    font-size: 17.5px;
    max-width: 480px;
    line-height: 1.85;
    margin-bottom: 36px;
}

.hero-ctas {
    display: flex;
    gap: 16px;
    margin-bottom: 54px;
    flex-wrap: wrap;
}

.hero-stats {
    display: flex;
    gap: 0;
}

.hero-stats div {
    padding-inline-end: 36px;
    margin-inline-end: 36px;
    border-inline-end: 1px solid var(--border);
}

.hero-stats div:last-child {
    border: none;
}

.hero-stats div b {
    display: block;
    font-family: 'Lalezar', var(--font);
    font-weight: 800;
    font-size: 30px;
    background: var(--grad-1);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.hero-stats div span {
    font-size: 12px;
    color: var(--text-dim);
}

.hero-visual {
    position: relative;
    height: 580px;
}

.hero-blob {
    position: absolute;
    inset: 6%;
    border-radius: 42% 58% 65% 35%/52% 40% 60% 48%;
    overflow: hidden;
    box-shadow: var(--shadow-glow);
    animation: blob-morph 11s ease-in-out infinite;
    border: 1px solid var(--border);
}

@keyframes blob-morph {

    0%,
    100% {
        border-radius: 42% 58% 65% 35%/52% 40% 60% 48%;
    }

    50% {
        border-radius: 62% 38% 40% 60%/45% 55% 45% 55%;
    }
}

.float-card {
    position: absolute;
    background: rgba(255, 255, 255, .82);
    backdrop-filter: blur(16px);
    border: 1px solid var(--border);
    border-radius: 18px;
    padding: 14px 18px;
    box-shadow: var(--shadow-glow);
    display: flex;
    align-items: center;
    gap: 12px;
    animation: float 5s ease-in-out infinite;
}

.float-card.f1 {
    top: 2%;
    inset-inline-start: -10%;
    animation-delay: 0s;
}

.float-card.f2 {
    bottom: 4%;
    inset-inline-end: -8%;
    animation-delay: 1.2s;
}

.float-card .dot {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: var(--grad-1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 17px;
}

.float-card b {
    display: block;
    font-size: 13px;
}

.float-card span {
    font-size: 11px;
    color: var(--text-dim);
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-16px);
    }
}

.scroll-cue {
    position: absolute;
    bottom: 30px;
    inset-inline-start: 50%;
    transform: translateX(-50%);
    z-index: 3;
    color: var(--text-dim);
    font-size: 10.5px;
    letter-spacing: 3px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    text-transform: uppercase;
}

.scroll-cue .stick {
    width: 1px;
    height: 38px;
    background: var(--border);
    position: relative;
    overflow: hidden;
}

.scroll-cue .stick::after {
    content: '';
    position: absolute;
    top: -100%;
    width: 100%;
    height: 100%;
    background: var(--gold);
    animation: cue 1.8s infinite;
}

@keyframes cue {
    to {
        top: 100%;
    }
}

/* ============================================================
   HERO - ABOUT / CONTACT (alternate)
   ============================================================ */
.hero-mesh {
    position: absolute;
    inset: 0;
    z-index: 0;
    background:
        radial-gradient(ellipse 700px 500px at 10% 20%, rgba(123, 77, 255, .12), transparent 60%),
        radial-gradient(ellipse 600px 550px at 90% 15%, rgba(188, 147, 68, .14), transparent 60%),
        radial-gradient(ellipse 800px 600px at 50% 100%, rgba(157, 123, 255, .1), transparent 60%),
        var(--bg);
    animation: mesh 18s ease-in-out infinite alternate;
}

@keyframes mesh {
    0% {
        filter: hue-rotate(0deg);
    }

    100% {
        filter: hue-rotate(10deg);
    }
}

.hero-wrap {
    position: relative;
    z-index: 2;
    max-width: 1280px;
    margin: 0 auto;
    padding: 50px 32px;
    display: grid;
    grid-template-columns: 1.1fr .9fr;
    gap: 60px;
    align-items: center;
    width: 100%;
}

.hero h1 .gr {
    background: var(--grad-1);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.hero-lead {
    color: var(--text-dim);
    font-size: 17px;
    max-width: 500px;
    line-height: 1.95;
    margin-bottom: 36px;
}

.hero-since {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-size: 13px;
    color: var(--text-dim);
    padding: 10px 18px;
    border-radius: 30px;
    border: 1px solid var(--border);
    background: var(--surface);
}

.hero-since .dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #3fb27f;
    animation: pulse 2s infinite;
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: .5;
        transform: scale(1.5);
    }
}

.hero-img-main {
    position: absolute;
    inset: 0 0 60px 60px;
    border-radius: 32px;
    overflow: hidden;
    border: 1px solid var(--border);
    box-shadow: var(--shadow-glow);
}

.hero-img-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-img-accent {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 200px;
    height: 200px;
    border-radius: 24px;
    overflow: hidden;
    border: 3px solid var(--bg);
    box-shadow: var(--shadow-glow);
}

.hero-img-accent img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.float-badge {
    position: absolute;
    background: rgba(255, 255, 255, .88);
    backdrop-filter: blur(16px);
    border: 1px solid var(--border);
    border-radius: 18px;
    padding: 12px 16px;
    box-shadow: var(--shadow-glow);
    display: flex;
    align-items: center;
    gap: 10px;
    animation: float 5s ease-in-out infinite;
}

.float-badge.f1 {
    top: 14px;
    right: -16px;
    animation-delay: 0s;
}

.float-badge.f2 {
    bottom: 70px;
    left: -20px;
    animation-delay: 1.4s;
}

.float-badge .ic {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: var(--grad-1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    flex-shrink: 0;
}

.float-badge b {
    display: block;
    font-size: 13px;
}

.float-badge span {
    font-size: 11px;
    color: var(--text-dim);
}

/* ============================================================
   STATS STRIP
   ============================================================ */
.stats-strip {
    background: var(--grad-1);
    padding: 0;
    overflow: hidden;
}

.stats-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 32px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

.stat-item {
    padding: 36px 28px;
    text-align: center;
    position: relative;
}

.stat-item:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 30%;
    right: 0;
    height: 40%;
    width: 1px;
    background: rgba(255, 255, 255, .2);
}

.stat-item b {
    display: block;
    font-family: 'Lalezar', var(--font);
    font-size: 52px;
    color: #fff;
    line-height: 1;
}

.stat-item span {
    font-size: 13px;
    color: rgba(255, 255, 255, .75);
    margin-top: 6px;
    display: block;
}

/* ============================================================
   QUICK STRIP
   ============================================================ */
.quick-strip {
    background: var(--grad-1);
    padding: 0;
    overflow: hidden;
}

.quick-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 32px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

.quick-item {
    padding: 30px 28px;
    display: flex;
    align-items: center;
    gap: 16px;
    position: relative;
}

.quick-item:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 30%;
    right: 0;
    height: 40%;
    width: 1px;
    background: rgba(255, 255, 255, .2);
}

.quick-item .qic {
    width: 46px;
    height: 46px;
    border-radius: 14px;
    background: rgba(255, 255, 255, .16);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 19px;
    flex-shrink: 0;
}

.quick-item b {
    display: block;
    font-size: 14px;
    color: #fff;
    margin-bottom: 3px;
}

.quick-item span {
    font-size: 12px;
    color: rgba(255, 255, 255, .78);
}

/* ============================================================
   BENEFITS MARQUEE
   ============================================================ */
.benefits {
    background: var(--bg2);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 0;
    overflow: hidden;
}

.marquee {
    display: flex;
    white-space: nowrap;
    animation: marquee 30s linear infinite;
}

.marquee:hover {
    animation-play-state: paused;
}

.marquee span {
    padding: 34px 56px;
    font-family: 'Lalezar', var(--font);
    font-weight: 800;
    font-size: 21px;
    display: flex;
    align-items: center;
    gap: 18px;
    color: var(--text-dim);
}

[dir="rtl"] .marquee span {
    font-family: 'Lalezar', var(--font);
    font-size: 22px;
}

.marquee span i {
    color: var(--gold);
    font-size: 14px;
}

@keyframes marquee {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

/* ============================================================
   CATEGORIES
   ============================================================ */
section {
    padding: 110px 0;
    position: relative;
    z-index: 2;
}

.cat-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.cat-card {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    height: 320px;
    box-shadow: var(--shadow-glow);
    transition: transform .5s var(--ease);
    cursor: pointer;
    border: 1px solid var(--border);
}

.cat-card:hover {
    transform: translateY(-10px) scale(1.01);
}

.cat-card svg {
    position: absolute;
    inset: 0;
    transition: transform .8s var(--ease);
}

.cat-card:hover svg {
    transform: scale(1.1);
}

.cat-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(20, 12, 32, .82) 0%, rgba(20, 12, 32, .05) 60%);
    z-index: 1;
}

.cat-label {
    position: absolute;
    bottom: 0;
    inset-inline: 0;
    padding: 26px;
    z-index: 2;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.cat-label h3 {
    color: #fdfbff;
    font-size: 20px;
    font-weight: 700;
}

.cat-label .arrow {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--grad-1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--bg);
    transition: transform .35s var(--ease);
    flex-shrink: 0;
    font-weight: 900;
}

.cat-card:hover .arrow {
    transform: scale(1.18) rotate(-45deg);
}

.cat-count {
    position: absolute;
    top: 18px;
    inset-inline-start: 18px;
    background: rgba(255, 255, 255, .85);
    backdrop-filter: blur(6px);
    border: 1px solid var(--border);
    color: var(--text);
    padding: 6px 14px;
    border-radius: 30px;
    font-size: 11px;
    font-weight: 700;
    z-index: 2;
}

/* ============================================================
   PRODUCTS
   ============================================================ */
.products {
    background: var(--bg2);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.prod-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
}

.prod-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 22px;
    overflow: hidden;
    transition: transform .4s var(--ease), border-color .4s, box-shadow .4s;
    cursor: pointer;
}

.prod-card:hover {
    transform: translateY(-8px);
    border-color: rgba(240, 193, 75, .4);
    box-shadow: 0 30px 60px -28px rgba(240, 193, 75, .25);
}

.prod-img {
    position: relative;
    height: 190px;
    overflow: hidden;
}

.prod-img svg {
    transition: transform .6s var(--ease);
}

.prod-card:hover .prod-img svg {
    transform: scale(1.08) rotate(2deg);
}

.prod-tag {
    position: absolute;
    top: 12px;
    inset-inline-start: 12px;
    background: var(--grad-1);
    color: var(--bg);
    font-size: 10.5px;
    padding: 5px 12px;
    border-radius: 20px;
    font-weight: 800;
    z-index: 2;
}

.prod-fav {
    position: absolute;
    top: 10px;
    inset-inline-end: 10px;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .78);
    backdrop-filter: blur(6px);
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transform: translateY(-6px);
    transition: .3s;
    z-index: 2;
}

.prod-card:hover .prod-fav {
    opacity: 1;
    transform: translateY(0);
}

.prod-body {
    padding: 20px;
}

.prod-cat {
    font-size: 11px;
    color: var(--text-dim);
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.prod-name {
    font-size: 15.5px;
    font-weight: 700;
    margin-bottom: 14px;
    min-height: 42px;
}

.prod-foot {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.prod-feature {
    font-size: 11px;
    color: var(--gold);
    background: rgba(240, 193, 75, .1);
    border: 1px solid rgba(240, 193, 75, .25);
    padding: 5px 12px;
    border-radius: 20px;
    font-weight: 600;
}

/* ============================================================
   BRAND BANNER
   ============================================================ */
.brand-banner {
    position: relative;
    border-radius: 32px;
    overflow: hidden;
    min-height: 340px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    border: 1px solid var(--border);
}

.brand-banner .content {
    position: relative;
    z-index: 2;
    color: var(--text);
    padding: 40px;
}

.brand-banner h2 {
    font-size: clamp(30px, 4.4vw, 56px);
    margin-bottom: 12px;
    font-weight: 900;
}

.brand-banner h2 em {
    font-style: normal;
    background: var(--grad-1);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.brand-banner p {
    max-width: 540px;
    margin: 0 auto;
    color: var(--text-dim);
    font-size: 15px;
    line-height: 1.9;
}

/* ============================================================
   SERUMS
   ============================================================ */
.serum-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.serum-item {
    text-align: center;
    cursor: pointer;
}

.serum-circle {
    width: 100%;
    aspect-ratio: 1/1.05;
    border-radius: 50% 50% 46% 46%/55% 55% 45% 45%;
    overflow: hidden;
    box-shadow: var(--shadow-glow);
    margin-bottom: 18px;
    transition: border-radius .5s var(--ease), transform .5s var(--ease);
    border: 1px solid var(--border);
}

.serum-item:hover .serum-circle {
    border-radius: 28%;
    transform: translateY(-8px);
}

.serum-item h4 {
    font-size: 15px;
    font-weight: 600;
}

/* ============================================================
   ABOUT
   ============================================================ */
.about-grid {
    display: grid;
    grid-template-columns: .95fr 1.05fr;
    gap: 64px;
    align-items: center;
}

.about-img {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-glow);
    height: 520px;
    border: 1px solid var(--border);
}

.about-badge {
    position: absolute;
    bottom: 26px;
    inset-inline-start: 26px;
    background: rgba(255, 255, 255, .85);
    backdrop-filter: blur(14px);
    border: 1px solid var(--border);
    padding: 18px 22px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    gap: 12px;
    z-index: 2;
}

.about-badge b {
    font-family: 'Lalezar', var(--font);
    font-weight: 800;
    font-size: 24px;
    background: var(--grad-1);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.about-badge span {
    font-size: 11px;
    color: var(--text-dim);
    display: block;
}

.about-list {
    margin-top: 28px;
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.about-list li {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    list-style: none;
    font-size: 14.5px;
    color: var(--text-dim);
    line-height: 1.85;
}

.about-list .num {
    font-family: 'Lalezar', var(--font);
    font-weight: 800;
    color: var(--gold);
    font-size: 18px;
    min-width: 34px;
}

.about-list b {
    color: var(--text);
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials {
    background: var(--bg2);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.testi-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.testi-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 22px;
    padding: 28px;
    transition: .4s;
}

.testi-card:hover {
    background: var(--surface-2);
    transform: translateY(-6px);
    border-color: rgba(240, 193, 75, .3);
}

.stars {
    color: var(--gold);
    font-size: 13px;
    margin-bottom: 16px;
    letter-spacing: 3px;
}

.testi-card p {
    font-size: 14px;
    line-height: 1.95;
    color: var(--text-dim);
    margin-bottom: 22px;
}

.testi-user {
    display: flex;
    align-items: center;
    gap: 12px;
}

.testi-avatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: var(--grad-1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Lalezar', var(--font);
    font-weight: 800;
    color: var(--bg);
}

.testi-user b {
    font-size: 13.5px;
    display: block;
}

.testi-user span {
    font-size: 11px;
    color: var(--text-dim);
}

/* ============================================================
   CTA BANNER
   ============================================================ */
.cta-banner {
    background: var(--grad-1);
    border-radius: var(--radius);
    padding: 70px 50px;
    text-align: center;
    color: var(--bg);
    position: relative;
    overflow: hidden;
}

.cta-banner::before {
    content: '';
    position: absolute;
    width: 380px;
    height: 380px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .15);
    top: -180px;
    inset-inline-end: -110px;
}

.cta-banner h2 {
    font-size: clamp(28px, 4vw, 48px);
    margin-bottom: 14px;
    position: relative;
    font-weight: 900;
}

.cta-banner p {
    margin-bottom: 30px;
    opacity: .85;
    position: relative;
    font-weight: 500;
}

.cta-banner .btn-gold {
    background: var(--bg);
    color: var(--gold-2);
    position: relative;
}

/* ============================================================
   STORY
   ============================================================ */
.story {
    max-width: 1280px;
    margin: 100px auto;
    padding: 0 32px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 72px;
    align-items: center;
}

.story-imgs {
    position: relative;
    height: 520px;
}

.story-img-a {
    position: absolute;
    top: 0;
    right: 0;
    width: 72%;
    height: 380px;
    border-radius: 28px;
    overflow: hidden;
    box-shadow: var(--shadow-glow);
    border: 1px solid var(--border);
}

.story-img-a img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.story-img-b {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 55%;
    height: 260px;
    border-radius: 24px;
    overflow: hidden;
    border: 4px solid var(--bg);
    box-shadow: var(--shadow-glow);
}

.story-img-b img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.story-year {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 86px;
    height: 86px;
    border-radius: 50%;
    background: var(--grad-1);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-family: 'Lalezar', var(--font);
    font-size: 24px;
    line-height: 1;
    box-shadow: 0 8px 32px rgba(123, 77, 255, .45);
}

.story-year span {
    font-size: 10px;
    font-family: var(--font);
    margin-top: 1px;
    opacity: .8;
}

.story-text .eyebrow {
    color: var(--gold);
    font-size: 12px;
    letter-spacing: 3px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.story-text .eyebrow::before {
    content: '';
    width: 24px;
    height: 1px;
    background: var(--gold);
}

.story-text h2 {
    font-family: 'Lalezar', var(--font);
    font-size: clamp(32px, 4vw, 52px);
    line-height: 1.25;
    margin-bottom: 24px;
}

.story-text h2 em {
    font-style: normal;
    background: var(--grad-1);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.story-text p {
    color: var(--text-dim);
    font-size: 15.5px;
    line-height: 2;
    margin-bottom: 18px;
}

.story-text .quote {
    border-right: 3px solid var(--gold);
    padding: 12px 20px;
    margin: 28px 0;
    font-size: 15px;
    font-style: italic;
    color: var(--text-dim);
    line-height: 1.85;
    background: rgba(188, 147, 68, .05);
    border-radius: 0 12px 12px 0;
}

/* ============================================================
   VALUES
   ============================================================ */
.values {
    background: var(--bg2);
    padding: 100px 0;
}

.values-wrap {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 32px;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.val-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 36px 32px;
    position: relative;
    transition: transform .4s var(--ease), box-shadow .4s;
}

.val-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 32px 64px -24px rgba(123, 77, 255, .2);
}

.val-icon {
    width: 58px;
    height: 58px;
    border-radius: 18px;
    background: var(--grad-1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-bottom: 22px;
    box-shadow: 0 8px 24px -6px rgba(123, 77, 255, .35);
}

.val-card h3 {
    font-family: 'Lalezar', var(--font);
    font-size: 22px;
    margin-bottom: 12px;
}

.val-card p {
    color: var(--text-dim);
    font-size: 14px;
    line-height: 1.9;
}

.val-num {
    position: absolute;
    bottom: 20px;
    left: 24px;
    font-family: 'Lalezar', var(--font);
    font-size: 64px;
    color: var(--border);
    line-height: 1;
    user-select: none;
}

/* ============================================================
   TIMELINE
   ============================================================ */
.timeline {
    max-width: 860px;
    margin: 100px auto;
    padding: 0 32px;
}

.tl-head {
    text-align: center;
    margin-bottom: 60px;
}

.tl-body {
    position: relative;
    padding-right: 32px;
}

.tl-body::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    width: 2px;
    background: linear-gradient(to bottom, transparent, var(--violet) 10%, var(--gold) 90%, transparent);
}

.tl-item {
    position: relative;
    padding-right: 48px;
    padding-bottom: 52px;
}

.tl-item:last-child {
    padding-bottom: 0;
}

.tl-dot {
    position: absolute;
    right: -8px;
    top: 4px;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: var(--grad-1);
    border: 3px solid var(--bg);
    box-shadow: 0 0 0 2px var(--gold);
}

.tl-year {
    display: inline-block;
    font-family: 'Lalezar', var(--font);
    font-size: 14px;
    color: var(--gold);
    background: rgba(188, 147, 68, .1);
    border: 1px solid rgba(188, 147, 68, .25);
    padding: 3px 12px;
    border-radius: 20px;
    margin-bottom: 10px;
}

.tl-item h3 {
    font-family: 'Lalezar', var(--font);
    font-size: 22px;
    margin-bottom: 8px;
}

.tl-item p {
    color: var(--text-dim);
    font-size: 14.5px;
    line-height: 1.85;
}

.tl-img {
    width: 100%;
    height: 180px;
    border-radius: 16px;
    overflow: hidden;
    margin-top: 16px;
    border: 1px solid var(--border);
}

.tl-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ============================================================
   TEAM
   ============================================================ */
.team {
    background: var(--bg2);
    padding: 100px 0;
}

.team-wrap {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 32px;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.member-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    transition: transform .4s var(--ease), box-shadow .4s;
}

.member-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 28px 56px -20px rgba(123, 77, 255, .2);
}

.member-photo {
    height: 220px;
    position: relative;
    overflow: hidden;
}

.member-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .6s var(--ease);
}

.member-card:hover .member-photo img {
    transform: scale(1.07);
}

.member-photo .overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(transparent 50%, rgba(34, 23, 51, .7));
    opacity: 0;
    transition: .4s;
}

.member-card:hover .member-photo .overlay {
    opacity: 1;
}

.member-socials {
    position: absolute;
    bottom: 14px;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    gap: 8px;
    opacity: 0;
    transform: translateY(10px);
    transition: .4s var(--ease);
}

.member-card:hover .member-socials {
    opacity: 1;
    transform: translateY(0);
}

.soc-btn {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .15);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, .3);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    color: #fff;
    transition: .2s;
}

.soc-btn:hover {
    background: rgba(255, 255, 255, .3);
}

.member-body {
    padding: 18px 20px;
}

.member-name {
    font-family: 'Lalezar', var(--font);
    font-size: 20px;
    margin-bottom: 4px;
}

.member-role {
    font-size: 12.5px;
    color: var(--gold);
    font-weight: 700;
    margin-bottom: 10px;
}

.member-bio {
    font-size: 12.5px;
    color: var(--text-dim);
    line-height: 1.75;
}

/* ============================================================
   CERTIFICATIONS
   ============================================================ */
.certs {
    max-width: 1280px;
    margin: 100px auto;
    padding: 0 32px;
}

.cert-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.cert-card {
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 32px 24px;
    text-align: center;
    background: #fff;
    transition: .35s var(--ease);
}

.cert-card:hover {
    border-color: rgba(188, 147, 68, .4);
    box-shadow: var(--shadow-glow);
    transform: translateY(-4px);
}

.cert-icon {
    font-size: 42px;
    margin-bottom: 16px;
    display: block;
}

.cert-card h4 {
    font-family: 'Lalezar', var(--font);
    font-size: 18px;
    margin-bottom: 8px;
}

.cert-card p {
    font-size: 12.5px;
    color: var(--text-dim);
    line-height: 1.75;
}

/* ============================================================
   LABS
   ============================================================ */
.labs {
    position: relative;
    overflow: hidden;
    margin: 0 32px 100px;
    border-radius: 32px;
    min-height: 480px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
}

.labs-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #0d0618 0%, #1a0d35 40%, #2d1464 70%, #0d0618 100%);
    z-index: 0;
}

.labs-orb {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}

.labs-orb.o1 {
    width: 500px;
    height: 500px;
    top: -100px;
    right: -100px;
    background: radial-gradient(rgba(123, 77, 255, .3), transparent 65%);
    z-index: 1;
}

.labs-orb.o2 {
    width: 400px;
    height: 400px;
    bottom: -80px;
    left: -80px;
    background: radial-gradient(rgba(188, 147, 68, .2), transparent 65%);
    z-index: 1;
}

.labs-content {
    position: relative;
    z-index: 2;
    padding: 64px;
}

.labs-eyebrow {
    color: var(--gold-2);
    font-size: 12px;
    letter-spacing: 3px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 18px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.labs-eyebrow::before {
    content: '';
    width: 28px;
    height: 1px;
    background: var(--gold-2);
}

.labs h2 {
    font-family: 'Lalezar', var(--font);
    font-size: clamp(30px, 4vw, 50px);
    color: #fff;
    margin-bottom: 20px;
    line-height: 1.25;
}

.labs h2 span {
    background: linear-gradient(120deg, #f0c14b, #e8a830);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.labs-text {
    color: rgba(255, 255, 255, .68);
    font-size: 15px;
    line-height: 1.95;
    margin-bottom: 32px;
}

.labs-feats {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 36px;
}

.labs-feat {
    display: flex;
    align-items: center;
    gap: 12px;
    color: rgba(255, 255, 255, .8);
    font-size: 14px;
}

.labs-feat .tick {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: rgba(188, 147, 68, .2);
    border: 1px solid rgba(188, 147, 68, .4);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    color: var(--gold-2);
    flex-shrink: 0;
}

.labs-img {
    position: relative;
    z-index: 2;
    padding: 48px 64px 48px 0;
}

.labs-img img {
    border-radius: 24px;
    box-shadow: 0 32px 80px rgba(0, 0, 0, .5);
    width: 100%;
    height: 360px;
    object-fit: cover;
}

/* ============================================================
   MISSION
   ============================================================ */
.mission {
    max-width: 1280px;
    margin: 0 auto 100px;
    padding: 0 32px;
}

.mission-card {
    background: var(--bg2);
    border: 1px solid var(--border);
    border-radius: 32px;
    padding: 64px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.mission-left h2 {
    font-family: 'Lalezar', var(--font);
    font-size: clamp(28px, 3.5vw, 44px);
    line-height: 1.3;
    margin-bottom: 18px;
}

.mission-left h2 em {
    font-style: normal;
    background: var(--grad-1);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.mission-left p {
    color: var(--text-dim);
    font-size: 15px;
    line-height: 1.95;
}

.mission-right {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.mission-point {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    padding: 20px;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 18px;
    transition: .3s;
}

.mission-point:hover {
    border-color: rgba(188, 147, 68, .3);
    box-shadow: 0 8px 32px -12px rgba(123, 77, 255, .15);
}

.mp-icon {
    width: 46px;
    height: 46px;
    border-radius: 14px;
    background: var(--grad-1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
}

.mp-text b {
    display: block;
    font-size: 14px;
    font-weight: 800;
    margin-bottom: 4px;
}

.mp-text p {
    font-size: 13px;
    color: var(--text-dim);
    line-height: 1.7;
}

/* ============================================================
   CONTACT SECTION
   ============================================================ */
.contact-section {
    max-width: 1280px;
    margin: 100px auto;
    padding: 0 32px;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1.15fr .85fr;
    gap: 48px;
    align-items: start;
}

.form-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 32px;
    padding: 48px;
    box-shadow: var(--shadow-glow);
}

.form-card .eyebrow {
    color: var(--gold);
    font-size: 12px;
    letter-spacing: 3px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 14px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.form-card .eyebrow::before {
    content: '';
    width: 24px;
    height: 1px;
    background: var(--gold);
}

.form-card h2 {
    font-family: 'Lalezar', var(--font);
    font-size: clamp(26px, 3vw, 36px);
    margin-bottom: 10px;
}

.form-card>p {
    color: var(--text-dim);
    font-size: 14.5px;
    line-height: 1.9;
    margin-bottom: 32px;
    max-width: 460px;
}

.f-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
    margin-bottom: 18px;
}

.f-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 18px;
}

.f-group label {
    font-size: 13px;
    font-weight: 700;
    color: var(--text);
}

.f-group input,
.f-group textarea {
    border: 1.5px solid var(--border);
    background: var(--surface);
    border-radius: 14px;
    padding: 13px 16px;
    font-size: 14px;
    color: var(--text);
    transition: border-color .25s, background .25s;
    outline: none;
    width: 100%;
}

.f-group input:focus,
.f-group textarea:focus {
    border-color: var(--gold);
    background: #fff;
}

.f-group textarea {
    resize: vertical;
    min-height: 120px;
    line-height: 1.8;
}

.f-group input::placeholder,
.f-group textarea::placeholder {
    color: var(--text-dim);
}

.chip-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.chip {
    border: 1.5px solid var(--border);
    background: var(--surface);
    color: var(--text-dim);
    padding: 9px 18px;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 600;
    transition: .25s;
    cursor: pointer;
}

.chip:hover {
    border-color: var(--gold);
    color: var(--text);
}

.chip.active {
    background: var(--grad-1);
    color: #fff;
    border-color: transparent;
}

.form-submit {
    margin-top: 8px;
    display: flex;
    align-items: center;
    gap: 18px;
    flex-wrap: wrap;
}

.form-note {
    font-size: 12px;
    color: var(--text-dim);
}

.form-success {
    display: none;
    align-items: center;
    gap: 12px;
    background: rgba(63, 178, 127, .1);
    border: 1px solid rgba(63, 178, 127, .3);
    color: #2c8c63;
    padding: 14px 20px;
    border-radius: 16px;
    font-size: 13.5px;
    font-weight: 600;
    margin-top: 18px;
}

.form-success.show {
    display: flex;
}

.info-col {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.map-card {
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--border);
    box-shadow: var(--shadow-glow);
    height: 220px;
    position: relative;
}

.map-card iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

.map-pin {
    position: absolute;
    bottom: 16px;
    right: 16px;
    background: rgba(255, 255, 255, .92);
    backdrop-filter: blur(10px);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 10px 16px;
    font-size: 12px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: var(--shadow-glow);
}

.info-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 24px;
    padding: 26px 28px;
    display: flex;
    gap: 16px;
    align-items: flex-start;
    transition: .3s;
}

.info-card:hover {
    border-color: rgba(188, 147, 68, .35);
    box-shadow: 0 20px 48px -22px rgba(123, 77, 255, .2);
    transform: translateY(-3px);
}

.info-card .iic {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    background: var(--grad-1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
}

.info-card b {
    display: block;
    font-size: 14.5px;
    margin-bottom: 4px;
}

.info-card p {
    font-size: 13px;
    color: var(--text-dim);
    line-height: 1.8;
}

.info-card a.dial {
    color: var(--gold);
    font-weight: 700;
}

.social-row {
    display: flex;
    gap: 10px;
}

.social-row a {
    width: 46px;
    height: 46px;
    border-radius: 25px;
    border: 1px solid var(--border);
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 17px;
    transition: .3s;
    flex: 1;
}

.social-row a:hover {
    background: var(--grad-1);
    color: #fff;
    border-color: transparent;
    transform: translateY(-3px);
}

/* ============================================================
   FAQ
   ============================================================ */
.faq {
    background: var(--bg2);
    padding: 100px 0;
}

.faq-wrap {
    max-width: 880px;
    margin: 0 auto;
    padding: 0 32px;
}

.faq-list {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 24px;
    padding: 8px 30px;
    box-shadow: var(--shadow-glow);
}

/* ============================================================
   ACCORDION (reusable)
   ============================================================ */
.acc-item {
    border-bottom: 1px solid var(--border);
}

.acc-item:last-child {
    border-bottom: none;
}

.acc-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    padding: 22px 0;
    cursor: pointer;
    font-weight: 700;
    font-size: 15px;
}

.acc-head i {
    transition: transform .35s var(--ease);
    font-style: normal;
    color: var(--gold);
    font-size: 20px;
    flex-shrink: 0;
}

.acc-item.open .acc-head i {
    transform: rotate(45deg);
}

.acc-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height .4s var(--ease);
}

.acc-item.open .acc-body {
    max-height: 220px;
}

.acc-body p {
    padding-bottom: 22px;
    font-size: 13.5px;
    line-height: 1.95;
    color: var(--text-dim);
}

/* ============================================================
   CTA SECTION (alternate)
   ============================================================ */
.cta-section {
    max-width: 1280px;
    margin: 100px auto;
    padding: 0 32px;
}

.cta-box {
    text-align: center;
    padding: 80px 40px;
    border-radius: 32px;
    position: relative;
    overflow: hidden;
    background: var(--grad-1);
}

.cta-box .cta-noise {
    position: absolute;
    inset: 0;
    opacity: .05;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='200' height='200' filter='url(%23n)'/%3E%3C/svg%3E");
}

.cta-box h2 {
    font-family: 'Lalezar', var(--font);
    font-size: clamp(32px, 5vw, 56px);
    color: #fff;
    margin-bottom: 16px;
    position: relative;
    z-index: 1;
}

.cta-box p {
    color: rgba(255, 255, 255, .82);
    font-size: 16px;
    max-width: 480px;
    margin: 0 auto 36px;
    line-height: 1.85;
    position: relative;
    z-index: 1;
}

.cta-btns {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

.cta-white {
    background: #fff;
    color: var(--text);
    padding: 14px 30px;
    border-radius: 30px;
    font-size: 15px;
    font-weight: 800;
    display: inline-flex;
    align-items: center;
    gap: 9px;
    transition: .3s var(--ease);
}

.cta-white:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, .25);
}

.cta-ghost {
    border: 2px solid rgba(255, 255, 255, .5);
    color: #fff;
    padding: 14px 30px;
    border-radius: 30px;
    font-size: 15px;
    font-weight: 800;
    display: inline-flex;
    align-items: center;
    gap: 9px;
    transition: .3s;
}

.cta-ghost:hover {
    border-color: #fff;
    background: rgba(255, 255, 255, .12);
}

/* ============================================================
   PRODUCT PAGE - HIDE SECTIONS BY DEFAULT
   ============================================================ */
#about,
#flovio,
#beaute-reine,
#contact,
#agenty,
#product {
    display: none;
}

/* ============================================================
   BREADCRUMB (Product Page)
   ============================================================ */
.breadcrumb {
    max-width: 1280px;
    margin: 0 auto;
    padding: 18px 32px 0;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12.5px;
    color: var(--text-dim);
}

.breadcrumb a:hover {
    color: var(--gold);
}

.breadcrumb .sep {
    opacity: .4;
}

.breadcrumb .cur {
    color: var(--text);
    font-weight: 600;
}

/* ============================================================
   PRODUCT DETAIL (Product Page)
   ============================================================ */
.product-detail {
    max-width: 1280px;
    margin: 0 auto;
    padding: 20px 32px 80px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 56px;
}

.gallery-main {
    border-radius: var(--radius);
    overflow: hidden;
    height: 470px;
    box-shadow: var(--shadow-glow);
    margin-bottom: 18px;
    position: relative;
    border: 1px solid var(--border);
}

.gallery-main img,
.gallery-main svg {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gallery-thumbs {
    display: flex;
    gap: 12px;
}

.gallery-thumbs .thumb {
    width: 76px;
    height: 76px;
    border-radius: 14px;
    cursor: pointer;
    opacity: .45;
    transition: .3s;
    border: 2px solid transparent;
    overflow: hidden;
}

.gallery-thumbs .thumb.active {
    opacity: 1;
    border-color: var(--gold);
}

.gallery-thumbs .thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.pd-eyebrow {
    display: flex;
    gap: 10px;
    align-items: center;
    margin-bottom: 16px;
}

.pd-eyebrow .tag {
    background: var(--grad-1);
    color: var(--bg);
    padding: 5px 14px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 800;
}

.pd-title {
    font-size: clamp(28px, 3.2vw, 42px);
    margin-bottom: 16px;
    font-weight: 800;
}

.pd-desc {
    font-size: 14.5px;
    line-height: 2.05;
    color: var(--text-dim);
    margin-bottom: 28px;
}

.pd-facts {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    margin-bottom: 30px;
}

.pd-fact {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 16px 18px;
}

.pd-fact b {
    display: block;
    font-size: 13px;
    margin-bottom: 4px;
    color: var(--gold);
}

.pd-fact span {
    font-size: 12px;
    color: var(--text-dim);
}

.pd-actions {
    display: flex;
    gap: 14px;
    margin-bottom: 10px;
    flex-wrap: wrap;
}

.pd-trust {
    display: flex;
    gap: 26px;
    padding: 20px 0;
    border-top: 1px solid var(--border);
    flex-wrap: wrap;
    margin-top: 16px;
}

.pd-trust div {
    display: flex;
    gap: 8px;
    align-items: center;
    font-size: 12.5px;
    color: var(--text-dim);
}

.related-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
}

/* ============================================================
   PRODUCTS PAGE - FILTER
   ============================================================ */
.filter-wrap {
    max-width: 1280px;
    margin: 0 auto;
    padding: 20px 32px 0;
}

.filter-bar {
    background: rgba(255, 255, 255, .7);
    backdrop-filter: blur(16px);
    border: 1px solid var(--border);
    border-radius: 18px;
    padding: 16px 20px;
    display: flex;
    gap: 10px;
    align-items: center;
    flex-wrap: wrap;
}

.chip {
    padding: 8px 18px;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 600;
    border: 1.5px solid var(--border);
    background: transparent;
    color: var(--text-dim);
    cursor: pointer;
    transition: .2s;
}

.chip:hover {
    border-color: var(--gold);
    color: var(--gold);
}

.chip.on {
    background: var(--grad-1);
    color: #fff;
    border-color: transparent;
}

.sort-sel {
    border: 1.5px solid var(--border);
    background: transparent;
    border-radius: 20px;
    padding: 8px 16px;
    font-size: 13px;
    font-family: inherit;
    color: var(--text);
    cursor: pointer;
    margin-right: auto;
}

.grid-wrap {
    max-width: 1280px;
    margin: 0 auto;
    padding: 20px 32px 80px;
}

/* ============================================================
   CARDS (Products Grid)
   ============================================================ */
.card {
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid var(--border);
    background: #fff;
    cursor: pointer;
    transition: transform .45s var(--ease), box-shadow .45s, border-color .45s;
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: 0 32px 64px -24px rgba(123, 77, 255, .22);
    border-color: rgba(188, 147, 68, .35);
}

.card-img {
    position: relative;
    height: 210px;
    overflow: hidden;
}

.card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .7s var(--ease);
}

.card:hover .card-img img {
    transform: scale(1.08);
}

.card-img::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 40%, rgba(20, 10, 36, .65));
    transition: opacity .4s;
}

.card:hover .card-img::after {
    opacity: .85;
}

.card-overlay {
    position: absolute;
    bottom: 0;
    inset-inline: 0;
    padding: 14px 16px;
    transform: translateY(6px);
    opacity: 0;
    transition: opacity .4s var(--ease), transform .4s var(--ease);
}

.card:hover .card-overlay {
    opacity: 1;
    transform: translateY(0);
}

.card-overlay .desc {
    color: rgba(255, 255, 255, .88);
    font-size: 12px;
    line-height: 1.75;
    margin-bottom: 10px;
}

.card-overlay .ov-btn {
    background: rgba(255, 255, 255, .15);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, .3);
    color: #fff;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    width: 100%;
    transition: .2s;
}

.card-overlay .ov-btn:hover {
    background: rgba(255, 255, 255, .25);
}

.badge-tag {
    position: absolute;
    top: 12px;
    inset-inline-start: 12px;
    z-index: 2;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 10.5px;
    font-weight: 800;
    color: #fff;
}

.badge-tag.best {
    background: linear-gradient(120deg, #bc9344, #f0c14b);
}

.badge-tag.new-p {
    background: linear-gradient(120deg, #7c4dff, #9d7bff);
}

.badge-tag.sale {
    background: linear-gradient(120deg, #d85a30, #f0774b);
}

.badge-org {
    position: absolute;
    top: 12px;
    inset-inline-end: 12px;
    z-index: 2;
    background: rgba(255, 255, 255, .82);
    backdrop-filter: blur(6px);
    border: 1px solid rgba(255, 255, 255, .3);
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
}

.card-body {
    padding: 16px 18px 18px;
}

.card-cat {
    font-size: 10.5px;
    color: var(--text-dim);
    text-transform: uppercase;
    letter-spacing: 1.2px;
    margin-bottom: 6px;
}

.card-name {
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 8px;
    line-height: 1.4;
}

.card-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 10px;
}

.card-feat {
    font-size: 11px;
    color: var(--gold);
    background: rgba(188, 147, 68, .1);
    border: 1px solid rgba(188, 147, 68, .2);
    padding: 4px 12px;
    border-radius: 20px;
    font-weight: 700;
}

.card-badges {
    display: flex;
    gap: 5px;
}

.cb {
    font-size: 10px;
    padding: 3px 8px;
    border-radius: 10px;
    font-weight: 700;
}

.cb-v {
    background: rgba(123, 77, 255, .08);
    color: var(--violet);
    border: 1px solid rgba(123, 77, 255, .14);
}

.cb-o {
    background: rgba(46, 125, 50, .08);
    color: #2e7d32;
    border: 1px solid rgba(46, 125, 50, .14);
}

/* ============================================================
   COMPARE BAR
   ============================================================ */
.cmp-bar {
    position: fixed;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(22, 14, 38, .93);
    backdrop-filter: blur(20px);
    color: #fff;
    padding: 14px 22px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 16px;
    z-index: 500;
    font-size: 13px;
    border: 1px solid rgba(255, 255, 255, .1);
    box-shadow: 0 20px 60px rgba(0, 0, 0, .3);
    opacity: 0;
    pointer-events: none;
    transition: opacity .4s, bottom .4s;
}

.cmp-bar.show {
    opacity: 1;
    pointer-events: auto;
}

.cmp-thumbs {
    display: flex;
    gap: 8px;
}

.cmp-th {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    overflow: hidden;
    border: 1.5px solid rgba(255, 255, 255, .2);
}

.cmp-th img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ============================================================
   FOOTER
   ============================================================ */
footer {
    background: var(--bg2);
    color: var(--text-dim);
    padding-top: 80px;
    border-top: 1px solid var(--border);
}

.foot-grid {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 32px 50px;
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr 1.3fr;
    gap: 40px;
    border-bottom: 1px solid var(--border);
}

.foot-grid h5 {
    color: var(--gold);
    font-size: 12px;
    letter-spacing: 2px;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.foot-grid ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
    font-size: 13.5px;
}

.foot-grid ul a:hover {
    color: var(--gold);
}

.foot-social {
    display: flex;
    gap: 10px;
    margin-top: 20px;
}

.foot-social a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    transition: .3s;
}

.foot-social a:hover {
    background: var(--grad-1);
    color: var(--bg);
    border-color: transparent;
}

.newsletter-form {
    display: flex;
    margin-top: 18px;
    border-radius: 30px;
    overflow: hidden;
    border: 1px solid var(--border);
    background: var(--surface);
}

.newsletter-form input {
    flex: 1;
    background: transparent;
    border: none;
    padding: 0 18px;
    color: var(--text);
    font-size: 13px;
}

.newsletter-form button {
    background: var(--grad-1);
    color: var(--bg);
    padding: 0 22px;
    font-weight: 800;
    font-size: 13px;
}

.foot-bottom {
    max-width: 1280px;
    margin: 0 auto;
    padding: 26px 32px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 12px;
    flex-wrap: wrap;
    gap: 10px;
}

.foot-bottom .links {
    display: flex;
    gap: 18px;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media(max-width: 1050px) {
    .hero .wrap {
        grid-template-columns: 1fr;
    }

    .hero-visual {
        height: 340px;
        order: -1;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .f-row {
        grid-template-columns: 1fr;
    }

    .quick-inner {
        grid-template-columns: repeat(2, 1fr);
    }

    .quick-item:nth-child(2)::after {
        display: none;
    }

    .story {
        grid-template-columns: 1fr;
    }

    .story-imgs {
        height: 300px;
        order: -1;
    }

    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .cert-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .labs {
        grid-template-columns: 1fr;
        margin: 0 20px 60px;
    }

    .labs-img {
        padding: 0 48px 48px;
    }

    .mission-card {
        grid-template-columns: 1fr;
        padding: 40px;
    }

    .product-detail {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .related-row {
        grid-template-columns: repeat(2, 1fr);
    }

    .prod-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .foot-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media(max-width: 740px) {
    .nav-links {
        display: none;
    }

    .hero h1 {
        font-size: clamp(32px, 5vw, 48px);
    }

    .hero-stats {
        flex-wrap: wrap;
        gap: 16px;
    }

    .hero-stats div {
        padding-inline-end: 16px;
        margin-inline-end: 16px;
    }

    .cat-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .prod-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .serum-row {
        grid-template-columns: repeat(2, 1fr);
    }

    .about-grid {
        grid-template-columns: 1fr;
    }

    .testi-grid {
        grid-template-columns: 1fr;
    }

    .stats-inner {
        grid-template-columns: repeat(2, 1fr);
    }

    .quick-inner {
        grid-template-columns: repeat(2, 1fr);
    }

    .values-grid,
    .team-grid,
    .cert-grid {
        grid-template-columns: 1fr;
    }

    .labs-content {
        padding: 36px 28px;
    }

    .labs-img {
        display: none;
    }

    .mission-card {
        padding: 28px 20px;
    }

    .form-card {
        padding: 30px 24px;
    }

    .foot-grid {
        grid-template-columns: 1fr;
    }

    .related-row {
        grid-template-columns: 1fr 1fr;
    }

    .pd-facts {
        grid-template-columns: 1fr;
    }

    .hero .wrap {
        padding: 20px 20px 0;
    }

    .wrap {
        padding: 0 20px;
    }

    section {
        padding: 60px 0;
    }

    .hero-visual {
        height: 280px;
    }

    .float-card.f1 {
        top: -10px;
        inset-inline-start: -20px;
    }

    .float-card.f2 {
        bottom: -10px;
        inset-inline-end: -20px;
    }

    .about-img {
        height: 340px;
    }

    .brand-banner {
        min-height: 240px;
    }

    .brand-banner .content {
        padding: 24px;
    }

    .cta-banner {
        padding: 40px 24px;
    }
}

@media(max-width: 480px) {
    .cat-grid {
        grid-template-columns: 1fr 1fr;
    }

    .prod-grid {
        grid-template-columns: 1fr 1fr;
    }

    .serum-row {
        grid-template-columns: 1fr 1fr;
    }

    .prod-card .prod-name {
        font-size: 13px;
        min-height: 32px;
    }

    .prod-card .prod-body {
        padding: 12px 14px;
    }

    .card .card-name {
        font-size: 13px;
    }

    .hero .float-card {
        padding: 10px 14px;
    }

    .hero .float-card .dot {
        width: 28px;
        height: 28px;
        font-size: 13px;
    }

    .float-card b {
        font-size: 11px;
    }

    .float-card span {
        font-size: 9px;
    }

    .btn-gold,
    .btn-outline {
        font-size: 12px;
        padding: 10px 18px;
    }

    .section-head h2 {
        font-size: 22px;
    }

    .gallery-main {
        height: 300px;
    }

    .gallery-thumbs .thumb {
        width: 60px;
        height: 60px;
    }

    .pd-title {
        font-size: 24px;
    }

    .related-row {
        grid-template-columns: 1fr 1fr;
    }

    .hero .wrap {
        padding: 16px 16px 0;
    }

    .wrap {
        padding: 0 16px;
    }
}

/* ============================================================
   FLOVIO & BEAUTE REINE PAGES
   ============================================================ */
#flovio,
#beaute-reine {
    display: none;
    padding-top: 40px;
}

#flovio .hero,
#beaute-reine .hero {
    padding: 10px 32px 40px;
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    flex-wrap: wrap;
    gap: 20px;
    min-height: 7vh;
}

#flovio .hero .hero-left,
#beaute-reine .hero .hero-left {
    max-width: 600px;
}

#flovio .hero .hero-left .eye,
#beaute-reine .hero .hero-left .eye {
    color: var(--gold);
    font-size: 12px;
    letter-spacing: 3px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 14px;
    display: flex;
    align-items: center;
    gap: 10px;
}

#flovio .hero .hero-left .eye::before,
#beaute-reine .hero .hero-left .eye::before {
    content: '';
    width: 30px;
    height: 1px;
    background: var(--gold);
}

#flovio .hero h1,
#beaute-reine .hero h1 {
    font-family: var(--font-display);
    font-size: clamp(36px, 4.5vw, 56px);
    margin-bottom: 18px;
}

#flovio .hero h1 em,
#beaute-reine .hero h1 em {
    font-style: normal;
    background: var(--grad-1);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

#flovio .hero p,
#beaute-reine .hero p {
    color: var(--text-dim);
    font-size: 16px;
    line-height: 1.9;
    max-width: 500px;
}

#flovio .hero-stats,
#beaute-reine .hero-stats {
    display: flex;
    gap: 30px;
    margin-top: 30px;
}

#flovio .hero-stats .st,
#beaute-reine .hero-stats .st {
    text-align: center;
        padding-inline-end: 0px;
            margin-inline-end: 0px;
            border-inline-end: 0px solid var(--border);
}

#flovio .hero-stats .st b,
#beaute-reine .hero-stats .st b {
    display: block;
    font-family: var(--font-display);
    font-size: 32px;
    background: var(--grad-1);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

#flovio .hero-stats .st span,
#beaute-reine .hero-stats .st span {
    font-size: 12px;
    color: var(--text-dim);
}

#flovio .hero-stats .div,
#beaute-reine .hero-stats .div {
    width: 1px;
    background: var(--border);
            padding-inline-end: 0px;
            margin-inline-end: 0px;
            border-inline-end: 0px solid var(--border);
}

/* Filter Bar */
#flovio .filter-wrap,
#beaute-reine .filter-wrap {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 32px 28px;
}

#flovio .filter-bar,
#beaute-reine .filter-bar {
    background: rgba(255, 255, 255, .7);
    backdrop-filter: blur(16px);
    border: 1px solid var(--border);
    border-radius: 18px;
    padding: 16px 20px;
    display: flex;
    gap: 10px;
    align-items: center;
    flex-wrap: wrap;
}

#flovio .filter-bar .chip,
#beaute-reine .filter-bar .chip {
    padding: 8px 18px;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 600;
    border: 1.5px solid var(--border);
    background: transparent;
    color: var(--text-dim);
    cursor: pointer;
    transition: .2s;
    font-family: inherit;
}

#flovio .filter-bar .chip:hover,
#beaute-reine .filter-bar .chip:hover {
    border-color: var(--gold);
    color: var(--gold);
}

#flovio .filter-bar .chip.on,
#beaute-reine .filter-bar .chip.on {
    background: var(--grad-1);
    color: #fff;
    border-color: transparent;
    box-shadow: 0 6px 20px -6px rgba(188, 147, 68, .5);
}

#flovio .filter-bar .chip .dot,
#beaute-reine .filter-bar .chip .dot {
    display: inline-block;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    margin-left: 6px;
}

#flovio .filter-bar .sort-sel,
#beaute-reine .filter-bar .sort-sel {
    border: 1.5px solid var(--border);
    background: transparent;
    border-radius: 20px;
    padding: 8px 16px;
    font-size: 13px;
    font-family: inherit;
    color: var(--text);
    cursor: pointer;
    margin-right: auto;
}

/* Grid */
#flovio .grid-wrap,
#beaute-reine .grid-wrap {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 32px 80px;
}

#flovio .prod-grid,
#beaute-reine .prod-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
}

/* Card Styles for Flovio & Beaute Reine */
#flovio .card,
#beaute-reine .card {
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid var(--border);
    background: #fff;
    cursor: pointer;
    transition: transform .45s var(--ease), box-shadow .45s, border-color .45s;
}

#flovio .card:hover,
#beaute-reine .card:hover {
    transform: translateY(-10px);
    box-shadow: 0 32px 64px -24px rgba(123, 77, 255, .22);
    border-color: rgba(188, 147, 68, .35);
}

#flovio .card .card-img,
#beaute-reine .card .card-img {
    position: relative;
    height: 210px;
    overflow: hidden;
}

#flovio .card .card-img img,
#beaute-reine .card .card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .7s var(--ease);
}

#flovio .card:hover .card-img img,
#beaute-reine .card:hover .card-img img {
    transform: scale(1.08);
}

#flovio .card .card-img::after,
#beaute-reine .card .card-img::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 40%, rgba(20, 10, 36, .65));
    transition: opacity .4s;
}

#flovio .card:hover .card-img::after,
#beaute-reine .card:hover .card-img::after {
    opacity: .85;
}

#flovio .card .badge-tag,
#beaute-reine .card .badge-tag {
    position: absolute;
    top: 12px;
    inset-inline-start: 12px;
    z-index: 2;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 10.5px;
    font-weight: 800;
    color: #fff;
}

#flovio .card .badge-tag.best,
#beaute-reine .card .badge-tag.best {
    background: linear-gradient(120deg, #bc9344, #f0c14b);
}

#flovio .card .badge-tag.new-p,
#beaute-reine .card .badge-tag.new-p {
    background: linear-gradient(120deg, #7c4dff, #9d7bff);
}

#flovio .card .badge-tag.sale,
#beaute-reine .card .badge-tag.sale {
    background: linear-gradient(120deg, #d85a30, #f0774b);
}

#flovio .card .badge-org,
#beaute-reine .card .badge-org {
    position: absolute;
    top: 12px;
    inset-inline-end: 12px;
    z-index: 2;
    background: rgba(255, 255, 255, .82);
    backdrop-filter: blur(6px);
    border: 1px solid rgba(255, 255, 255, .3);
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
}

#flovio .card .card-body,
#beaute-reine .card .card-body {
    padding: 16px 18px 18px;
}

#flovio .card .card-cat,
#beaute-reine .card .card-cat {
    font-size: 10.5px;
    color: var(--text-dim);
    text-transform: uppercase;
    letter-spacing: 1.2px;
    margin-bottom: 6px;
}

#flovio .card .card-name,
#beaute-reine .card .card-name {
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 8px;
    line-height: 1.4;
}

#flovio .card .card-row,
#beaute-reine .card .card-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 10px;
}

#flovio .card .card-feat,
#beaute-reine .card .card-feat {
    font-size: 11px;
    color: var(--gold);
    background: rgba(188, 147, 68, .1);
    border: 1px solid rgba(188, 147, 68, .2);
    padding: 4px 12px;
    border-radius: 20px;
    font-weight: 700;
}

#flovio .card .card-badges,
#beaute-reine .card .card-badges {
    display: flex;
    gap: 5px;
}

#flovio .card .cb,
#beaute-reine .card .cb {
    font-size: 10px;
    padding: 3px 8px;
    border-radius: 10px;
    font-weight: 700;
}

#flovio .card .cb-v,
#beaute-reine .card .cb-v {
    background: rgba(123, 77, 255, .08);
    color: var(--violet);
    border: 1px solid rgba(123, 77, 255, .14);
}

#flovio .card .cb-o,
#beaute-reine .card .cb-o {
    background: rgba(46, 125, 50, .08);
    color: #2e7d32;
    border: 1px solid rgba(46, 125, 50, .14);
}

#flovio .card .card-overlay,
#beaute-reine .card .card-overlay {
    position: absolute;
    bottom: 0;
    inset-inline: 0;
    padding: 14px 16px;
    transform: translateY(6px);
    opacity: 0;
    transition: opacity .4s var(--ease), transform .4s var(--ease);
}

#flovio .card:hover .card-overlay,
#beaute-reine .card:hover .card-overlay {
    opacity: 1;
    transform: translateY(0);
}

#flovio .card .card-overlay .desc,
#beaute-reine .card .card-overlay .desc {
    color: rgba(255, 255, 255, .88);
    font-size: 12px;
    line-height: 1.75;
    margin-bottom: 10px;
}

#flovio .card .card-overlay .ov-btn,
#beaute-reine .card .card-overlay .ov-btn {
    background: rgba(255, 255, 255, .15);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, .3);
    color: #fff;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    width: 100%;
    transition: .2s;
}

#flovio .card .card-overlay .ov-btn:hover,
#beaute-reine .card .card-overlay .ov-btn:hover {
    background: rgba(255, 255, 255, .25);
}

/* Stars in cards */
#flovio .card .stars,
#beaute-reine .card .stars {
    color: var(--gold);
    font-size: 11px;
    letter-spacing: 1px;
}

/* ============================================================
   RESPONSIVE for Flovio & Beaute Reine
   ============================================================ */
@media(max-width: 980px) {

    #flovio .prod-grid,
    #beaute-reine .prod-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    #flovio .filter-bar,
    #beaute-reine .filter-bar {
        flex-wrap: wrap;
        gap: 8px;
    }

    #flovio .filter-bar .sort-sel,
    #beaute-reine .filter-bar .sort-sel {
        margin-right: 0;
        width: 100%;
    }
}

@media(max-width: 540px) {

    #flovio .prod-grid,
    #beaute-reine .prod-grid {
        grid-template-columns: 1fr 1fr;
    }

    #flovio .hero-stats,
    #beaute-reine .hero-stats {
        flex-wrap: wrap;
        gap: 16px;
    }

    #flovio .hero-stats .div,
    #beaute-reine .hero-stats .div {
        display: none;
    }
}

/* ============================================================
   LANGUAGE SWITCH - NEW STYLES
   ============================================================ */
.lang-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 6px 12px 6px 10px;
    border-radius: 30px;
    transition: background .25s;
    color: var(--text-dim);
    border: 1px solid transparent;
    background: transparent;
    font-family: inherit;
    font-size: 13px;
}

.lang-btn:hover {
    background: var(--surface);
    border-color: var(--border);
}

.lang-flag-img {
    width: 22px;
    height: 16px;
    object-fit: cover;
    border-radius: 3px;
    flex-shrink: 0;
}

.lang-caret {
    font-size: 10px;
    transition: transform .3s var(--ease);
    opacity: .6;
}

.lang-switch.open .lang-caret {
    transform: rotate(180deg);
}

.lang-menu {
    position: absolute;
    top: calc(100% + 10px);
    inset-inline-start: 0;
    background: rgba(255, 255, 255, .98);
    backdrop-filter: blur(20px);
    color: var(--text);
    width: 200px;
    max-height: 0;
    overflow: hidden;
    border-radius: 14px;
    border: 1px solid var(--border);
    box-shadow: var(--shadow-glow);
    z-index: 200;
    opacity: 0;
    transition: max-height .4s var(--ease), opacity .3s var(--ease);
}

.lang-switch.open .lang-menu {
    max-height: 480px;
    opacity: 1;
    overflow-y: auto;
}

.lang-menu ul {
    list-style: none;
    padding: 6px 0;
}

.lang-menu li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 14px;
    font-size: 13px;
    cursor: pointer;
    transition: background .2s;
}

.lang-menu li:hover {
    background: var(--surface-2);
}

.lang-menu li.active {
    background: rgba(188, 147, 68, .1);
    color: var(--gold);
    font-weight: 700;
}

.lang-menu li .lang-flag {
    font-size: 18px;
}

.lang-menu li .native {
    color: var(--text-dim);
    font-size: 11px;
    margin-inline-start: auto;
}

/* Divider */
.lang-divider {
    height: 1px;
    background: var(--border);
    margin: 4px 14px;
}

/* Extra language links */
.lang-extra {
    padding: 4px 0;
}

.lang-link {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 7px 14px;
    font-size: 13px;
    color: var(--text-dim);
    text-decoration: none;
    transition: background .2s;
    border-radius: 4px;
}

.lang-link:hover {
    background: var(--surface-2);
    color: var(--text);
}

.lang-link img {
    width: 22px;
    height: 16px;
    object-fit: cover;
    border-radius: 3px;
    flex-shrink: 0;
}

.lang-note {
    font-size: 10.5px;
    color: var(--text-dim);
    padding: 10px 14px;
    border-top: 1px solid var(--border);
    opacity: .7;
}

/* ============================================================
   LANGUAGE SWITCH STYLES
   ============================================================ */
.lang-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 6px 12px 6px 10px;
    border-radius: 30px;
    transition: background .25s;
    color: var(--text-dim);
    border: 1px solid transparent;
    background: transparent;
    font-family: inherit;
    font-size: 13px;
    cursor: pointer;
}

.lang-btn:hover {
    background: var(--surface);
    border-color: var(--border);
}

.lang-flag-img {
    width: 22px;
    height: 16px;
    object-fit: cover;
    border-radius: 3px;
    flex-shrink: 0;
}

.lang-caret {
    font-size: 10px;
    transition: transform .3s var(--ease);
    opacity: .6;
}

.lang-switch.open .lang-caret {
    transform: rotate(180deg);
}

.lang-menu {
    position: absolute;
    top: calc(100% + 10px);
    inset-inline-start: 0;
    background: rgba(255, 255, 255, .98);
    backdrop-filter: blur(20px);
    color: var(--text);
    width: 200px;
    max-height: 0;
    overflow: hidden;
    border-radius: 14px;
    border: 1px solid var(--border);
    box-shadow: var(--shadow-glow);
    z-index: 200;
    opacity: 0;
    transition: max-height .4s var(--ease), opacity .3s var(--ease);
}

.lang-switch.open .lang-menu {
    max-height: 480px;
    opacity: 1;
    overflow-y: auto;
}

.lang-menu ul {
    list-style: none;
    padding: 6px 0;
    margin: 0;
}

.lang-menu li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 14px;
    font-size: 13px;
    cursor: pointer;
    transition: background .2s;
}

.lang-menu li:hover {
    background: var(--surface-2);
}

.lang-menu li.active {
    background: rgba(188, 147, 68, .1);
    color: var(--gold);
    font-weight: 700;
}

.lang-menu li .lang-flag {
    font-size: 18px;
}

.lang-menu li .native {
    color: var(--text-dim);
    font-size: 11px;
    margin-inline-start: auto;
}

.lang-divider {
    height: 1px;
    background: var(--border);
    margin: 4px 14px;
}

.lang-extra {
    padding: 4px 0;
}

.lang-link {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 7px 14px;
    font-size: 13px;
    color: var(--text-dim);
    text-decoration: none;
    transition: background .2s;
    border-radius: 4px;
}

.lang-link:hover {
    background: var(--surface-2);
    color: var(--text);
}

.lang-link img {
    width: 22px;
    height: 16px;
    object-fit: cover;
    border-radius: 3px;
    flex-shrink: 0;
}

.lang-note {
    font-size: 10.5px;
    color: var(--text-dim);
    padding: 10px 14px;
    border-top: 1px solid var(--border);
    opacity: .7;
}

/* ============================================================
   AGENTY (نمایندگی) PAGE - COMPLETE
   ============================================================ */
#agenty {
    display: none;
    padding-top: 0;
}

/* Hero */
.agenty-hero {
    position: relative;
    min-height: 60vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: linear-gradient(135deg, #0d0618 0%, #1a0d35 40%, #2d1464 70%, #0d0618 100%);
    padding: 80px 0 60px;
}

.agenty-hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    opacity: .08;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='200' height='200' filter='url(%23n)'/%3E%3C/svg%3E");
}

.agenty-hero .wrap {
    position: relative;
    z-index: 2;
    width: 100%;
}

.agenty-hero-content {
    max-width: 700px;
}

.agenty-eyebrow {
    color: var(--gold-2);
    font-size: 12px;
    letter-spacing: 3px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 18px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.agenty-eyebrow::before {
    content: '';
    width: 30px;
    height: 1px;
    background: var(--gold-2);
}

.agenty-hero h1 {
    font-family: var(--font-display);
    font-size: clamp(36px, 5vw, 60px);
    color: #fff;
    line-height: 1.2;
    margin-bottom: 8px;
}

.agenty-hero h1 em {
    font-style: normal;
    background: linear-gradient(120deg, #f0c14b, #e8a830);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.agenty-hero-lead {
    font-size: 18px;
    color: var(--gold-2);
    margin-bottom: 18px;
    font-weight: 600;
}

.agenty-hero-lead strong {
    color: #fff;
}

.agenty-hero p {
    color: rgba(255, 255, 255, .72);
    font-size: 16px;
    line-height: 1.9;
    margin-bottom: 28px;
    max-width: 580px;
}

.agenty-hero-badges {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 30px;
}

.agenty-badge {
    background: rgba(255, 255, 255, .08);
    border: 1px solid rgba(255, 255, 255, .1);
    color: rgba(255, 255, 255, .8);
    padding: 6px 16px;
    border-radius: 30px;
    font-size: 13px;
}

.agenty-hero-ctas {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

/* Target */
.agenty-target {
    padding: 100px 0;
    background: var(--bg2);
}

.agenty-target-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.agenty-target-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 30px 24px;
    text-align: center;
    transition: transform .4s var(--ease), box-shadow .4s;
}

.agenty-target-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 48px -20px rgba(123, 77, 255, .2);
}

.agenty-target-icon {
    font-size: 36px;
    display: block;
    margin-bottom: 14px;
}

.agenty-target-card h3 {
    font-family: var(--font-display);
    font-size: 17px;
    margin-bottom: 8px;
}

.agenty-target-card p {
    color: var(--text-dim);
    font-size: 13px;
    line-height: 1.7;
}

/* Benefits */
.agenty-benefits {
    padding: 100px 0;
}

.agenty-benefits-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
}

.agenty-benefit-card {
    background: var(--bg2);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 30px 24px;
    transition: transform .4s var(--ease), box-shadow .4s;
}

.agenty-benefit-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 48px -20px rgba(123, 77, 255, .15);
}

.agenty-benefit-icon {
    font-size: 32px;
    margin-bottom: 14px;
    display: block;
}

.agenty-benefit-card h3 {
    font-family: var(--font-display);
    font-size: 17px;
    margin-bottom: 8px;
}

.agenty-benefit-card p {
    color: var(--text-dim);
    font-size: 13px;
    line-height: 1.8;
}

.agenty-benefit-card p strong {
    color: var(--text);
}

/* Requirements */
.agenty-requirements {
    background: var(--bg2);
    padding: 100px 0;
}

.agenty-requirements-grid {
    display: grid;
    grid-template-columns: 1.2fr .8fr;
    gap: 60px;
    align-items: start;
}

.agenty-requirements-eyebrow {
    color: var(--gold);
    font-size: 12px;
    letter-spacing: 3px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 14px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.agenty-requirements-eyebrow::before {
    content: '';
    width: 24px;
    height: 1px;
    background: var(--gold);
}

.agenty-requirements-content h2 {
    font-family: var(--font-display);
    font-size: clamp(28px, 3.5vw, 40px);
    margin-bottom: 28px;
}

.agenty-requirements-content h2 em {
    font-style: normal;
    background: var(--grad-1);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.agenty-requirements-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.agenty-requirements-list li {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.agenty-req-icon {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: rgba(188, 147, 68, .15);
    color: var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    flex-shrink: 0;
    font-size: 14px;
}

.agenty-requirements-list li strong {
    display: block;
    font-size: 14.5px;
    margin-bottom: 2px;
}

.agenty-requirements-list li span {
    font-size: 13px;
    color: var(--text-dim);
    line-height: 1.7;
}

.agenty-requirements-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 32px 28px;
    box-shadow: var(--shadow-glow);
}

.agenty-requirements-badge {
    font-size: 42px;
    margin-bottom: 12px;
    display: block;
}

.agenty-requirements-card h3 {
    font-family: var(--font-display);
    font-size: 20px;
    margin-bottom: 16px;
}

.agenty-requirements-card ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.agenty-requirements-card ul li {
    padding: 10px 14px;
    border-radius: 10px;
    background: var(--bg2);
    font-size: 13px;
    color: var(--text-dim);
}

/* Steps */
.agenty-how {
    padding: 100px 0;
}

.agenty-steps {
    max-width: 800px;
    margin: 0 auto;
}

.agenty-step {
    display: flex;
    gap: 24px;
    padding: 24px 0;
    border-bottom: 1px solid var(--border);
    align-items: flex-start;
}

.agenty-step:last-child {
    border-bottom: none;
}

.agenty-step-num {
    font-family: var(--font-display);
    font-size: 32px;
    background: var(--grad-1);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    min-width: 60px;
    line-height: 1;
}

.agenty-step-content h3 {
    font-family: var(--font-display);
    font-size: 20px;
    margin-bottom: 4px;
}

.agenty-step-content p {
    color: var(--text-dim);
    font-size: 14.5px;
    line-height: 1.8;
}

.agenty-step-content p strong {
    color: var(--text);
}

/* Form */
.agenty-form-section {
    background: var(--bg2);
    padding: 100px 0;
}

.agenty-form-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 32px;
    padding: 56px 48px;
    box-shadow: var(--shadow-glow);
    max-width: 780px;
    margin: 0 auto;
}

.agenty-form-header {
    text-align: center;
    margin-bottom: 40px;
}

.agenty-form-eyebrow {
    color: var(--gold);
    font-size: 12px;
    letter-spacing: 3px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 14px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.agenty-form-eyebrow::before,
.agenty-form-eyebrow::after {
    content: '';
    width: 24px;
    height: 1px;
    background: var(--gold);
}

.agenty-form-header h2 {
    font-family: var(--font-display);
    font-size: clamp(28px, 3.5vw, 40px);
    margin-bottom: 10px;
}

.agenty-form-header h2 em {
    font-style: normal;
    background: var(--grad-1);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.agenty-form-header p {
    color: var(--text-dim);
    font-size: 14.5px;
    max-width: 480px;
    margin: 0 auto;
    line-height: 1.8;
}

.agenty-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}

.agenty-form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 18px;
}

.agenty-form-group label {
    font-size: 13px;
    font-weight: 700;
    color: var(--text);
}

.agenty-form-group .required {
    color: #e74c3c;
}

.agenty-form-group input,
.agenty-form-group select,
.agenty-form-group textarea {
    border: 1.5px solid var(--border);
    background: var(--surface);
    border-radius: 14px;
    padding: 13px 16px;
    font-size: 14px;
    color: var(--text);
    transition: border-color .25s, background .25s;
    outline: none;
    width: 100%;
    font-family: inherit;
}

.agenty-form-group input:focus,
.agenty-form-group select:focus,
.agenty-form-group textarea:focus {
    border-color: var(--gold);
    background: #fff;
}

.agenty-form-group textarea {
    resize: vertical;
    min-height: 100px;
    line-height: 1.8;
}

.agenty-form-check {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 10px 0 20px;
}

.agenty-form-check input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: var(--gold);
    cursor: pointer;
}

.agenty-form-check label {
    font-size: 13px;
    color: var(--text-dim);
    cursor: pointer;
}

.agenty-form-check .required {
    color: #e74c3c;
}

.agenty-form-submit {
    display: flex;
    align-items: center;
    gap: 18px;
    flex-wrap: wrap;
}

.agenty-form-note {
    font-size: 12px;
    color: var(--text-dim);
}

.agenty-form-success {
    display: none;
    align-items: center;
    gap: 12px;
    background: rgba(63, 178, 127, .1);
    border: 1px solid rgba(63, 178, 127, .3);
    color: #2c8c63;
    padding: 14px 20px;
    border-radius: 16px;
    font-size: 13.5px;
    font-weight: 600;
    margin-top: 18px;
}

.agenty-form-success.show {
    display: flex;
}

/* Contact CTA */
.agenty-contact {
    padding: 100px 0;
}

.agenty-contact-box {
    background: linear-gradient(135deg, #0d0618 0%, #1a0d35 40%, #2d1464 70%, #0d0618 100%);
    border-radius: 32px;
    padding: 56px 48px;
    color: #fff;
    position: relative;
    overflow: hidden;
}

.agenty-contact-box::before {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: rgba(188, 147, 68, .08);
    top: -200px;
    inset-inline-end: -100px;
}

.agenty-contact-box::after {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: rgba(123, 77, 255, .08);
    bottom: -150px;
    inset-inline-start: -80px;
}

.agenty-contact-content {
    position: relative;
    z-index: 2;
    max-width: 680px;
}

.agenty-contact-eyebrow {
    color: var(--gold-2);
    font-size: 12px;
    letter-spacing: 3px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 14px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.agenty-contact-eyebrow::before {
    content: '';
    width: 24px;
    height: 1px;
    background: var(--gold-2);
}

.agenty-contact-box h2 {
    font-family: var(--font-display);
    font-size: clamp(32px, 4vw, 48px);
    margin-bottom: 16px;
}

.agenty-contact-box h2 em {
    font-style: normal;
    color: var(--gold-2);
}

.agenty-contact-box p {
    color: rgba(255, 255, 255, .78);
    font-size: 16px;
    line-height: 1.9;
    margin-bottom: 30px;
    max-width: 540px;
}

.agenty-contact-info {
    display: flex;
    gap: 30px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.agenty-contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.agenty-contact-icon {
    font-size: 24px;
}

.agenty-contact-item strong {
    display: block;
    font-size: 12px;
    color: rgba(255, 255, 255, .5);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.agenty-contact-item a {
    font-size: 16px;
    color: var(--gold-2);
    font-weight: 700;
    text-decoration: none;
}

.agenty-contact-item a:hover {
    color: #fff;
}

.agenty-contact-btns {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

.agenty-contact-box .btn-gold {
    background: var(--gold);
    color: #fff;
}

.agenty-contact-box .btn-outline {
    border-color: rgba(255, 255, 255, .3);
    color: rgba(255, 255, 255, .8);
}

.agenty-contact-box .btn-outline:hover {
    border-color: #fff;
    color: #fff;
    background: rgba(255, 255, 255, .08);
}

.agenty-contact-tagline {
    position: relative;
    z-index: 2;
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, .08);
}

.agenty-contact-tagline p {
    font-size: 15px;
    color: rgba(255, 255, 255, .7);
    margin-bottom: 4px;
    max-width: 100%;
}

.agenty-contact-tagline span {
    font-size: 13px;
    color: var(--gold-2);
    letter-spacing: 2px;
}

/* ============================================================
   RESPONSIVE - AGENTY
   ============================================================ */
@media(max-width: 1050px) {
    .agenty-target-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .agenty-benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .agenty-requirements-grid {
        grid-template-columns: 1fr;
    }
}

@media(max-width: 740px) {
    .agenty-hero {
        min-height: 40vh;
        padding: 60px 0 40px;
    }

    .agenty-hero-content {
        max-width: 100%;
    }

    .agenty-target-grid {
        grid-template-columns: 1fr;
    }

    .agenty-benefits-grid {
        grid-template-columns: 1fr;
    }

    .agenty-form-card {
        padding: 32px 20px;
    }

    .agenty-form-row {
        grid-template-columns: 1fr;
    }

    .agenty-contact-box {
        padding: 40px 24px;
    }

    .agenty-step {
        flex-direction: column;
        gap: 12px;
    }

    .agenty-form-submit {
        flex-direction: column;
        align-items: stretch;
    }

    .agenty-contact-info {
        flex-direction: column;
        gap: 16px;
    }

    .agenty-hero-badges {
        gap: 8px;
    }

    .agenty-badge {
        font-size: 11px;
        padding: 4px 12px;
    }

    .agenty-requirements-card {
        padding: 24px 20px;
    }
}

@media(max-width: 480px) {
    .agenty-target-grid {
        grid-template-columns: 1fr;
    }

    .agenty-benefits-grid {
        grid-template-columns: 1fr;
    }

    .agenty-hero-ctas {
        flex-direction: column;
        width: 100%;
    }

    .agenty-hero-ctas .btn-gold,
    .agenty-hero-ctas .btn-outline {
        width: 100%;
        justify-content: center;
    }

    .agenty-contact-btns {
        flex-direction: column;
    }

    .agenty-contact-btns .btn-gold,
    .agenty-contact-btns .btn-outline {
        width: 100%;
        justify-content: center;
    }

    .agenty-form-check {
        align-items: flex-start;
    }

    .agenty-form-check input[type="checkbox"] {
        margin-top: 2px;
    }
}

/* ============================================================
   BRANDS SECTION
   ============================================================ */
.brands-section {
    padding: 100px 0;
    background: var(--bg2);
}

.brands-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.brand-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 36px 32px;
    transition: transform .4s var(--ease), box-shadow .4s;
}

.brand-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 32px 64px -24px rgba(123, 77, 255, .15);
}

.brand-card-icon {
    font-size: 42px;
    margin-bottom: 16px;
    display: block;
}

.brand-card h3 {
    font-family: var(--font-display);
    font-size: 24px;
    margin-bottom: 12px;
}

.brand-card p {
    color: var(--text-dim);
    font-size: 14px;
    line-height: 1.9;
    margin-bottom: 16px;
}

.brand-tags {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.brand-tags span {
    padding: 5px 14px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    background: var(--surface);
    border: 1px solid var(--border);
    color: var(--text-dim);
}

@media(max-width: 740px) {
    .brands-grid {
        grid-template-columns: 1fr;
    }
}

/* ============================================================
   BRANDS SECTION WITH LOGOS
   ============================================================ */
.brands-section {
    padding: 100px 0;
    background: var(--bg2);
}

.brands-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.brand-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 36px 32px;
    transition: transform .4s var(--ease), box-shadow .4s;
    display: flex;
    flex-direction: column;
}

.brand-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 32px 64px -24px rgba(123, 77, 255, .15);
}

.brand-logo-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
    padding: 16px;
    background: var(--bg2);
    border-radius: 16px;
    border: 1px solid var(--border);
    min-height: 120px;
}

.brand-logo-img {
    max-width: 100%;
    max-height: 80px;
    width: auto;
    height: auto;
    object-fit: contain;
    transition: transform .4s var(--ease);
}

.brand-card:hover .brand-logo-img {
    transform: scale(1.05);
}

.brand-card h3 {
    font-family: var(--font-display);
    font-size: 24px;
    margin-bottom: 12px;
    text-align: center;
}

.brand-card p {
    color: var(--text-dim);
    font-size: 14px;
    line-height: 1.9;
    margin-bottom: 16px;
    flex: 1;
}

.brand-tags {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 16px;
    justify-content: center;
}

.brand-tags span {
    padding: 5px 14px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    background: var(--surface);
    border: 1px solid var(--border);
    color: var(--text-dim);
}

.brand-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    font-weight: 700;
    color: var(--gold);
    transition: color .3s, transform .3s;
    align-self: center;
    padding: 8px 16px;
    border-radius: 30px;
    background: rgba(188, 147, 68, .08);
    border: 1px solid rgba(188, 147, 68, .2);
    transition: all .3s var(--ease);
}

.brand-link:hover {
    background: rgba(188, 147, 68, .15);
    transform: translateX(-4px);
    color: var(--gold-2);
}

/* Responsive */
@media(max-width: 740px) {
    .brands-grid {
        grid-template-columns: 1fr;
    }

    .brand-logo-wrapper {
        min-height: 100px;
        padding: 12px;
    }

    .brand-logo-img {
        max-height: 60px;
    }
}

/* ============================================================
   FOOTER - UPDATED
   ============================================================ */
footer {
    background: var(--bg2);
    color: var(--text-dim);
    padding-top: 72px;
    border-top: 1px solid var(--border);
}

.foot-grid {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 32px 50px;
    display: grid;
    grid-template-columns: 1.3fr 1fr 1fr 1.2fr;
    gap: 40px;
    border-bottom: 1px solid var(--border);
}

.foot-grid h5 {
    color: var(--gold);
    font-size: 12px;
    letter-spacing: 2px;
    margin-bottom: 18px;
    text-transform: uppercase;
}

.foot-grid ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
    font-size: 13.5px;
}

.foot-grid ul a {
    transition: color .3s;
}

.foot-grid ul a:hover {
    color: var(--gold);
}

/* ستون اول - لوگو و سوشال */
.foot-social {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 18px;
}

.foot-social a {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: .3s;
    overflow: hidden;
    background: #fff;
}

.foot-social a:hover {
    background: var(--grad-1);
    border-color: transparent;
    transform: translateY(-3px);
}

.foot-social a img {
    width: 18px;
    height: 18px;
    object-fit: contain;
    transition: .3s;
}

.foot-social a:hover img {
    filter: brightness(0) invert(1);
}

/* ستون دوم - تماس */
.contact-info li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 6px 0;
}

.contact-icon {
    font-size: 16px;
    width: 28px;
    text-align: center;
    flex-shrink: 0;
}

.contact-info a {
    color: var(--text-dim);
    transition: color .3s;
    text-decoration: none;
}

.contact-info a:hover {
    color: var(--gold);
}

/* ستون سوم - نصب اپ */
.install-app-wrapper {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 18px;
    padding: 24px 20px;
    text-align: center;
}

.install-icon {
    font-size: 36px;
    margin-bottom: 8px;
}

.install-app-wrapper h5 {
    color: var(--text);
    font-size: 15px;
    letter-spacing: 0;
    text-transform: none;
    margin-bottom: 8px;
}

.install-app-btn {
    background: var(--grad-1);
    color: #fff;
    border: none;
    padding: 12px 24px;
    border-radius: 30px;
    font-weight: 700;
    font-size: 14px;
    font-family: inherit;
    cursor: pointer;
    transition: transform .3s var(--ease), box-shadow .3s;
    width: 100%;
    display: none;
    /* پیش‌فرض مخفی - با جاوااسکریپت نمایش داده می‌شود */
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.install-app-btn.show {
    display: flex;
}

.install-app-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 40px -10px rgba(188, 147, 68, .5);
}

.install-features {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-top: 12px;
    flex-wrap: wrap;
}

.install-features span {
    font-size: 11px;
    color: var(--text-dim);
    padding: 4px 10px;
    border-radius: 12px;
    background: var(--bg2);
    border: 1px solid var(--border);
}

/* فوتر پایین */
.foot-bottom {
    max-width: 1280px;
    margin: 0 auto;
    padding: 26px 32px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 12px;
    flex-wrap: wrap;
    gap: 10px;
}

.foot-bottom .links {
    display: flex;
    gap: 18px;
}

.foot-bottom .links a {
    cursor: pointer;
    transition: color .3s;
}

.foot-bottom .links a:hover {
    color: var(--gold);
}

/* ============================================================
   TOOLTIP / POPUP برای حریم خصوصی و شرایط استفاده
   ============================================================ */
.legal-popup {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, .5);
    backdrop-filter: blur(8px);
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
    animation: fadeIn .3s ease;
}

.legal-popup.show {
    display: flex;
}

.legal-popup-content {
    background: #fff;
    border-radius: 24px;
    max-width: 600px;
    width: 100%;
    max-height: 80vh;
    overflow-y: auto;
    padding: 40px 36px;
    position: relative;
    box-shadow: 0 40px 80px rgba(0, 0, 0, .3);
    animation: slideUp .4s ease;
}

.legal-popup-close {
    position: absolute;
    top: 16px;
    right: 20px;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: var(--text-dim);
    transition: color .3s;
}

.legal-popup-close:hover {
    color: var(--text);
}

.legal-popup h2 {
    font-family: var(--font-display);
    font-size: 28px;
    margin-bottom: 12px;
    color: var(--text);
}

.legal-popup h2 em {
    font-style: normal;
    background: var(--grad-1);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.legal-popup .legal-date {
    font-size: 12px;
    color: var(--text-dim);
    margin-bottom: 20px;
    display: block;
}

.legal-popup p {
    font-size: 14px;
    line-height: 2;
    color: var(--text-dim);
    margin-bottom: 12px;
}

.legal-popup ul {
    list-style: none;
    padding: 0;
    margin: 16px 0;
}

.legal-popup ul li {
    padding: 8px 0 8px 28px;
    position: relative;
    font-size: 14px;
    line-height: 1.8;
    color: var(--text-dim);
    border-bottom: 1px solid var(--border);
}

.legal-popup ul li strong {
    padding-right: 15px;
}

.legal-popup ul li:last-child {
    border-bottom: none;
}

.legal-popup ul li::before {
    content: '✓';
    position: absolute;
    right: 0;
    color: var(--gold);
    font-weight: 700;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes slideUp {
    from {
        transform: translateY(30px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* Responsive */
@media(max-width: 980px) {
    .foot-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media(max-width: 540px) {
    .foot-grid {
        grid-template-columns: 1fr;
    }

    .foot-social {
        justify-content: center;
    }

    .install-features {
        flex-direction: column;
        align-items: center;
        gap: 8px;
    }

    .legal-popup-content {
        padding: 28px 20px;
    }
}

/* ============================================================
   FOOTER - COMPLETE
   ============================================================ */
footer {
    background: var(--bg2);
    color: var(--text-dim);
    padding-top: 72px;
    border-top: 1px solid var(--border);
}

.foot-grid {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 32px 50px;
    display: grid;
    grid-template-columns: 1.3fr 1fr 1fr 1.2fr;
    gap: 40px;
    border-bottom: 1px solid var(--border);
}

.foot-grid h5 {
    color: var(--gold);
    font-size: 12px;
    letter-spacing: 2px;
    margin-bottom: 18px;
    text-transform: uppercase;
}

.foot-grid ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
    font-size: 13.5px;
}

.foot-grid ul a {
    transition: color .3s;
    text-decoration: none;
    color: var(--text-dim);
}

.foot-grid ul a:hover {
    color: var(--gold);
}

/* ============================================================
   ستون اول - سوشال مدیا
   ============================================================ */
.foot-social {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 18px;
}

.foot-social a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all .3s var(--ease);
    overflow: hidden;
    background: #fff;
    flex-shrink: 0;
}

.foot-social a:hover {
    background: var(--grad-1);
    border-color: transparent;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px -8px rgba(123, 77, 255, .3);
}

.foot-social a img {
    width: 18px;
    height: 18px;
    object-fit: contain;
    transition: .3s;
}

.foot-social a:hover img {
    filter: brightness(0) invert(1);
}

/* ============================================================
   ستون دوم - تماس با ما
   ============================================================ */
.contact-info li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 6px 0;
}

.contact-icon {
    font-size: 16px;
    width: 28px;
    text-align: center;
    flex-shrink: 0;
}

.contact-info a {
    color: var(--text-dim);
    transition: color .3s;
    text-decoration: none;
}

.contact-info a:hover {
    color: var(--gold);
}

/* ============================================================
   ستون سوم - نصب اپ (سایز یکسان با بقیه)
   ============================================================ */
.install-app-col {
    display: flex;
    flex-direction: column;
}

.install-app-col h5 {
    margin-bottom: 18px;
}

.install-app-wrapper {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 18px;
    padding: 20px 18px;
    text-align: center;
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.install-icon {
    font-size: 32px;
    margin-bottom: 6px;
}

.install-app-wrapper p {
    font-size: 13px;
    color: var(--text-dim);
    line-height: 1.8;
    margin-bottom: 14px;
    text-align: center;
}

.install-app-btn {
    background: var(--grad-1);
    color: #fff;
    border: none;
    padding: 10px 20px;
    border-radius: 30px;
    font-weight: 700;
    font-size: 13px;
    font-family: inherit;
    cursor: pointer;
    transition: transform .3s var(--ease), box-shadow .3s;
    width: 100%;
    display: none;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.install-app-btn.show {
    display: flex;
}

.install-app-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 30px -10px rgba(188, 147, 68, .4);
}

.install-features {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 12px;
    flex-wrap: wrap;
}

.install-features span {
    font-size: 10.5px;
    color: var(--text-dim);
    padding: 3px 10px;
    border-radius: 12px;
    background: var(--bg2);
    border: 1px solid var(--border);
}

/* ============================================================
   فوتر پایین
   ============================================================ */
.foot-bottom {
    max-width: 1280px;
    margin: 0 auto;
    padding: 26px 32px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 12px;
    flex-wrap: wrap;
    gap: 10px;
}

.foot-bottom .links {
    display: flex;
    gap: 18px;
}

.foot-bottom .links a {
    cursor: pointer;
    transition: color .3s;
    color: var(--text-dim);
    text-decoration: none;
}

.foot-bottom .links a:hover {
    color: var(--gold);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media(max-width: 1050px) {
    .foot-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

    .install-app-col {
        grid-column: span 2;
    }

    .install-app-wrapper {
        max-width: 400px;
        margin: 0 auto;
        width: 100%;
    }
}

@media(max-width: 640px) {
    .foot-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .install-app-col {
        grid-column: span 1;
    }

    .install-app-wrapper {
        max-width: 100%;
    }

    .foot-social {
        justify-content: center;
    }

    .foot-bottom {
        flex-direction: column;
        text-align: center;
        gap: 12px;
    }

    .foot-bottom .links {
        justify-content: center;
    }

    .install-features {
        flex-direction: column;
        align-items: center;
        gap: 6px;
    }
}

/* ============================================================
   HEADER WITH LOGO
   ============================================================ */
header.site {
    position: sticky;
    top: 0;
    z-index: 4;
    padding: 12px 0;
    background: rgba(255, 255, 255, .55);
    backdrop-filter: blur(18px);
    border-bottom: 1px solid var(--border);
}

.nav-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 32px;
}

.logo-link {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    transition: transform .3s var(--ease);
}

.logo-link:hover {
    transform: scale(1.02);
}

.logo-img {
    height: 42px;
    width: auto;
    object-fit: contain;
    display: block;
}

.logo-text {
    font-family: 'Lalezar', 'Vazirmatn', sans-serif;
    font-size: 24px;
    color: var(--text);
    font-weight: 700;
}

.logo-text span {
    color: var(--gold);
}

.nav-links {
    display: flex;
    gap: 30px;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-dim);
}

.nav-links a {
    position: relative;
    padding: 6px 0;
    transition: color .3s;
    text-decoration: none;
    color: inherit;
}

.nav-links a:hover,
.nav-links a.current {
    color: var(--text);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    inset-inline-start: 0;
    width: 0;
    height: 2px;
    background: var(--grad-1);
    transition: width .35s var(--ease);
}

.nav-links a:hover::after,
.nav-links a.current::after {
    width: 100%;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 10px;
}

.btn-gold {
    background: var(--grad-1);
    color: #fff;
    padding: 10px 24px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: transform .35s var(--ease), box-shadow .35s;
    border: none;
    cursor: pointer;
    font-family: inherit;
    text-decoration: none;
}

.btn-gold:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 40px -10px rgba(188, 147, 68, .5);
}

/* ============================================================
   RESPONSIVE HEADER
   ============================================================ */
@media(max-width: 980px) {
    .nav-links {
        display: none;
    }

    .logo-img {
        height: 34px;
    }

    .logo-text {
        font-size: 20px;
    }
}

@media(max-width: 540px) {
    .nav-row {
        padding: 0 16px;
        height: 64px;
    }

    .logo-img {
        height: 28px;
    }

    .logo-text {
        font-size: 18px;
    }

    .btn-gold {
        padding: 8px 16px;
        font-size: 12px;
    }
}

/* ============================================================
   PRODUCT PAGE - COMPLETE STYLES
   ============================================================ */

/* Product Detail Layout */
.product-detail {
    max-width: 1280px;
    margin: 0 auto;
    padding: 20px 32px 80px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 56px;
    align-items: start;
}

/* Gallery */
.gallery {
    position: sticky;
    top: 100px;
}

.gallery-main {
    position: relative;
    border-radius: 28px;
    overflow: hidden;
    background: var(--bg2);
    border: 1px solid var(--border);
    aspect-ratio: 1/1;
    cursor: zoom-in;
}

.gallery-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .7s var(--ease);
}

.gallery-main:hover img {
    transform: scale(1.05);
}

.gallery-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    background: linear-gradient(120deg, #bc9344, #f0c14b);
    color: #fff;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 800;
    z-index: 2;
}

.gallery-badge.new-p {
    background: linear-gradient(120deg, #7c4dff, #9d7bff);
}

.gallery-zoom {
    position: absolute;
    bottom: 16px;
    left: 16px;
    background: rgba(255, 255, 255, .8);
    backdrop-filter: blur(10px);
    border: 1px solid var(--border);
    border-radius: 50%;
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    transition: .25s;
}

.gallery-zoom:hover {
    background: #fff;
}

.gallery-thumbs {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
    margin-top: 12px;
}

.thumb {
    border-radius: 14px;
    overflow: hidden;
    border: 2px solid var(--border);
    aspect-ratio: 1/1;
    cursor: pointer;
    transition: .3s;
    background: var(--bg2);
}

.thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .4s var(--ease);
}

.thumb:hover img {
    transform: scale(1.08);
}

.thumb.active {
    border-color: var(--gold);
    box-shadow: 0 0 0 2px rgba(188, 147, 68, .25);
}

/* Product Info */
.prod-info {}

.pd-eyebrow {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 14px;
}

.prod-cat-tag {
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold);
    font-weight: 700;
}

.prod-cat-tag::before {
    content: '';
    display: inline-block;
    width: 24px;
    height: 1px;
    background: var(--gold);
    margin-left: 8px;
    vertical-align: middle;
}

.org-badge {
    font-size: 11px;
    padding: 4px 10px;
    border-radius: 20px;
    background: rgba(46, 125, 50, .08);
    color: #2e7d32;
    border: 1px solid rgba(46, 125, 50, .18);
    font-weight: 700;
}

.veg-badge {
    font-size: 11px;
    padding: 4px 10px;
    border-radius: 20px;
    background: rgba(123, 77, 255, .08);
    color: var(--violet);
    border: 1px solid rgba(123, 77, 255, .18);
    font-weight: 700;
}

.pd-title {
    font-family: 'Lalezar', var(--font);
    font-size: clamp(28px, 4vw, 48px);
    line-height: 1.3;
    margin-bottom: 10px;
}

.rating-row {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.rating-row .stars {
    color: var(--gold);
    font-size: 14px;
    letter-spacing: 1.5px;
}

.rating-num {
    font-weight: 700;
    font-size: 14px;
}

.rating-count {
    font-size: 12.5px;
    color: var(--text-dim);
}

.rating-sep {
    width: 1px;
    height: 14px;
    background: var(--border);
}

.sku-text {
    font-size: 12px;
    color: var(--text-dim);
}

/* Price */
.price-block {
    display: flex;
    align-items: flex-end;
    gap: 16px;
    margin-bottom: 24px;
    padding: 20px;
    background: var(--bg2);
    border-radius: 18px;
    border: 1px solid var(--border);
}

.price-now {
    font-family: 'Lalezar', var(--font);
    font-size: 42px;
    background: var(--grad-1);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    line-height: 1;
}

.price-currency {
    font-size: 16px;
    font-weight: 700;
    color: var(--gold);
    margin-bottom: 4px;
}

.price-old {
    font-size: 16px;
    color: var(--text-dim);
    text-decoration: line-through;
    margin-bottom: 4px;
}

.price-discount {
    background: linear-gradient(120deg, #d85a30, #f0774b);
    color: #fff;
    padding: 4px 10px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 800;
    margin-bottom: 6px;
}

.price-note {
    font-size: 11.5px;
    color: var(--text-dim);
    margin-top: 8px;
}

.price-note span {
    color: var(--violet);
    font-weight: 700;
}

/* Variant */
.variant-section {
    margin-bottom: 22px;
}

.variant-label {
    font-size: 12.5px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--text-dim);
    margin-bottom: 10px;
}

.variant-row {
    display: flex;
    gap: 9px;
    flex-wrap: wrap;
}

.variant-btn {
    padding: 8px 18px;
    border-radius: 20px;
    border: 1.5px solid var(--border);
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: .25s;
    color: var(--text-dim);
    background: transparent;
    font-family: inherit;
}

.variant-btn:hover,
.variant-btn.sel {
    border-color: var(--gold);
    color: var(--gold);
    background: rgba(188, 147, 68, .07);
}

/* Cart */
.cart-row {
    display: flex;
    gap: 10px;
    margin-bottom: 28px;
}

.qty-ctrl {
    display: flex;
    align-items: center;
    border: 1.5px solid var(--border);
    border-radius: 30px;
    overflow: hidden;
    background: var(--surface);
}

.qty-ctrl button {
    width: 40px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: var(--text-dim);
    transition: .2s;
}

.qty-ctrl button:hover {
    background: var(--surface-2);
    color: var(--text);
}

.qty-ctrl span {
    min-width: 36px;
    text-align: center;
    font-weight: 700;
    font-size: 15px;
}

.btn-cart {
    flex: 1;
    background: var(--grad-1);
    color: #fff;
    padding: 14px 28px;
    border-radius: 30px;
    font-size: 15px;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    transition: transform .35s var(--ease), box-shadow .35s;
    cursor: pointer;
    font-family: inherit;
    border: none;
}

.btn-cart:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 40px -10px rgba(188, 147, 68, .55);
}

.btn-wishlist {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1.5px solid var(--border);
    font-size: 20px;
    transition: .25s;
}

.btn-wishlist:hover {
    border-color: #e91e63;
    background: rgba(233, 30, 99, .06);
}

.btn-wishlist.on {
    border-color: #e91e63;
    background: rgba(233, 30, 99, .1);
    color: #e91e63;
}

/* Features */
.feat-chips {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 28px;
}

.feat-chip {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 7px 14px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    border: 1px solid var(--border);
    color: var(--text-dim);
    background: var(--surface);
}

.feat-chip .ic {
    font-size: 14px;
}

.feat-chip.highlight {
    border-color: rgba(188, 147, 68, .3);
    color: var(--gold);
    background: rgba(188, 147, 68, .07);
}

/* Brand */
.brand-block {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px 20px;
    border-radius: 18px;
    border: 1px solid var(--border);
    background: var(--bg2);
    margin-bottom: 28px;
}

.brand-logo {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid var(--border);
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Lalezar', var(--font);
    font-size: 20px;
    background: var(--grad-1);
    color: #fff;
    flex-shrink: 0;
}

.brand-info b {
    font-size: 14px;
    display: block;
    margin-bottom: 2px;
}

.brand-info span {
    font-size: 12px;
    color: var(--text-dim);
}

.brand-link {
    margin-right: auto;
    font-size: 12.5px;
    color: var(--violet);
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 5px;
}

/* Meta */
.meta-row {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    font-size: 12px;
}

.meta-pill {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 7px 14px;
    border-radius: 30px;
    border: 1px solid var(--border);
    background: var(--surface);
    color: var(--text-dim);
}

.meta-pill strong {
    color: var(--text);
}

/* Tabs */
.tabs-section {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 32px 80px;
}

.tabs-header {
    display: flex;
    gap: 0;
    border-bottom: 1px solid var(--border);
    margin-bottom: 36px;
}

.tab-btn {
    padding: 16px 28px;
    font-size: 14px;
    font-weight: 700;
    color: var(--text-dim);
    cursor: pointer;
    position: relative;
    transition: color .25s;
    background: none;
    border: none;
    font-family: inherit;
}

.tab-btn::after {
    content: '';
    position: absolute;
    bottom: -1px;
    right: 0;
    width: 0;
    height: 2.5px;
    background: var(--grad-1);
    transition: width .35s var(--ease);
}

.tab-btn:hover {
    color: var(--text);
}

.tab-btn.active {
    color: var(--text);
}

.tab-btn.active::after {
    width: 100%;
}

.tab-panel {
    display: none;
}

.tab-panel.active {
    display: block;
}

.desc-grid {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 48px;
    align-items: start;
}

.desc-body {
    font-size: 15px;
    line-height: 2;
    color: var(--text-dim);
}

.desc-body h3 {
    font-family: 'Lalezar', var(--font);
    font-size: 22px;
    color: var(--text);
    margin: 28px 0 10px;
}

.desc-body p {
    margin-bottom: 16px;
}

.desc-body ul {
    padding-right: 20px;
    margin-bottom: 16px;
}

.desc-body li {
    margin-bottom: 8px;
}

.desc-aside {
    position: sticky;
    top: 100px;
}

.spec-card {
    background: var(--bg2);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 24px;
    margin-bottom: 16px;
}

.spec-card h4 {
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--text-dim);
    margin-bottom: 16px;
}

.spec-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid var(--border);
    font-size: 13.5px;
}

.spec-row:last-child {
    border: none;
    padding-bottom: 0;
}

.spec-row .key {
    color: var(--text-dim);
}

.spec-row .val {
    font-weight: 700;
}

.cert-row {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-top: 4px;
}

.cert {
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    background: rgba(46, 125, 50, .08);
    color: #2e7d32;
    border: 1px solid rgba(46, 125, 50, .18);
}

/* Ingredients Accordion */
.acc-item {
    border: 1px solid var(--border);
    border-radius: 16px;
    overflow: hidden;
    margin-bottom: 10px;
}

.acc-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 20px;
    cursor: pointer;
    font-weight: 700;
    font-size: 14px;
    transition: background .2s;
    background: transparent;
}

.acc-head:hover {
    background: var(--surface);
}

.acc-arrow {
    transition: transform .35s var(--ease);
    font-size: 12px;
    color: var(--text-dim);
}

.acc-item.open .acc-arrow {
    transform: rotate(180deg);
}

.acc-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height .45s var(--ease);
}

.acc-item.open .acc-body {
    max-height: 500px;
}

.acc-inner {
    padding: 0 20px 18px;
    font-size: 13.5px;
    color: var(--text-dim);
    line-height: 1.9;
}

.ing-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
    margin-top: 10px;
}

.ing-tag {
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 11.5px;
    border: 1px solid var(--border);
    background: var(--surface);
    color: var(--text-dim);
}

.ing-tag.star {
    border-color: rgba(188, 147, 68, .3);
    color: var(--gold);
    background: rgba(188, 147, 68, .07);
}

/* Poster */
.poster-section {
    position: relative;
    overflow: hidden;
    margin: 0 32px 80px;
    border-radius: 28px;
    min-height: 420px;
    display: flex;
    align-items: center;
}

.poster-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #1a0d2e 0%, #2d1464 40%, #4a2090 70%, #bc9344 100%);
    z-index: 0;
}

.poster-img {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.poster-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: .35;
    mix-blend-mode: luminosity;
}

.poster-noise {
    position: absolute;
    inset: 0;
    z-index: 2;
    opacity: .06;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='200' height='200' filter='url(%23n)'/%3E%3C/svg%3E");
}

.poster-content {
    position: relative;
    z-index: 3;
    padding: 64px;
    max-width: 600px;
}

.poster-eyebrow {
    color: var(--gold-2);
    font-size: 12px;
    letter-spacing: 3px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 18px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.poster-eyebrow::before {
    content: '';
    width: 30px;
    height: 1px;
    background: var(--gold-2);
}

.poster-title {
    font-family: 'Lalezar', var(--font);
    font-size: clamp(32px, 4.5vw, 58px);
    color: #fff;
    line-height: 1.25;
    margin-bottom: 20px;
}

.poster-title span {
    background: linear-gradient(120deg, #f0c14b, #e8a830);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.poster-text {
    color: rgba(255, 255, 255, .72);
    font-size: 15px;
    line-height: 1.9;
    margin-bottom: 28px;
}

.poster-cta {
    background: #fff;
    color: var(--text);
    padding: 14px 30px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 800;
    display: inline-flex;
    align-items: center;
    gap: 9px;
    transition: .3s var(--ease);
}

.poster-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 40px -10px rgba(0, 0, 0, .4);
}

.poster-float {
    position: absolute;
    left: 60px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 4;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.poster-stat {
    background: rgba(255, 255, 255, .1);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, .15);
    border-radius: 18px;
    padding: 16px 20px;
    text-align: center;
}

.poster-stat b {
    display: block;
    font-family: 'Lalezar', var(--font);
    font-size: 28px;
    color: #fff;
}

.poster-stat span {
    font-size: 11px;
    color: rgba(255, 255, 255, .6);
}

/* Carousel */
.carousel-section {
    padding: 0 0 80px;
}

.section-header {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 32px 28px;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.section-title {
    font-family: 'Lalezar', var(--font);
    font-size: 32px;
}

.section-sub {
    font-size: 14px;
    color: var(--text-dim);
    max-width: 400px;
    line-height: 1.8;
    margin-top: 4px;
}

.see-all {
    font-size: 13px;
    font-weight: 700;
    color: var(--violet);
    display: flex;
    align-items: center;
    gap: 5px;
}

.gallery-carousel {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 32px;
    position: relative;
}

.gc-track {
    display: flex;
    gap: 16px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    padding-bottom: 8px;
}

.gc-track::-webkit-scrollbar {
    display: none;
}

.gc-item {
    flex: 0 0 220px;
    scroll-snap-align: start;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid var(--border);
    aspect-ratio: 3/4;
    position: relative;
    cursor: pointer;
    transition: transform .4s var(--ease), box-shadow .4s;
}

.gc-item:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 24px 48px -16px rgba(123, 77, 255, .25);
}

.gc-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .6s var(--ease);
}

.gc-item:hover img {
    transform: scale(1.08);
}

.gc-caption {
    position: absolute;
    bottom: 0;
    inset-inline: 0;
    padding: 14px 16px;
    background: linear-gradient(transparent, rgba(20, 10, 36, .8));
    color: #fff;
    font-size: 12px;
    font-weight: 700;
}

.gc-nav {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
}

.gc-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--border);
    cursor: pointer;
    transition: .25s;
}

.gc-dot.active,
.gc-dot:hover {
    background: var(--gold);
}

.gc-arrows {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    width: 100%;
    pointer-events: none;
}

.gc-arrow {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .9);
    backdrop-filter: blur(10px);
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    pointer-events: all;
    transition: .25s;
    font-size: 16px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, .1);
}

.gc-arrow:hover {
    background: #fff;
    transform: scale(1.08);
}

.gc-arrow.prev {
    margin-right: -22px;
}

.gc-arrow.next {
    margin-left: -22px;
}

/* Related Products */
.related-section {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 32px 100px;
}

.related-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.rel-card {
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid var(--border);
    background: #fff;
    cursor: pointer;
    transition: transform .4s var(--ease), box-shadow .4s, border-color .4s;
}

.rel-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 28px 56px -20px rgba(123, 77, 255, .2);
    border-color: rgba(188, 147, 68, .3);
}

.rel-img {
    position: relative;
    height: 190px;
    overflow: hidden;
    background: var(--bg2);
}

.rel-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .6s var(--ease);
}

.rel-card:hover .rel-img img {
    transform: scale(1.08);
}

.rel-img::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 50%, rgba(20, 10, 36, .5));
}

.rel-tag {
    position: absolute;
    top: 10px;
    right: 10px;
    z-index: 2;
    padding: 4px 10px;
    border-radius: 16px;
    font-size: 10px;
    font-weight: 800;
    color: #fff;
}

.rel-tag.best {
    background: linear-gradient(120deg, #bc9344, #f0c14b);
}

.rel-tag.new-p {
    background: linear-gradient(120deg, #7c4dff, #9d7bff);
}

.rel-body {
    padding: 14px 16px 18px;
}

.rel-cat {
    font-size: 10px;
    color: var(--text-dim);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 4px;
}

.rel-name {
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 8px;
    line-height: 1.4;
}

.rel-foot {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.rel-price {
    font-family: 'Lalezar', var(--font);
    font-size: 18px;
    background: var(--grad-1);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.rel-stars {
    color: var(--gold);
    font-size: 10.5px;
}

/* Reviews */
.reviews-section {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 32px 100px;
}

.review-summary {
    display: flex;
    gap: 32px;
    align-items: center;
    margin-bottom: 36px;
    padding: 28px;
    background: var(--bg2);
    border: 1px solid var(--border);
    border-radius: 20px;
}

.big-rating {
    text-align: center;
}

.big-rating .num {
    font-family: 'Lalezar', var(--font);
    font-size: 72px;
    background: var(--grad-1);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    line-height: 1;
}

.big-rating .stars {
    font-size: 18px;
    color: var(--gold);
}

.big-rating .count {
    font-size: 12px;
    color: var(--text-dim);
    margin-top: 4px;
}

.bars {
    flex: 1;
}

.bar-row {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 8px;
    font-size: 12.5px;
}

.bar-label {
    width: 20px;
    text-align: center;
    color: var(--text-dim);
    font-weight: 700;
}

.bar-track {
    flex: 1;
    height: 6px;
    border-radius: 4px;
    background: var(--border);
}

.bar-fill {
    height: 100%;
    border-radius: 4px;
    background: var(--grad-1);
}

.bar-count {
    width: 28px;
    text-align: left;
    color: var(--text-dim);
}

.review-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.rev-card {
    padding: 22px;
    border-radius: 18px;
    border: 1px solid var(--border);
    background: #fff;
}

.rev-top {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 14px;
}

.rev-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--grad-1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-family: 'Lalezar', var(--font);
    font-size: 20px;
    flex-shrink: 0;
}

.rev-name {
    font-weight: 700;
    font-size: 14px;
}

.rev-date {
    font-size: 11px;
    color: var(--text-dim);
}

.rev-stars {
    color: var(--gold);
    font-size: 12px;
    margin-bottom: 4px;
}

.rev-text {
    font-size: 13.5px;
    color: var(--text-dim);
    line-height: 1.85;
}

.rev-verify {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 11px;
    color: #2e7d32;
    font-weight: 700;
    margin-top: 10px;
}

/* Responsive Product */
@media(max-width: 1050px) {
    .product-detail {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .gallery {
        position: relative;
        top: 0;
    }

    .desc-grid {
        grid-template-columns: 1fr;
    }

    .related-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .review-cards {
        grid-template-columns: 1fr;
    }

    .poster-float {
        display: none;
    }
}

@media(max-width: 740px) {
    .gallery-thumbs {
        grid-template-columns: repeat(4, 1fr);
    }

    .poster-content {
        padding: 36px;
    }

    .product-detail {
        padding: 20px 20px 60px;
    }

    .tabs-section,
    .related-section,
    .reviews-section {
        padding-inline: 20px;
    }

    .poster-section {
        margin: 0 20px 60px;
    }
}

@media(max-width: 480px) {
    .gallery-main {
        height: 300px;
    }

    .gallery-thumbs .thumb {
        width: 60px;
        height: 60px;
    }

    .pd-title {
        font-size: 24px;
    }

    .related-grid {
        grid-template-columns: 1fr 1fr;
    }

    .poster-section {
        margin: 0 16px 40px;
        min-height: 320px;
    }

    .poster-content {
        padding: 28px 20px;
    }

    .poster-title {
        font-size: clamp(24px, 6vw, 32px);
    }
}