@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,600;0,700;1,400&family=Outfit:wght@300;400;500;600;700&display=swap');

:root {
    --primary: #1a0f2e;
    --primary-light: #2d1f4e;
    --accent: #c9a962;
    --accent-light: #e8d5a3;
    --rose: #e8b4b8;
    --rose-dark: #c4787a;
    --cream: #faf7f2;
    --cream-dark: #f0ebe3;
    --white: #ffffff;
    --text: #1a1a2e;
    --text-muted: #6b6578;
    --gradient-gold: linear-gradient(135deg, #c9a962 0%, #e8d5a3 50%, #c9a962 100%);
    --shadow-sm: 0 4px 20px rgba(26, 15, 46, 0.08);
    --shadow-md: 0 8px 40px rgba(26, 15, 46, 0.12);
    --shadow-lg: 0 20px 60px rgba(26, 15, 46, 0.18);
    --radius: 16px;
    --radius-sm: 10px;
    --transition: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --font-display: 'Cormorant Garamond', Georgia, serif;
    --font-body: 'Outfit', system-ui, sans-serif;
}

*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--text);
    background: var(--cream);
    overflow-x: hidden;
    line-height: 1.6;
}

img {
    max-width: 100%;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

.container {
    width: 90%;
    max-width: 1320px;
    margin: auto;
}

/* ─── TOP BAR ─── */
.top-bar {
    background: var(--primary);
    color: rgba(255, 255, 255, 0.85);
    font-size: 13px;
    padding: 10px 0;
    border-bottom: 1px solid rgba(201, 169, 98, 0.2);
}

.top-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.top-bar span {
    display: flex;
    align-items: center;
    gap: 8px;
}

.top-bar svg {
    width: 14px;
    height: 14px;
    fill: var(--accent);
}

/* ─── HEADER ─── */
.header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(201, 169, 98, 0.15);
    transition: var(--transition);
}

.header.scrolled {
    box-shadow: var(--shadow-sm);
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 0;
}

.logo {
    font-family: var(--font-display);
    font-size: 26px;
    font-weight: 700;
    color: var(--primary);
    letter-spacing: -0.5px;
}

.logo span {
    color: var(--accent);
}

.nav {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav a {
    font-size: 14px;
    font-weight: 500;
    color: var(--text);
    position: relative;
    transition: color var(--transition);
}

.nav a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent);
    transition: width var(--transition);
}

.nav a:hover {
    color: var(--accent);
}

.nav a:hover::after {
    width: 100%;
}

.lang-switch {
    font-size: 13px !important;
    font-weight: 600 !important;
    padding: 8px 16px;
    border: 1.5px solid var(--accent);
    border-radius: 50px;
    color: var(--accent) !important;
    cursor: pointer;
    transition: var(--transition);
}

.lang-switch:hover {
    background: var(--accent);
    color: var(--primary) !important;
}

.lang-switch::after {
    display: none !important;
}

.burger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.burger span {
    width: 24px;
    height: 2px;
    background: var(--primary);
    transition: var(--transition);
}

/* ─── MARQUEE ─── */
.marquee-section {
    background: var(--primary);
    padding: 18px 0;
    overflow: hidden;
    position: relative;
}

.marquee-section::before,
.marquee-section::after {
    content: '';
    position: absolute;
    top: 0;
    width: 120px;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.marquee-section::before {
    left: 0;
    background: linear-gradient(to right, var(--primary), transparent);
}

.marquee-section::after {
    right: 0;
    background: linear-gradient(to left, var(--primary), transparent);
}

.marquee-track {
    display: flex;
    width: max-content;
    animation: marquee 30s linear infinite;
}

.marquee-track:hover {
    animation-play-state: paused;
}

.marquee-content {
    display: flex;
    align-items: center;
    gap: 0;
    white-space: nowrap;
}

.marquee-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 0 20px;
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 600;
    color: var(--white);
    letter-spacing: 2px;
    text-transform: uppercase;
}

.marquee-item .dot {
    width: 8px;
    height: 8px;
    background: var(--accent);
    border-radius: 50%;
    flex-shrink: 0;
}

.marquee-item .highlight {
    color: var(--accent);
    font-style: italic;
}

@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ─── HERO ─── */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    animation: kenBurns 20s ease-in-out infinite alternate;
}

.hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(26, 15, 46, 0.85) 0%,
        rgba(26, 15, 46, 0.5) 50%,
        rgba(45, 31, 78, 0.7) 100%
    );
}

@keyframes kenBurns {
    0% { transform: scale(1) translate(0, 0); }
    100% { transform: scale(1.12) translate(-2%, -1%); }
}

.hero-particles {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    overflow: hidden;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--accent);
    border-radius: 50%;
    opacity: 0;
    animation: floatParticle 8s ease-in-out infinite;
}

@keyframes floatParticle {
    0%, 100% { opacity: 0; transform: translateY(100vh) scale(0); }
    10% { opacity: 0.8; }
    90% { opacity: 0.3; }
    100% { opacity: 0; transform: translateY(-10vh) scale(1); }
}

.hero-overlay {
    position: relative;
    z-index: 2;
    width: 100%;
    padding: 120px 0 80px;
}

.hero-content {
    width: 90%;
    max-width: 1320px;
    margin: auto;
    color: var(--white);
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 20px;
    background: rgba(201, 169, 98, 0.15);
    border: 1px solid rgba(201, 169, 98, 0.4);
    border-radius: 50px;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 30px;
    animation: fadeInUp 0.8s ease forwards;
    opacity: 0;
}

.hero-badge .pulse {
    width: 8px;
    height: 8px;
    background: var(--accent);
    border-radius: 50%;
    animation: pulse 2s ease infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.5); }
}

.hero-content h1 {
    font-family: var(--font-display);
    max-width: 780px;
    font-size: clamp(42px, 6vw, 80px);
    line-height: 1.05;
    font-weight: 700;
    margin-bottom: 28px;
    animation: fadeInUp 0.8s 0.2s ease forwards;
    opacity: 0;
}

.hero-content h1 em {
    font-style: italic;
    color: var(--accent-light);
}

.hero-content p {
    max-width: 560px;
    font-size: clamp(16px, 2vw, 20px);
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 44px;
    animation: fadeInUp 0.8s 0.4s ease forwards;
    opacity: 0;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    animation: fadeInUp 0.8s 0.6s ease forwards;
    opacity: 0;
}

.hero-stats {
    display: flex;
    gap: 50px;
    margin-top: 70px;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    animation: fadeInUp 0.8s 0.8s ease forwards;
    opacity: 0;
}

.hero-stat strong {
    display: block;
    font-family: var(--font-display);
    font-size: 42px;
    color: var(--accent);
    line-height: 1;
    margin-bottom: 6px;
}

.hero-stat span {
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: rgba(255, 255, 255, 0.6);
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

/* ─── BUTTONS ─── */
.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 36px;
    background: var(--gradient-gold);
    color: var(--primary);
    border-radius: 50px;
    font-weight: 600;
    font-size: 15px;
    transition: var(--transition);
    border: none;
    cursor: pointer;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(201, 169, 98, 0.4);
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 36px;
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: 50px;
    font-weight: 600;
    font-size: 15px;
    transition: var(--transition);
}

.btn-secondary:hover {
    background: var(--white);
    color: var(--primary);
    border-color: var(--white);
}

.btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
    border-radius: 50px;
    font-weight: 600;
    font-size: 14px;
    transition: var(--transition);
}

.btn-outline:hover {
    background: var(--primary);
    color: var(--white);
}

/* ─── SECTION COMMON ─── */
section {
    position: relative;
}

.section-label {
    display: inline-block;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 16px;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(32px, 4vw, 52px);
    font-weight: 700;
    color: var(--primary);
    line-height: 1.15;
    margin-bottom: 20px;
}

.section-subtitle {
    font-size: 18px;
    color: var(--text-muted);
    max-width: 600px;
    line-height: 1.7;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header .section-subtitle {
    margin: 0 auto;
}

.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ─── ABOUT ─── */
.about {
    padding: 120px 0;
    background: var(--white);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-images {
    position: relative;
    height: 550px;
}

.about-img-main {
    position: absolute;
    top: 0;
    left: 0;
    width: 75%;
    height: 80%;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.about-img-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 8s ease;
}

.about-img-main:hover img {
    transform: scale(1.08);
}

.about-img-float {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 55%;
    height: 55%;
    border-radius: var(--radius);
    overflow: hidden;
    border: 6px solid var(--white);
    box-shadow: var(--shadow-md);
    animation: floatImage 6s ease-in-out infinite;
}

.about-img-float img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@keyframes floatImage {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-12px); }
}

.about-badge {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 3;
    width: 120px;
    height: 120px;
    background: var(--gradient-gold);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-md);
    animation: rotateBadge 20s linear infinite;
}

.about-badge-inner {
    animation: counterRotate 20s linear infinite;
    text-align: center;
}

@keyframes counterRotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(-360deg); }
}

.about-badge strong {
    font-family: var(--font-display);
    font-size: 28px;
    color: var(--primary);
    display: block;
    line-height: 1;
}

.about-badge span {
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--primary);
}

@keyframes rotateBadge {
    from { transform: translate(-50%, -50%) rotate(0deg); }
    to { transform: translate(-50%, -50%) rotate(360deg); }
}

.about-text .features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 36px;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 20px;
    background: var(--cream);
    border-radius: var(--radius-sm);
    transition: var(--transition);
}

.feature-item:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-sm);
}

.feature-icon {
    width: 44px;
    height: 44px;
    background: var(--primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 20px;
}

.feature-item h4 {
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 4px;
}

.feature-item p {
    font-size: 13px;
    color: var(--text-muted);
}

/* ─── CIS REGIONS ─── */
.cis-regions {
    padding: 100px 0;
    background: var(--primary);
    color: var(--white);
    overflow: hidden;
}

.cis-regions .section-label {
    color: var(--accent-light);
}

.cis-regions .section-title {
    color: var(--white);
}

.cis-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 50px;
}

.cis-card {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(201, 169, 98, 0.2);
    border-radius: var(--radius);
    padding: 36px 28px;
    text-align: center;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.cis-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(201, 169, 98, 0.1), transparent);
    opacity: 0;
    transition: var(--transition);
}

.cis-card:hover {
    transform: translateY(-8px);
    border-color: var(--accent);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.cis-card:hover::before {
    opacity: 1;
}

.cis-flag {
    font-size: 48px;
    margin-bottom: 16px;
    display: block;
}

.cis-card h3 {
    font-family: var(--font-display);
    font-size: 22px;
    margin-bottom: 8px;
}

.cis-card p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.6;
}

/* ─── IMAGE GALLERY MARQUEE ─── */
.gallery-marquee {
    padding: 80px 0;
    background: var(--cream-dark);
    overflow: hidden;
}

.gallery-marquee .section-header {
    margin-bottom: 50px;
}

.gallery-track {
    display: flex;
    gap: 24px;
    width: max-content;
    animation: galleryScroll 40s linear infinite;
}

.gallery-track.reverse {
    animation-direction: reverse;
    margin-top: 24px;
}

.gallery-track:hover {
    animation-play-state: paused;
}

@keyframes galleryScroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.gallery-item {
    flex-shrink: 0;
    width: 320px;
    height: 400px;
    border-radius: var(--radius);
    overflow: hidden;
    position: relative;
    cursor: pointer;
    background: var(--cream-dark);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
    background: var(--cream-dark);
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-item-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(26, 15, 46, 0.8), transparent 60%);
    display: flex;
    align-items: flex-end;
    padding: 24px;
    opacity: 0;
    transition: var(--transition);
}

.gallery-item:hover .gallery-item-overlay {
    opacity: 1;
}

.gallery-item-overlay span {
    color: var(--white);
    font-weight: 600;
    font-size: 16px;
}

.gallery-item::after {
    content: '';
    position: absolute;
    inset: 0;
    border: 2px solid var(--accent);
    border-radius: var(--radius);
    opacity: 0;
    transition: var(--transition);
}

.gallery-item:hover::after {
    opacity: 1;
    inset: 8px;
}

/* ─── SUCCESS STORIES ─── */
.stories {
    padding: 120px 0;
    background: var(--white);
}

.stories-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.story-card {
    border-radius: var(--radius);
    overflow: hidden;
    background: var(--cream);
    transition: var(--transition);
    group: story;
}

.story-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.story-image {
    height: 280px;
    overflow: hidden;
    position: relative;
}

.story-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.story-card:hover .story-image img {
    transform: scale(1.08);
}

.story-image .country-tag {
    position: absolute;
    top: 16px;
    left: 16px;
    padding: 6px 14px;
    background: var(--accent);
    color: var(--primary);
    font-size: 12px;
    font-weight: 600;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.story-content {
    padding: 28px;
}

.story-content h3 {
    font-family: var(--font-display);
    font-size: 24px;
    margin-bottom: 6px;
    color: var(--primary);
}

.story-content .role {
    font-size: 13px;
    color: var(--accent);
    font-weight: 500;
    margin-bottom: 14px;
}

.story-content p {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 20px;
}

.story-link {
    font-size: 13px;
    font-weight: 600;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
}

.story-link:hover {
    color: var(--accent);
    gap: 14px;
}

/* ─── TRUST / STATS ─── */
.trust {
    padding: 120px 0;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.trust::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(201, 169, 98, 0.15), transparent 70%);
    pointer-events: none;
}

.trust-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.trust-content .section-label {
    color: var(--accent-light);
}

.trust-content .section-title {
    color: var(--white);
}

.trust-content p {
    color: rgba(255, 255, 255, 0.75);
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 36px;
}

.trust-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.trust-feature {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px;
    background: rgba(255, 255, 255, 0.06);
    border-radius: var(--radius-sm);
    border: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 14px;
    font-weight: 500;
}

.trust-feature .check {
    width: 28px;
    height: 28px;
    background: var(--accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 14px;
    flex-shrink: 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.stat-card {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(201, 169, 98, 0.25);
    border-radius: var(--radius);
    padding: 36px 28px;
    text-align: center;
    transition: var(--transition);
}

.stat-card:hover {
    background: rgba(255, 255, 255, 0.12);
    transform: scale(1.03);
}

.stat-number {
    font-family: var(--font-display);
    font-size: 52px;
    font-weight: 700;
    color: var(--accent);
    line-height: 1;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: rgba(255, 255, 255, 0.6);
}

/* ─── BRANDS ─── */
.brands {
    padding: 100px 0;
    background: var(--cream);
}

.brands-marquee {
    overflow: hidden;
    margin-top: 50px;
}

.brands-track {
    display: flex;
    gap: 20px;
    width: max-content;
    animation: marquee 25s linear infinite;
}

.brand-card {
    flex-shrink: 0;
    width: 200px;
    padding: 32px 24px;
    background: var(--white);
    border-radius: var(--radius-sm);
    text-align: center;
    font-weight: 600;
    font-size: 15px;
    color: var(--primary);
    border: 1px solid rgba(201, 169, 98, 0.2);
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
}

.brand-card:hover {
    border-color: var(--accent);
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.brands-grid-static,
.brands-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 40px;
}

.brands-grid .brand-card,
.brands-grid-static .brand-card {
    width: auto;
    flex-shrink: unset;
    padding: 0;
    overflow: hidden;
    text-align: left;
}

.brand-card-image {
    height: 200px;
    overflow: hidden;
    position: relative;
    background: var(--cream-dark);
}

.brand-card-image--logo {
    background: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
}

.brand-card-image--logo img {
    width: auto;
    height: auto;
    max-width: 75%;
    max-height: 70%;
    object-fit: contain;
    transition: transform 0.4s ease;
}

.brand-card-image:not(.brand-card-image--logo) img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.brand-card:hover .brand-card-image--logo img {
    transform: scale(1.05);
}

.brand-card:hover .brand-card-image:not(.brand-card-image--logo) img {
    transform: scale(1.08);
}

.brand-card-body {
    padding: 28px 24px 32px;
}

.brands-grid .brand-card h3,
.brands-grid-static .brand-card h3 {
    font-family: var(--font-display);
    font-size: 22px;
    margin-bottom: 12px;
    color: var(--primary);
}

.brands-grid .brand-card p,
.brands-grid-static .brand-card p {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 20px;
    min-height: 66px;
}

.brands-grid .brand-card .btn-primary,
.brands-grid-static .brand-card .btn-primary {
    font-size: 13px;
    padding: 12px 24px;
}

/* Marquee brand cards with image */
.brand-card--marquee {
    width: 180px;
    padding: 0;
    overflow: hidden;
    text-align: center;
}

.brand-card--marquee .brand-card-image {
    height: 120px;
}

.brand-card--marquee .brand-card-image--logo img {
    max-width: 80%;
    max-height: 65%;
}

.brand-card--marquee .brand-card-name {
    padding: 14px 12px 18px;
    font-weight: 600;
    font-size: 14px;
    color: var(--primary);
}

/* ─── MISSION / VISION ─── */
.motivation {
    padding: 120px 0;
    background: var(--white);
}

.motivation-tabs {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.tab-btn {
    padding: 14px 32px;
    background: var(--cream);
    border: none;
    border-radius: 50px;
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 600;
    color: var(--text-muted);
    cursor: pointer;
    transition: var(--transition);
}

.tab-btn.active,
.tab-btn:hover {
    background: var(--primary);
    color: var(--white);
}

.tab-panel {
    display: none;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    animation: fadeInUp 0.5s ease;
}

.tab-panel.active {
    display: block;
}

.tab-panel p {
    font-size: 18px;
    line-height: 1.9;
    color: var(--text-muted);
}

/* ─── PARTNER / WHOLESALE ─── */
.wholesale {
    padding: 120px 0;
    background: var(--cream-dark);
}

.partner-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.partner-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 50px 36px;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: var(--transition);
    border: 1px solid transparent;
}

.partner-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-gold);
    transform: scaleX(0);
    transition: var(--transition);
}

.partner-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(201, 169, 98, 0.3);
}

.partner-card:hover::before {
    transform: scaleX(1);
}

.partner-card.featured {
    border: 2px solid var(--accent);
    transform: scale(1.03);
}

.partner-tier {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--accent);
    font-weight: 600;
    margin-bottom: 12px;
}

.partner-card h3 {
    font-family: var(--font-display);
    font-size: 32px;
    margin-bottom: 8px;
    color: var(--primary);
}

.partner-card .partner-desc,
.partner-card .tier-threshold {
    font-size: 15px;
    color: var(--text-muted);
    margin-bottom: 24px;
}

.partner-card .tier-threshold {
    font-weight: 600;
    color: var(--accent);
}

.partner-card ul {
    list-style: none;
    text-align: left;
    margin-bottom: 30px;
}

.partner-card li {
    padding: 8px 0;
    font-size: 14px;
    color: var(--text-muted);
    border-bottom: 1px solid var(--cream-dark);
    display: flex;
    align-items: center;
    gap: 10px;
}

.partner-card li::before {
    content: '✓';
    color: var(--accent);
    font-weight: 700;
}

/* ─── CTA ─── */
.cta {
    padding: 100px 0;
    background: var(--primary);
    position: relative;
    overflow: hidden;
}

.cta-bg {
    position: absolute;
    inset: 0;
    opacity: 0.15;
}

.cta-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cta .container {
    position: relative;
    z-index: 1;
    text-align: center;
}

.cta h2 {
    font-family: var(--font-display);
    font-size: clamp(32px, 4vw, 48px);
    color: var(--white);
    margin-bottom: 16px;
}

.cta p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 18px;
    margin-bottom: 36px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

/* ─── CONTACT ─── */
.contact {
    padding: 100px 0;
    background: var(--white);
    text-align: center;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.contact-card {
    padding: 36px 24px;
    background: var(--cream);
    border-radius: var(--radius);
    transition: var(--transition);
}

.contact-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-sm);
}

.contact-card .icon {
    width: 56px;
    height: 56px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    font-size: 22px;
}

.contact-card h3 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 8px;
}

.contact-card p {
    font-size: 14px;
    color: var(--text-muted);
}

/* ─── FOOTER ─── */
.footer {
    background: var(--primary);
    color: rgba(255, 255, 255, 0.7);
    padding: 60px 0 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 50px;
    margin-bottom: 50px;
}

.footer-brand .logo {
    color: var(--white);
    margin-bottom: 16px;
    display: inline-block;
}

.footer-brand p {
    font-size: 14px;
    line-height: 1.7;
    max-width: 300px;
}

.footer-col h4 {
    color: var(--white);
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.footer-col a {
    display: block;
    font-size: 14px;
    padding: 6px 0;
    transition: color var(--transition);
}

.footer-col a:hover {
    color: var(--accent);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
    flex-wrap: wrap;
    gap: 16px;
}

.footer-social {
    display: flex;
    gap: 16px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    transition: var(--transition);
}

.footer-social a:hover {
    background: var(--accent);
    border-color: var(--accent);
    color: var(--primary);
}

/* ─── INNER PAGES ─── */
.page-header {
    padding: 140px 0 80px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    text-align: center;
    color: var(--white);
}

.page-header h1 {
    font-family: var(--font-display);
    font-size: clamp(36px, 5vw, 56px);
    margin-bottom: 16px;
}

.page-header p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.7);
    max-width: 600px;
    margin: 0 auto;
}

.products-page {
    padding: 100px 0;
}

.products-page h1 {
    text-align: center;
    margin-bottom: 50px;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.product-card {
    background: var(--white);
    border: 1px solid rgba(201, 169, 98, 0.15);
    border-radius: var(--radius);
    overflow: hidden;
    transition: var(--transition);
}

.product-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
}

.product-image {
    height: 250px;
    background: var(--cream);
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.product-card:hover .product-image img {
    transform: scale(1.05);
}

.product-content {
    padding: 24px;
}

.product-brand {
    font-size: 12px !important;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--accent) !important;
    font-weight: 600;
    margin-bottom: 8px !important;
    display: flex;
    align-items: center;
    gap: 8px;
}

.product-brand-logo {
    width: 28px;
    height: 28px;
    object-fit: contain;
    flex-shrink: 0;
}

.product-content h3 {
    font-family: var(--font-display);
    font-size: 18px;
    margin-bottom: 10px;
    line-height: 1.3;
}

.product-meta {
    font-size: 13px !important;
}

.product-desc {
    font-size: 13px !important;
    color: var(--text-muted, #666) !important;
    line-height: 1.45 !important;
    margin: 0 0 8px !important;
}

.product-price {
    font-weight: 600;
    color: var(--primary) !important;
    font-size: 15px !important;
    margin: 8px 0 16px !important;
}

.product-category {
    position: absolute;
    top: 12px;
    left: 12px;
    padding: 5px 12px;
    background: var(--primary);
    color: var(--white);
    font-size: 11px;
    font-weight: 600;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.product-image {
    position: relative;
}

.product-btn {
    width: 100%;
    justify-content: center;
    font-size: 13px;
    padding: 12px 20px;
}

.brand-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 20px;
}

.brand-tags span {
    padding: 4px 10px;
    background: var(--cream);
    border-radius: 50px;
    font-size: 11px;
    color: var(--text-muted);
    font-weight: 500;
}

/* ─── PAGE CONTENT BLOCKS ─── */
.page-content {
    padding: 80px 0;
}

.page-content.alt-bg {
    background: var(--cream);
}

.content-block {
    max-width: 900px;
    margin: 0 auto 60px;
}

.content-block h2 {
    font-family: var(--font-display);
    font-size: 36px;
    color: var(--primary);
    margin-bottom: 20px;
}

.content-block p {
    font-size: 17px;
    line-height: 1.85;
    color: var(--text-muted);
    margin-bottom: 16px;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 40px;
}

.values-grid.cols-4 {
    grid-template-columns: repeat(4, 1fr);
}

.value-card {
    background: var(--white);
    border: 1px solid rgba(201, 169, 98, 0.15);
    border-radius: var(--radius);
    padding: 32px 24px;
    text-align: center;
    transition: var(--transition);
}

.value-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
}

.value-card .icon {
    font-size: 32px;
    margin-bottom: 16px;
}

.value-card h3 {
    font-family: var(--font-display);
    font-size: 20px;
    margin-bottom: 10px;
    color: var(--primary);
}

.value-card p {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.6;
    margin: 0;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 40px;
}

.process-step {
    text-align: center;
    position: relative;
}

.step-num {
    width: 48px;
    height: 48px;
    background: var(--gradient-gold);
    color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 18px;
    margin: 0 auto 16px;
}

.process-step h3 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--primary);
}

.process-step p {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.6;
    margin: 0;
}

.faq-list {
    max-width: 800px;
    margin: 40px auto 0;
}

.faq-item {
    border-bottom: 1px solid rgba(201, 169, 98, 0.2);
    padding: 24px 0;
}

.faq-item h3 {
    font-size: 17px;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 10px;
}

.faq-item p {
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.7;
    margin: 0;
}

.brand-pills,
.category-pills {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    margin-top: 30px;
}

.brand-pill,
.category-pill {
    padding: 10px 20px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(201, 169, 98, 0.3);
    border-radius: 50px;
    font-size: 14px;
    color: var(--white);
    transition: var(--transition);
}

a.brand-pill:hover {
    background: var(--accent);
    color: var(--primary);
    border-color: var(--accent);
}

.page-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-bottom: 50px;
}

.page-stat {
    background: var(--white);
    border: 1px solid rgba(201, 169, 98, 0.15);
    border-radius: var(--radius);
    padding: 28px;
    text-align: center;
}

.page-stat strong {
    display: block;
    font-family: var(--font-display);
    font-size: 36px;
    color: var(--accent);
    margin-bottom: 6px;
}

.page-stat span {
    font-size: 13px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.filter-bar {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin-bottom: 40px;
}

.filter-btn {
    padding: 10px 22px;
    background: var(--white);
    border: 1px solid rgba(201, 169, 98, 0.3);
    border-radius: 50px;
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 500;
    color: var(--text-muted);
    cursor: pointer;
    transition: var(--transition);
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
}

.products-note {
    background: var(--cream);
    border-left: 4px solid var(--accent);
    padding: 20px 24px;
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    margin-bottom: 40px;
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.7;
}

.products-note a {
    color: var(--accent);
    font-weight: 600;
}

.products-note a:hover {
    text-decoration: underline;
}
    border-left: 4px solid var(--accent);
    padding: 20px 24px;
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    margin-bottom: 40px;
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.7;
}

.two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.check-list {
    list-style: none;
    margin-top: 20px;
}

.check-list li {
    padding: 10px 0;
    font-size: 16px;
    color: var(--text-muted);
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.check-list li::before {
    content: "✓";
    color: var(--accent);
    font-weight: 700;
    flex-shrink: 0;
}

@media (max-width: 1024px) {
    .values-grid,
    .values-grid.cols-4,
    .process-steps,
    .page-stats {
        grid-template-columns: repeat(2, 1fr);
    }

    .two-col {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .values-grid,
    .process-steps,
    .page-stats {
        grid-template-columns: 1fr;
    }
}

.wholesale-info {
    padding: 80px 0;
}

.about-section {
    padding: 80px 0;
}

.about-section .container {
    max-width: 900px;
}

.about-section p {
    line-height: 1.9;
    font-size: 17px;
    color: var(--text-muted);
    margin-bottom: 20px;
}

.about-section h2 {
    font-family: var(--font-display);
    font-size: 32px;
    color: var(--primary);
    margin: 40px 0 20px;
}

.contact-form-section {
    padding: 80px 0;
    background: var(--cream);
}

.contact-form-section h2 {
    text-align: center;
    font-family: var(--font-display);
    font-size: 36px;
    margin-bottom: 40px;
    color: var(--primary);
}

.contact-form {
    max-width: 700px;
    margin: auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
    width: 100%;
    padding: 16px 20px;
    border: 1px solid rgba(201, 169, 98, 0.3);
    border-radius: var(--radius-sm);
    font-family: var(--font-body);
    font-size: 15px;
    background: var(--white);
    transition: var(--transition);
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(201, 169, 98, 0.15);
}

.contact-form textarea {
    height: 160px;
    resize: vertical;
}

/* ─── MOBILE ─── */
@media (max-width: 1024px) {
    .about-grid,
    .trust-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .about-images {
        height: 400px;
    }

    .stories-grid {
        grid-template-columns: 1fr 1fr;
    }

    .brands-grid,
    .brands-grid-static {
        grid-template-columns: repeat(2, 1fr);
    }

    .cis-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .nav {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: var(--primary);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 24px;
        z-index: 1002;
        padding: 80px 24px 40px;
        overflow-y: auto;
    }

    .nav.open {
        display: flex;
    }

    .nav a {
        font-size: 20px;
        color: var(--white) !important;
    }

    .nav a:hover {
        color: var(--accent) !important;
    }

    .nav a::after {
        background: var(--accent);
    }

    .nav .lang-switch {
        color: var(--accent) !important;
        border-color: var(--accent);
        background: transparent;
    }

    .nav .lang-switch:hover {
        background: var(--accent);
        color: var(--primary) !important;
    }

    .nav .auth-link {
        color: var(--white) !important;
    }

    .nav .auth-link--register {
        color: var(--accent) !important;
        border-color: var(--accent);
    }

    .nav .auth-link--register:hover {
        background: var(--accent);
        color: var(--primary) !important;
    }

    .nav .auth-user {
        color: var(--accent-light) !important;
    }

    .nav .auth-logout {
        color: rgba(255, 255, 255, 0.7) !important;
    }

    .nav .cart-link {
        color: var(--white) !important;
    }

    .burger {
        display: flex;
        z-index: 1003;
        position: relative;
    }

    .burger span {
        background: var(--primary);
    }

    .burger.active span {
        background: var(--accent);
    }

    .burger.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .burger.active span:nth-child(2) {
        opacity: 0;
    }

    .burger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }

    .hero-stats {
        flex-wrap: wrap;
        gap: 30px;
    }

    .about-text .features,
    .trust-features,
    .stats-grid {
        grid-template-columns: 1fr;
    }

    .stories-grid,
    .partner-grid,
    .contact-grid,
    .brands-grid,
    .brands-grid-static,
    .products-grid {
        grid-template-columns: 1fr;
    }

    .cis-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .partner-card.featured {
        transform: none;
    }

    .gallery-item {
        width: 260px;
        height: 320px;
    }
}

/* ─── AUTH ─── */
.auth-nav {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-left: 8px;
}

.auth-link {
    font-size: 14px;
    font-weight: 500;
    color: var(--text);
    transition: var(--transition);
}

.auth-link:hover {
    color: var(--accent);
}

.auth-link--register {
    padding: 8px 16px;
    border: 1px solid var(--accent);
    border-radius: 999px;
    color: var(--accent);
}

.auth-link--register:hover {
    background: var(--accent);
    color: var(--primary);
}

.auth-link--admin {
    color: var(--rose-dark);
    font-weight: 600;
}

.auth-user {
    font-size: 14px;
    font-weight: 600;
    color: var(--primary);
}

.auth-logout {
    background: none;
    border: none;
    font-family: var(--font-body);
    font-size: 13px;
    color: var(--text-muted);
    cursor: pointer;
    padding: 4px 0;
    transition: var(--transition);
}

.auth-logout:hover {
    color: var(--rose-dark);
}

.auth-section {
    padding: 60px 0 100px;
}

.auth-card {
    max-width: 480px;
    margin: 0 auto;
    background: var(--white);
    padding: 40px;
    border-radius: var(--radius);
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(201, 169, 98, 0.15);
}

.auth-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.auth-form .form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.auth-form label {
    font-size: 14px;
    font-weight: 600;
    color: var(--primary);
}

.auth-form input {
    width: 100%;
    padding: 14px 18px;
    border: 1px solid rgba(201, 169, 98, 0.3);
    border-radius: var(--radius-sm);
    font-family: var(--font-body);
    font-size: 15px;
    background: var(--cream);
    transition: var(--transition);
}

.auth-form input:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(201, 169, 98, 0.15);
    background: var(--white);
}

.auth-form small {
    font-size: 12px;
    color: var(--text-muted);
}

.auth-submit {
    width: 100%;
    margin-top: 8px;
    justify-content: center;
}

.auth-error {
    color: #c0392b;
    font-size: 14px;
    background: rgba(192, 57, 43, 0.08);
    padding: 12px 16px;
    border-radius: var(--radius-sm);
}

.auth-switch {
    text-align: center;
    margin-top: 24px;
    font-size: 14px;
    color: var(--text-muted);
}

.auth-switch a {
    color: var(--accent);
    font-weight: 600;
}

.auth-switch a:hover {
    text-decoration: underline;
}

/* ─── ADMIN ─── */
.admin-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-bottom: 40px;
}

.admin-stat {
    background: var(--white);
    padding: 28px;
    border-radius: var(--radius);
    text-align: center;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(201, 169, 98, 0.12);
}

.admin-stat strong {
    display: block;
    font-family: var(--font-display);
    font-size: 42px;
    color: var(--accent);
    line-height: 1;
    margin-bottom: 8px;
}

.admin-stat span {
    font-size: 14px;
    color: var(--text-muted);
}

.admin-table-wrap {
    overflow-x: auto;
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(201, 169, 98, 0.12);
}

.admin-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 14px;
}

.admin-table th,
.admin-table td {
    padding: 16px 20px;
    text-align: left;
    border-bottom: 1px solid var(--cream-dark);
}

.admin-table th {
    background: var(--cream);
    font-weight: 600;
    color: var(--primary);
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.admin-table tr:last-child td {
    border-bottom: none;
}

.role-badge {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 600;
}

.role-badge--admin {
    background: rgba(201, 169, 98, 0.2);
    color: #8a7340;
}

.role-badge--user {
    background: rgba(232, 180, 184, 0.3);
    color: var(--rose-dark);
}

.btn-danger-sm {
    padding: 6px 14px;
    font-size: 12px;
    font-family: var(--font-body);
    background: transparent;
    border: 1px solid rgba(192, 57, 43, 0.4);
    color: #c0392b;
    border-radius: 999px;
    cursor: pointer;
    transition: var(--transition);
}

.btn-danger-sm:hover {
    background: #c0392b;
    color: white;
}

.text-muted {
    color: var(--text-muted);
    font-size: 13px;
}

@media (max-width: 768px) {
    .auth-nav {
        flex-direction: column;
        align-items: flex-start;
        margin-left: 0;
        padding-top: 12px;
        border-top: 1px solid rgba(201, 169, 98, 0.2);
        width: 100%;
    }

    .admin-stats {
        grid-template-columns: 1fr 1fr;
    }

    .dashboard-grid {
        grid-template-columns: 1fr;
    }
}

/* ─── CART & DASHBOARD ─── */
.cart-link {
    position: relative;
    font-size: 14px;
    font-weight: 600;
    color: var(--accent);
}

.cart-link.active {
    color: var(--primary);
}

.cart-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 20px;
    height: 20px;
    padding: 0 6px;
    background: var(--rose-dark);
    color: white;
    font-size: 11px;
    font-weight: 700;
    border-radius: 999px;
    margin-left: 4px;
}

.product-actions {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: 12px;
}

.product-btn-sm {
    text-align: center;
    padding: 10px;
    font-size: 13px;
}

.dashboard-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
}

.dashboard-cart,
.dashboard-form-wrap {
    background: var(--white);
    padding: 32px;
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(201, 169, 98, 0.12);
}

.dashboard-cart h2,
.dashboard-form-wrap h2 {
    font-family: var(--font-display);
    font-size: 28px;
    color: var(--primary);
    margin-bottom: 24px;
}

.cart-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px 0;
    border-bottom: 1px solid var(--cream-dark);
}

.cart-item-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.cart-item-info strong {
    font-size: 13px;
    color: var(--accent);
}

.cart-item-info span {
    font-size: 14px;
    color: var(--primary);
}

.cart-item-qty {
    display: flex;
    align-items: center;
    gap: 8px;
}

.cart-item-qty input {
    width: 72px;
    padding: 8px;
    border: 1px solid rgba(201, 169, 98, 0.3);
    border-radius: var(--radius-sm);
    text-align: center;
}

.cart-empty {
    text-align: center;
    padding: 40px 20px;
    color: var(--text-muted);
}

.auth-form textarea {
    width: 100%;
    padding: 14px 18px;
    border: 1px solid rgba(201, 169, 98, 0.3);
    border-radius: var(--radius-sm);
    font-family: var(--font-body);
    font-size: 15px;
    resize: vertical;
}

.auth-success {
    color: #1e7e34;
    font-size: 14px;
    background: rgba(30, 126, 52, 0.08);
    padding: 12px 16px;
    border-radius: var(--radius-sm);
    margin-bottom: 16px;
}

.order-card {
    background: var(--white);
    padding: 24px;
    border-radius: var(--radius-sm);
    margin-bottom: 16px;
    border: 1px solid rgba(201, 169, 98, 0.12);
}

.order-card-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
}

.order-card ul {
    margin-top: 12px;
    padding-left: 20px;
    font-size: 14px;
    color: var(--text-muted);
}

.status-badge {
    font-size: 12px;
    padding: 4px 12px;
    border-radius: 999px;
    font-weight: 600;
}

.status-badge--new { background: rgba(201, 169, 98, 0.2); color: #8a7340; }
.status-badge--processing { background: rgba(33, 150, 243, 0.15); color: #1565c0; }
.status-badge--completed { background: rgba(30, 126, 52, 0.15); color: #1e7e34; }
.status-badge--cancelled { background: rgba(192, 57, 43, 0.1); color: #c0392b; }

.sbh-toast {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 9999;
    padding: 16px 24px;
    background: var(--primary);
    color: white;
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-lg);
    font-size: 14px;
    max-width: 360px;
}

.sbh-toast--success { border-left: 4px solid var(--accent); }

.admin-tabs {
    display: flex;
    gap: 8px;
    margin-bottom: 24px;
    flex-wrap: wrap;
}

.admin-tab {
    padding: 12px 24px;
    border: 1px solid rgba(201, 169, 98, 0.3);
    background: var(--white);
    border-radius: 999px;
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.admin-tab.active,
.admin-tab:hover {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
}

.admin-panel {
    display: none;
}

.admin-panel.active {
    display: block;
}

.status-select {
    padding: 6px 10px;
    border: 1px solid rgba(201, 169, 98, 0.3);
    border-radius: var(--radius-sm);
    font-family: var(--font-body);
    font-size: 13px;
    background: var(--cream);
}

/* ── AI Consultant ── */
.consultant-widget {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 9999;
    font-family: var(--font-body);
}

.consultant-toggle {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 14px 20px;
    background: var(--primary);
    color: var(--white);
    border: 2px solid var(--accent);
    border-radius: 999px;
    cursor: pointer;
    box-shadow: var(--shadow-lg);
    transition: var(--transition);
    font-weight: 600;
    font-size: 15px;
}

.consultant-toggle:hover,
.consultant-toggle.open {
    background: var(--primary-light);
    transform: translateY(-2px);
    box-shadow: 0 24px 48px rgba(26, 15, 46, 0.25);
}

.consultant-toggle-icon {
    font-size: 18px;
    color: var(--accent);
}

.consultant-panel[hidden] {
    display: none !important;
}

.consultant-panel {
    position: absolute;
    bottom: calc(100% + 16px);
    right: 0;
    width: min(400px, calc(100vw - 32px));
    height: min(560px, calc(100vh - 120px));
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(201, 169, 98, 0.25);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    animation: consultantSlideUp 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

@keyframes consultantSlideUp {
    from { opacity: 0; transform: translateY(12px) scale(0.98); }
    to { opacity: 1; transform: translateY(0) scale(1); }
}

.consultant-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 18px;
    background: var(--primary);
    color: var(--white);
    flex-shrink: 0;
}

.consultant-header-info {
    display: flex;
    align-items: center;
    gap: 12px;
}

.consultant-avatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: var(--gradient-gold);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 700;
}

.consultant-header h3 {
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 600;
    margin: 0;
    line-height: 1.2;
}

.consultant-header p {
    font-size: 12px;
    opacity: 0.85;
    margin: 2px 0 0;
}

.consultant-status-ai {
    color: var(--accent-light);
}

.consultant-close {
    background: none;
    border: none;
    color: var(--white);
    font-size: 28px;
    line-height: 1;
    cursor: pointer;
    opacity: 0.8;
    padding: 0 4px;
}

.consultant-close:hover { opacity: 1; }

.consultant-messages {
    flex: 1;
    overflow-y: auto;
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    background: var(--cream);
}

.consultant-msg {
    max-width: 88%;
    padding: 12px 14px;
    border-radius: 14px;
    font-size: 14px;
    line-height: 1.55;
    word-break: break-word;
}

.consultant-msg-user {
    align-self: flex-end;
    background: var(--primary);
    color: var(--white);
    border-bottom-right-radius: 4px;
}

.consultant-msg-assistant {
    align-self: flex-start;
    background: var(--white);
    color: var(--text);
    border: 1px solid rgba(201, 169, 98, 0.2);
    border-bottom-left-radius: 4px;
    box-shadow: var(--shadow-sm);
}

.consultant-msg-in {
    animation: consultantMsgIn 0.3s ease;
}

@keyframes consultantMsgIn {
    from { opacity: 0; transform: translateY(6px); }
    to { opacity: 1; transform: translateY(0); }
}

.consultant-link {
    color: var(--primary-light);
    font-weight: 600;
    text-decoration: underline;
    text-underline-offset: 2px;
}

.consultant-link:hover { color: var(--accent); }

.consultant-bullet {
    color: var(--accent);
    font-weight: 700;
}

.consultant-typing {
    display: flex;
    gap: 5px;
    padding: 16px 18px;
}

.consultant-typing span {
    width: 8px;
    height: 8px;
    background: var(--accent);
    border-radius: 50%;
    animation: consultantDot 1.2s infinite ease-in-out;
}

.consultant-typing span:nth-child(2) { animation-delay: 0.15s; }
.consultant-typing span:nth-child(3) { animation-delay: 0.3s; }

@keyframes consultantDot {
    0%, 80%, 100% { transform: scale(0.6); opacity: 0.4; }
    40% { transform: scale(1); opacity: 1; }
}

.consultant-quick {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    padding: 10px 14px;
    background: var(--white);
    border-top: 1px solid rgba(201, 169, 98, 0.15);
    flex-shrink: 0;
}

.consultant-chip {
    padding: 6px 12px;
    background: var(--cream);
    border: 1px solid rgba(201, 169, 98, 0.35);
    border-radius: 999px;
    font-size: 12px;
    font-family: var(--font-body);
    color: var(--primary);
    cursor: pointer;
    transition: var(--transition);
}

.consultant-chip:hover {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
}

.consultant-input-wrap {
    display: flex;
    gap: 8px;
    padding: 12px 14px;
    background: var(--white);
    border-top: 1px solid rgba(201, 169, 98, 0.15);
    flex-shrink: 0;
}

.consultant-input-wrap input {
    flex: 1;
    padding: 12px 16px;
    border: 1px solid rgba(201, 169, 98, 0.35);
    border-radius: 999px;
    font-family: var(--font-body);
    font-size: 14px;
    background: var(--cream);
    outline: none;
    transition: var(--transition);
}

.consultant-input-wrap input:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(201, 169, 98, 0.2);
}

.consultant-send {
    width: 44px;
    height: 44px;
    border: none;
    border-radius: 50%;
    background: var(--gradient-gold);
    color: var(--primary);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: var(--transition);
}

.consultant-send:hover:not(:disabled) {
    transform: scale(1.05);
    box-shadow: var(--shadow-sm);
}

.consultant-send:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

@media (max-width: 480px) {
    .consultant-widget {
        bottom: 16px;
        right: 16px;
        left: 16px;
    }

    .consultant-toggle {
        width: 100%;
        justify-content: center;
    }

    .consultant-panel {
        right: 0;
        left: 0;
        width: 100%;
    }
}

/* ── Catalog by categories ── */
.catalog-brand-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 24px;
    justify-content: center;
}

.catalog-brand-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    border-radius: 999px;
    border: 1px solid rgba(201, 169, 98, 0.4);
    background: rgba(255, 255, 255, 0.08);
    color: var(--white);
    font-size: 13px;
    font-weight: 500;
    text-decoration: none;
    transition: var(--transition);
}

.page-header .catalog-brand-link {
    color: var(--cream);
}

.catalog-brand-link:hover,
.catalog-brand-link.active {
    background: var(--accent);
    border-color: var(--accent);
    color: var(--primary);
}

.catalog-brand-count {
    font-size: 11px;
    opacity: 0.85;
    background: rgba(26, 15, 46, 0.15);
    padding: 2px 7px;
    border-radius: 999px;
}

.catalog-brand-link.active .catalog-brand-count {
    background: rgba(26, 15, 46, 0.2);
}

.products-catalog {
    display: flex;
    flex-direction: column;
    gap: 48px;
    margin-top: 32px;
    min-height: 120px;
}

.catalog-loading {
    text-align: center;
    padding: 48px 16px;
    color: var(--text-muted);
    font-size: 15px;
}

.catalog-loading::after {
    content: "";
    display: block;
    width: 32px;
    height: 32px;
    margin: 16px auto 0;
    border: 3px solid rgba(201, 169, 98, 0.25);
    border-top-color: var(--accent);
    border-radius: 50%;
    animation: catalogSpin 0.7s linear infinite;
}

@keyframes catalogSpin {
    to { transform: rotate(360deg); }
}

.products-catalog .product-image img {
    background: var(--cream-dark);
}

.catalog-category-head {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 24px;
    padding-bottom: 12px;
    border-bottom: 2px solid rgba(201, 169, 98, 0.25);
}

.catalog-category-title {
    font-family: var(--font-display);
    font-size: clamp(24px, 3vw, 32px);
    color: var(--primary);
    font-weight: 600;
}

.catalog-category-count {
    font-size: 13px;
    color: var(--text-muted);
    font-weight: 600;
}

/* ── Admin catalog ── */
.admin-products-toolbar {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 20px;
    align-items: center;
    justify-content: space-between;
}

.admin-search {
    flex: 1;
    min-width: 200px;
    max-width: 360px;
    padding: 10px 16px;
    border: 1px solid rgba(201, 169, 98, 0.35);
    border-radius: var(--radius-sm);
    font-family: var(--font-body);
    font-size: 14px;
    background: var(--white);
}

.admin-actions-cell {
    white-space: nowrap;
    display: flex;
    gap: 8px;
}

.btn-sm {
    padding: 6px 12px !important;
    font-size: 12px !important;
}

.admin-modal {
    position: fixed;
    inset: 0;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.admin-modal[hidden] {
    display: none !important;
}

.admin-modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(26, 15, 46, 0.55);
}

.admin-modal-card {
    position: relative;
    width: min(520px, 100%);
    max-height: 90vh;
    overflow-y: auto;
    background: var(--white);
    border-radius: var(--radius);
    padding: 28px;
    box-shadow: var(--shadow-lg);
}

.admin-modal-card h2 {
    font-family: var(--font-display);
    font-size: 28px;
    color: var(--primary);
    margin-bottom: 20px;
}

.admin-modal-actions {
    display: flex;
    gap: 12px;
    justify-content: flex-end;
    margin-top: 8px;
}

/* ── Loyalty & bonus ── */
.loyalty-card {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    color: var(--white);
    border-radius: var(--radius);
    padding: 24px 28px;
    margin-bottom: 32px;
    box-shadow: var(--shadow-md);
}

.loyalty-card-main {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 16px 24px;
}

.loyalty-card-main strong {
    font-size: 28px;
    display: block;
    color: var(--accent-light);
}

.loyalty-card-main span {
    font-size: 14px;
    opacity: 0.85;
}

.loyalty-next, .loyalty-hint {
    margin-top: 12px;
    font-size: 13px;
    opacity: 0.9;
}

.loyalty-hint {
    margin-top: 8px;
    opacity: 0.75;
}

.tier-badge {
    display: inline-block;
    padding: 6px 14px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.tier-badge--bronze { background: #cd7f32; color: #fff; }
.tier-badge--silver { background: #c0c0c0; color: #1a1a2e; }
.tier-badge--gold { background: var(--accent); color: var(--primary); }
.tier-badge--platinum { background: #e5e4e2; color: #1a1a2e; border: 1px solid #fff; }

.bonus-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 24px;
}

.bonus-card {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(201, 169, 98, 0.15);
}

.bonus-card-image {
    height: 160px;
    background: var(--cream);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.bonus-card-image img {
    max-width: 100%;
    max-height: 120px;
    object-fit: contain;
}

.bonus-card-body {
    padding: 20px;
}

.bonus-card-body h3 {
    font-size: 18px;
    margin-bottom: 8px;
    color: var(--primary);
}

.bonus-card-body p {
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 16px;
}

.bonus-card-foot {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.bonus-price {
    font-weight: 700;
    color: var(--accent);
}

.bonus-history {
    margin-top: 48px;
}

.bonus-redeem-row {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    padding: 12px 0;
    border-bottom: 1px solid rgba(201, 169, 98, 0.2);
    font-size: 14px;
}

.admin-quick-card {
    background: var(--white);
    border: 1px solid rgba(201, 169, 98, 0.2);
    border-radius: var(--radius);
    padding: 20px;
    margin-bottom: 20px;
}

.admin-quick-card h3 {
    font-size: 16px;
    margin-bottom: 16px;
    color: var(--primary);
}

.admin-quick-form {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    gap: 10px;
    align-items: end;
}

.admin-quick-form input,
.admin-quick-form select {
    padding: 10px 12px;
    border: 1px solid rgba(201, 169, 98, 0.3);
    border-radius: var(--radius-sm);
    font-family: var(--font-body);
    font-size: 14px;
}

.admin-hint {
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 16px;
    padding: 12px 16px;
    background: rgba(201, 169, 98, 0.1);
    border-radius: var(--radius-sm);
}

.status-badge--rejected {
    background: rgba(192, 57, 43, 0.15);
    color: #c0392b;
}

.btn-sm {
    padding: 8px 16px;
    font-size: 13px;
}

/* ── Currency ── */
.currency-header-wrap {
    display: flex;
    align-items: center;
    gap: 6px;
}

.currency-label {
    font-size: 12px;
    color: var(--text-muted);
    white-space: nowrap;
}

.currency-select {
    padding: 6px 10px;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    background: var(--white);
    font-size: 13px;
    color: var(--text);
    cursor: pointer;
    max-width: 160px;
}

.currency-settings-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 20px 24px;
    margin-bottom: 24px;
}

.currency-settings-card h3 {
    margin: 0 0 12px;
    font-size: 18px;
}

.currency-settings-row {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: center;
}

.currency-settings-row .currency-select {
    min-width: 220px;
}

.currency-meta, .currency-hint {
    margin: 10px 0 0;
    font-size: 13px;
    color: var(--text-muted);
}

.cart-item-price {
    display: block;
    font-size: 13px;
    color: var(--accent);
    margin-top: 4px;
}

.cart-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 0 0;
    margin-top: 16px;
    border-top: 1px solid var(--border);
    font-size: 16px;
}

.cart-total-amount {
    color: var(--primary);
    font-size: 20px;
}

.telegram-panel {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 20px 24px;
    margin-bottom: 24px;
}

.telegram-panel h3 {
    margin: 0 0 12px;
    font-size: 18px;
}

.telegram-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 12px;
}

.telegram-linked {
    margin: 0;
    color: var(--primary);
    font-weight: 600;
}

.auth-link--telegram {
    color: #229ed9 !important;
}

.auth-link--telegram:hover {
    color: #1a8bc4 !important;
}

@media (max-width: 900px) {
    .currency-header-wrap {
        order: 10;
        width: 100%;
        margin: 12px 0 0;
        padding-top: 12px;
        border-top: 1px solid var(--border);
    }

    .nav.open .currency-header-wrap {
        border-top-color: rgba(255, 255, 255, 0.15);
    }

    .nav.open .currency-label {
        color: rgba(255, 255, 255, 0.7);
    }
}

/* Telegram Web App (кнопка «Сайт» в боте) — полноэкранный режим и удобный скролл */
html.tg-webapp {
    --tg-viewport-height: 100dvh;
}

html.tg-webapp,
html.tg-webapp body {
    min-height: var(--tg-viewport-height, 100dvh);
    height: auto;
    overflow-x: hidden;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior-y: contain;
    touch-action: pan-y;
}

html.tg-webapp body {
    padding-bottom: env(safe-area-inset-bottom, 0);
}

html.tg-webapp .header {
    position: sticky;
    top: 0;
    z-index: 100;
}

/* Search overlay */
.search-trigger {
    background: none;
    border: none;
    font-size: 18px;
    cursor: pointer;
    padding: 4px 8px;
    opacity: 0.85;
}

.search-overlay {
    position: fixed;
    inset: 0;
    z-index: 1000;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding: 80px 16px 16px;
}

.search-modal {
    background: var(--white);
    border-radius: var(--radius);
    width: 100%;
    max-width: 560px;
    box-shadow: var(--shadow-lg);
    overflow: hidden;
}

.search-modal-head {
    display: flex;
    gap: 8px;
    padding: 16px;
    border-bottom: 1px solid var(--border);
}

.search-modal-head input {
    flex: 1;
    border: none;
    font-size: 16px;
    outline: none;
}

.search-close {
    background: none;
    border: none;
    font-size: 20px;
    cursor: pointer;
    color: var(--text-muted);
}

.search-results {
    max-height: 360px;
    overflow-y: auto;
}

.search-result {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    padding: 14px 16px;
    border-bottom: 1px solid var(--border);
    color: inherit;
    text-decoration: none;
}

.search-result:hover {
    background: var(--bg-alt);
}

.search-empty, .search-hint {
    padding: 16px;
    color: var(--text-muted);
    font-size: 14px;
    margin: 0;
}

.catalog-toolbar {
    margin-bottom: 20px;
}

.catalog-search {
    width: 100%;
    max-width: 420px;
    padding: 12px 16px;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    font-size: 15px;
}

/* Product favorites & modal */
.product-card {
    position: relative;
}

.product-fav {
    position: absolute;
    top: 12px;
    right: 12px;
    z-index: 2;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: none;
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    font-size: 18px;
    color: var(--text-muted);
}

.product-fav.is-active {
    color: #e74c6c;
}

.product-modal {
    position: fixed;
    inset: 0;
    z-index: 1100;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px;
}

.product-modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
}

.product-modal-dialog {
    position: relative;
    background: var(--white);
    border-radius: var(--radius);
    max-width: 900px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    padding: 24px;
}

.product-modal-close {
    position: absolute;
    top: 12px;
    right: 12px;
    background: none;
    border: none;
    font-size: 22px;
    cursor: pointer;
    z-index: 1;
}

.product-modal-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.product-modal-image img {
    width: 100%;
    border-radius: var(--radius);
    object-fit: cover;
}

.product-modal-desc {
    line-height: 1.7;
    color: var(--text-muted);
}

/* How it works & advantages */
.steps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.step-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 24px;
}

.step-num {
    display: inline-flex;
    width: 36px;
    height: 36px;
    align-items: center;
    justify-content: center;
    background: var(--primary);
    color: #fff;
    border-radius: 50%;
    font-weight: 700;
    margin-bottom: 12px;
}

.advantages-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.advantage-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 24px;
}

.advantage-card span {
    font-size: 28px;
    display: block;
    margin-bottom: 12px;
}

.help-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.help-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 24px;
}

.help-icon {
    font-size: 28px;
    display: block;
    margin-bottom: 12px;
}

.help-card ol {
    margin: 12px 0 0;
    padding-left: 20px;
    line-height: 1.8;
}

.favorites-grid {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.favorite-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    padding: 16px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
}

.favorite-actions {
    display: flex;
    gap: 8px;
    flex-shrink: 0;
}

.order-timeline {
    display: flex;
    gap: 8px;
    margin: 12px 0;
    flex-wrap: wrap;
}

.order-timeline-step {
    flex: 1;
    min-width: 100px;
    font-size: 12px;
    color: var(--text-muted);
    text-align: center;
}

.order-timeline-dot {
    display: block;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--border);
    margin: 0 auto 6px;
}

.order-timeline-step.done .order-timeline-dot {
    background: var(--primary);
}

.order-timeline-step.active {
    color: var(--primary);
    font-weight: 600;
}

.track-order-wrap {
    max-width: 640px;
    margin: 32px auto 0;
}

.track-order-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 24px;
}

.track-order-items {
    margin-top: 12px;
    padding-left: 20px;
}

@media (max-width: 900px) {
    .steps-grid { grid-template-columns: repeat(2, 1fr); }
    .advantages-grid { grid-template-columns: 1fr; }
    .help-grid { grid-template-columns: 1fr; }
    .product-modal-grid { grid-template-columns: 1fr; }
}

@media (max-width: 600px) {
    .steps-grid { grid-template-columns: 1fr; }
}

