/* ═══════════════════════════════════════════════════════
   MyFunnyBant — New Landing Design System
   ═══════════════════════════════════════════════════════ */

/* ─── Base ─── */
[x-cloak] { display: none !important; }
html { scroll-behavior: smooth; }

/* ─── Custom scrollbar ─── */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: #fdf2f8; }
::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, #fbcfe8, #f9a8d4);
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, #f9a8d4, #f472b6);
}
::selection { background: #fbcfe8; color: #9d174d; }

/* ═══════════════════════════════════════════════════════
   HERO — Cinematic full-screen
   ═══════════════════════════════════════════════════════ */

.hero-cinematic {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    overflow: hidden;
    background: #1F1717;
}

/* Video background */
.hero-video-wrap {
    position: absolute;
    inset: 0;
    z-index: 0;
}
.hero-video-wrap video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.hero-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(31,23,23,0.4) 0%, rgba(31,23,23,0.2) 40%, rgba(31,23,23,0.6) 100%),
        linear-gradient(90deg, rgba(31,23,23,0.55) 0%, transparent 60%);
}
.hero-grain {
    position: absolute;
    inset: 0;
    opacity: 0.03;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
    pointer-events: none;
}

/* Scroll indicator */
.hero-scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}
.scroll-line {
    width: 1px;
    height: 48px;
    background: linear-gradient(to bottom, rgba(255,255,255,0.5), transparent);
    animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
    0%, 100% { opacity: 0.5; transform: scaleY(1); }
    50% { opacity: 1; transform: scaleY(1.2); }
}
.scroll-text {
    font-size: 10px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.5);
    font-weight: 500;
}

/* Hero content */
.hero-content {
    position: relative;
    z-index: 5;
    max-width: 7xl;
    margin: 0 auto;
    padding: 140px 24px 0 24px;
    width: 100%;
}

/* Badge */
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,0.08);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 100px;
    padding: 8px 18px;
    margin-bottom: 32px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.8);
}
.hero-badge svg {
    width: 16px;
    height: 16px;
    color: #E4CD92;
}

/* Title */
.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(48px, 8vw, 96px);
    font-weight: 400;
    line-height: 1.02;
    color: #F7F5F2;
    margin-bottom: 32px;
    letter-spacing: -0.02em;
}
.hero-title-line {
    display: block;
}
.hero-title-line--accent {
    font-style: italic;
    color: #E4CD92;
}
.hero-title-line--italic {
    font-style: italic;
    font-weight: 300;
}

/* Subtitle */
.hero-subtitle {
    font-size: clamp(16px, 1.8vw, 20px);
    line-height: 1.7;
    color: rgba(255,255,255,0.6);
    max-width: 520px;
    margin-bottom: 40px;
    font-weight: 300;
}

/* Actions */
.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 64px;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #F7F5F2;
    color: #1F1717;
    padding: 16px 32px;
    border-radius: 100px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}
.btn-primary:hover {
    background: #E4CD92;
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(228,205,146,0.3);
}
.btn-primary svg {
    transition: transform 0.3s ease;
}
.btn-primary:hover svg {
    transform: translateX(3px);
}

.btn-primary--hero {
    background: #F7F5F2;
    color: #1F1717;
}
.btn-primary--hero:hover {
    background: #E4CD92;
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    color: #F7F5F2;
    padding: 16px 32px;
    border-radius: 100px;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    border: 1px solid rgba(255,255,255,0.2);
    transition: all 0.3s ease;
    cursor: pointer;
}
.btn-secondary:hover {
    border-color: rgba(255,255,255,0.5);
    background: rgba(255,255,255,0.05);
}

.btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    color: #3A322E;
    padding: 14px 28px;
    border-radius: 100px;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    border: 1px solid rgba(58,50,46,0.15);
    transition: all 0.3s ease;
    cursor: pointer;
}
.btn-outline:hover {
    border-color: #EC4899;
    color: #EC4899;
}
.btn-outline svg {
    transition: transform 0.3s ease;
}
.btn-outline:hover svg {
    transform: translateX(3px);
}

/* Stats */
.hero-stats {
    display: flex;
    align-items: center;
    gap: 32px;
}
.hero-stat {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}
.hero-stat-number {
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    font-weight: 600;
    color: #F7F5F2;
    line-height: 1;
}
.hero-stat-label {
    font-size: 12px;
    color: rgba(255,255,255,0.4);
    margin-top: 4px;
    font-weight: 400;
}
.hero-stat-divider {
    width: 1px;
    height: 32px;
    background: rgba(255,255,255,0.15);
}

/* Floating decorative elements */
.hero-float {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    z-index: 2;
}
.hero-float--1 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(228,205,146,0.15) 0%, transparent 70%);
    top: 10%;
    right: 10%;
    animation: heroFloat1 12s ease-in-out infinite;
}
.hero-float--2 {
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(236,72,153,0.1) 0%, transparent 70%);
    bottom: 20%;
    right: 30%;
    animation: heroFloat2 15s ease-in-out infinite;
}
.hero-float--3 {
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, rgba(251,207,226,0.12) 0%, transparent 70%);
    top: 40%;
    left: 5%;
    animation: heroFloat3 18s ease-in-out infinite;
}
@keyframes heroFloat1 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(-30px, 20px) scale(1.05); }
    66% { transform: translate(20px, -15px) scale(0.95); }
}
@keyframes heroFloat2 {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(-40px, -30px); }
}
@keyframes heroFloat3 {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(25px, 20px); }
}

/* ═══════════════════════════════════════════════════════
   MARQUEE — Scrolling brand tags
   ═══════════════════════════════════════════════════════ */

.marquee-section {
    background: #1F1717;
    padding: 20px 0;
    overflow: hidden;
    border-top: 1px solid rgba(255,255,255,0.06);
    border-bottom: 1px solid rgba(255,255,255,0.06);
}
.marquee-track {
    display: flex;
    gap: 2rem;
    width: max-content;
}
.marquee-content {
    display: flex;
    gap: 2rem;
    align-items: center;
    animation: marqueeScroll 30s linear infinite;
}
.marquee-content span {
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.35);
    white-space: nowrap;
}
.marquee-dot {
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: rgba(228,205,146,0.3);
    flex-shrink: 0;
}
@keyframes marqueeScroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ═══════════════════════════════════════════════════════
   CATALOG — Product showcase
   ═══════════════════════════════════════════════════════ */

.catalog-section {
    background: #F7F5F2;
    padding: 100px 0;
}

.catalog-header {
    text-align: center;
    margin-bottom: 64px;
}
.catalog-eyebrow {
    font-family: 'Montserrat', sans-serif;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: #A29490;
    display: block;
    margin-bottom: 16px;
}
.catalog-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(36px, 5vw, 56px);
    font-weight: 600;
    color: #2E2724;
    margin-bottom: 16px;
    line-height: 1.1;
}
.catalog-subtitle {
    font-size: 16px;
    color: #6B5E58;
    max-width: 480px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Product grid — 3 columns with generous spacing */
.catalog-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 48px;
}
@media (min-width: 640px) {
    .catalog-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 48px 40px;
    }
}
@media (min-width: 1024px) {
    .catalog-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 56px 48px;
    }
}
@media (min-width: 1280px) {
    .catalog-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 64px 56px;
    }
}

.catalog-empty {
    grid-column: 1 / -1;
    text-align: center;
    padding: 60px 20px;
}
.catalog-cta {
    text-align: center;
    margin-top: 56px;
}

/* ═══════════════════════════════════════════════════════
   PRODUCT CARD — New design
   ═══════════════════════════════════════════════════════ */

.product-card-new {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    background: white;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
}
.product-card-new:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 60px -15px rgba(58,50,46,0.15);
}

.product-card-link {
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    flex: 1;
}

/* Image area */
.product-card-image {
    position: relative;
    aspect-ratio: 3 / 4;
    overflow: hidden;
    background: linear-gradient(140deg, #FBF1F1 0%, #F6E2E6 50%, #E9CDD3 100%);
}
.product-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
.product-card-new:hover .product-card-img {
    transform: scale(1.06);
}
.product-card-placeholder {
    width: 100%;
    height: 100%;
    align-items: center;
    justify-content: center;
}
.product-card-hover-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 50%, rgba(31,23,23,0.08) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}
.product-card-new:hover .product-card-hover-overlay {
    opacity: 1;
}

/* Badges */
.product-card-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 6px 12px;
    border-radius: 100px;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    z-index: 2;
}
.product-card-badge--hit {
    background: #2E2724;
    color: #E4CD92;
}
.product-card-badge--sale {
    background: #EC4899;
    color: white;
}

/* Info area */
.product-card-info {
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 6px;
    flex: 1;
}
.product-card-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
}
.product-card-category {
    font-size: 11px;
    font-weight: 500;
    color: #A29490;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}
.product-card-price-old {
    font-size: 13px;
    color: #A29490;
    text-decoration: line-through;
    font-weight: 400;
}
.product-card-name {
    font-family: 'Playfair Display', serif;
    font-size: 17px;
    font-weight: 600;
    color: #2E2724;
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    transition: color 0.3s ease;
}
.product-card-new:hover .product-card-name {
    color: #EC4899;
}

.product-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: auto;
    padding-top: 12px;
}
.product-card-price-wrap {
    display: flex;
    align-items: baseline;
    gap: 6px;
}
.product-card-price {
    font-family: 'Playfair Display', serif;
    font-size: 20px;
    font-weight: 700;
    color: #2E2724;
}
.product-card-action {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 12px;
    font-weight: 600;
    color: #A29490;
    transition: all 0.3s ease;
}
.product-card-new:hover .product-card-action {
    color: #EC4899;
}
.product-card-action svg {
    transition: transform 0.3s ease;
}
.product-card-new:hover .product-card-action svg {
    transform: translateX(2px);
}

/* Ozon link */
.product-card-ozon {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 8px 16px;
    margin: 0 16px 12px;
    font-size: 11px;
    font-weight: 600;
    color: #EC4899;
    text-decoration: none;
    border: 1px solid rgba(236,72,153,0.2);
    border-radius: 100px;
    transition: all 0.3s ease;
    width: calc(100% - 32px);
    justify-content: center;
}
.product-card-ozon:hover {
    background: #EC4899;
    color: white;
    border-color: #EC4899;
}

/* ═══════════════════════════════════════════════════════
   TRENDS — Horizontal scroll
   ═══════════════════════════════════════════════════════ */

.trends-section {
    background: #FBF1F1;
    padding: 100px 0 80px;
    overflow: hidden;
}
.trends-header {
    margin-bottom: 48px;
}

.trends-scroll-wrap {
    padding: 0 24px;
}
.trends-scroll {
    display: flex;
    gap: 24px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -ms-overflow-style: none;
    scrollbar-width: none;
    padding-bottom: 8px;
}
.trends-scroll::-webkit-scrollbar { display: none; }

.trend-card {
    flex: 0 0 300px;
    scroll-snap-align: start;
    background: white;
    border-radius: 20px;
    padding: 28px;
    transition: all 0.4s ease;
    border: 1px solid rgba(58,50,46,0.05);
}
.trend-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 48px -12px rgba(58,50,46,0.1);
}
.trend-card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 16px;
}
.trend-urgency {
    font-size: 11px;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 100px;
    letter-spacing: 0.05em;
}
.trend-urgent {
    background: #FEF2F2;
    color: #DC2626;
}
.trend-medium {
    background: #FFFBEB;
    color: #D97706;
}
.trend-low {
    background: #F0FDF4;
    color: #16A34A;
}
.trend-date {
    font-size: 11px;
    color: #A29490;
}
.trend-title {
    font-family: 'Playfair Display', serif;
    font-size: 18px;
    font-weight: 600;
    color: #2E2724;
    margin-bottom: 8px;
    line-height: 1.3;
}
.trend-desc {
    font-size: 14px;
    color: #6B5E58;
    line-height: 1.6;
}

/* ═══════════════════════════════════════════════════════
   ABOUT — Split layout
   ═══════════════════════════════════════════════════════ */

.about-section {
    background: white;
    padding: 100px 0;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 60px;
    align-items: center;
}
@media (min-width: 1024px) {
    .about-grid {
        grid-template-columns: 1fr 1fr;
        gap: 80px;
    }
}

/* Visual block */
.about-visual {
    position: relative;
}
.about-visual-inner {
    position: relative;
    aspect-ratio: 4 / 5;
    border-radius: 24px;
    overflow: hidden;
}
.about-visual-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}
.about-visual-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: blur(2px) brightness(0.85);
    transform: scale(1.05);
}
.about-visual-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(
        135deg,
        rgba(251,241,241,0.4) 0%,
        rgba(246,226,230,0.3) 40%,
        rgba(233,205,211,0.5) 100%
    );
}
.about-visual-accent {
    position: absolute;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(228,205,146,0.4) 0%, transparent 70%);
    top: 20%;
    right: -10%;
}
.about-visual-circle {
    position: absolute;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    border: 2px solid rgba(236,72,153,0.15);
    bottom: 15%;
    left: 10%;
}
.about-visual-text {
    position: absolute;
    bottom: 32px;
    left: 32px;
    right: 32px;
    display: flex;
    align-items: center;
    gap: 16px;
    background: rgba(255,255,255,0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 16px;
    padding: 20px 24px;
}
.about-visual-number {
    font-family: 'Playfair Display', serif;
    font-size: 42px;
    font-weight: 700;
    color: #2E2724;
    line-height: 1;
}
.about-visual-label {
    font-size: 13px;
    color: #6B5E58;
    line-height: 1.4;
    font-weight: 500;
}

/* Content */
.about-content {
    display: flex;
    flex-direction: column;
    gap: 24px;
}
.about-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 600;
    color: #2E2724;
    line-height: 1.15;
}
.about-text {
    font-size: 16px;
    line-height: 1.75;
    color: #6B5E58;
    max-width: 520px;
}

.about-features {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-top: 8px;
}
.about-feature {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}
.about-feature-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    border-radius: 14px;
    background: #FBF1F1;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #EC4899;
}
.about-feature-title {
    font-size: 16px;
    font-weight: 600;
    color: #2E2724;
    margin-bottom: 2px;
}
.about-feature-desc {
    font-size: 14px;
    color: #6B5E58;
    line-height: 1.5;
}

/* ═══════════════════════════════════════════════════════
   BRAND — Cinematic dark section
   ═══════════════════════════════════════════════════════ */

.brand-cinematic {
    position: relative;
    background: #1F1717;
    padding: 120px 0;
    overflow: hidden;
}
.brand-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

/* Particles */
.brand-particles {
    position: absolute;
    inset: 0;
    pointer-events: none;
}
.brand-particle {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
}
.brand-particle--1 {
    width: 400px;
    height: 400px;
    background: rgba(228,205,146,0.08);
    top: -10%;
    right: -5%;
    animation: brandParticle1 20s ease-in-out infinite;
}
.brand-particle--2 {
    width: 300px;
    height: 300px;
    background: rgba(236,72,153,0.06);
    bottom: -10%;
    left: -5%;
    animation: brandParticle2 25s ease-in-out infinite;
}
.brand-particle--3 {
    width: 200px;
    height: 200px;
    background: rgba(228,205,146,0.05);
    top: 40%;
    left: 30%;
    animation: brandParticle3 18s ease-in-out infinite;
}
.brand-particle--4 {
    width: 250px;
    height: 250px;
    background: rgba(236,72,153,0.04);
    top: 20%;
    left: 60%;
    animation: brandParticle1 22s ease-in-out infinite reverse;
}
@keyframes brandParticle1 {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(-40px, 30px); }
}
@keyframes brandParticle2 {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(30px, -40px); }
}
@keyframes brandParticle3 {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(20px, 20px); }
}

/* Eyebrow */
.brand-eyebrow {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    color: #E4CD92;
    display: block;
    margin-bottom: 20px;
}
.brand-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(36px, 5vw, 64px);
    font-weight: 600;
    color: #F7F5F2;
    line-height: 1.15;
    margin-bottom: 24px;
}
.brand-title-accent {
    font-style: italic;
    color: #E4CD92;
}
.brand-text {
    font-size: 16px;
    line-height: 1.75;
    color: rgba(247,245,242,0.6);
    max-width: 640px;
    margin: 0 auto 64px;
}

/* Stats */
.brand-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    max-width: 500px;
    margin: 0 auto;
}
@media (min-width: 768px) {
    .brand-stats {
        grid-template-columns: repeat(4, 1fr);
        gap: 48px;
    }
}
.brand-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
}
.brand-stat-value {
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    font-weight: 600;
    color: #E4CD92;
    line-height: 1;
    margin-bottom: 8px;
}
.brand-stat-label {
    font-size: 13px;
    color: rgba(247,245,242,0.7);
    font-weight: 500;
}

/* ═══════════════════════════════════════════════════════
   REVIEWS — Horizontal scroll
   ═══════════════════════════════════════════════════════ */

.reviews-section {
    background: white;
    padding: 100px 0 80px;
}
.reviews-header {
    text-align: center;
    margin-bottom: 48px;
}
.reviews-rating {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-top: 16px;
}
.reviews-stars {
    display: flex;
    gap: 2px;
}
.reviews-rating-value {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    font-weight: 700;
    color: #2E2724;
}
.reviews-rating-source {
    font-size: 13px;
    color: #A29490;
}

.reviews-scroll-wrap {
    padding: 0 24px;
}
.reviews-scroll {
    display: flex;
    gap: 24px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -ms-overflow-style: none;
    scrollbar-width: none;
    padding-bottom: 8px;
}
.reviews-scroll::-webkit-scrollbar { display: none; }

.review-card {
    flex: 0 0 340px;
    scroll-snap-align: start;
    background: #F7F5F2;
    border-radius: 20px;
    padding: 28px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    transition: all 0.4s ease;
    border: 1px solid rgba(58,50,46,0.05);
}
.review-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 48px -12px rgba(58,50,46,0.08);
}
.review-card-stars {
    display: flex;
    gap: 2px;
}
.review-card-text {
    font-size: 15px;
    line-height: 1.7;
    color: #4A403C;
    font-style: italic;
    flex: 1;
}
.review-card-author {
    display: flex;
    align-items: center;
    gap: 12px;
}
.review-card-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: linear-gradient(135deg, #EC4899, #F472B6);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 700;
    color: white;
    flex-shrink: 0;
}
.review-card-name {
    font-size: 13px;
    font-weight: 600;
    color: #2E2724;
}

.reviews-empty {
    flex: 0 0 100%;
    text-align: center;
    padding: 60px 20px;
}

/* ═══════════════════════════════════════════════════════
   GEOGRAPHY — Map section
   ═══════════════════════════════════════════════════════ */

.geography-section {
    background: #FBF1F1;
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}
.geo-bg-pattern {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 20% 30%, rgba(236,72,153,0.04) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(228,205,146,0.06) 0%, transparent 50%);
    pointer-events: none;
}

.geo-header {
    text-align: center;
    margin-bottom: 64px;
}

/* Map */
.geo-map-wrap {
    position: relative;
    max-width: 900px;
    margin: 0 auto 64px;
}
.geo-map-container {
    position: relative;
}
.geo-map-svg {
    width: 100%;
    height: auto;
    color: #A29490;
}
.geo-map-path {
    fill: rgba(236,72,153,0.06);
    stroke: rgba(162,148,144,0.4);
    stroke-width: 1;
}
.geo-pin {
    fill: #EC4899;
    opacity: 0.7;
}
.geo-pin--pulse {
    fill: #EC4899;
    opacity: 0.3;
}
.geo-pin-label {
    font-family: 'Montserrat', sans-serif;
    font-size: 11px;
    font-weight: 600;
    fill: #4A403C;
}

.geo-stats {
    display: flex;
    justify-content: center;
    gap: 48px;
    margin-top: -20px;
}
.geo-stat-item {
    text-align: center;
}
.geo-stat-value {
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    font-weight: 700;
    color: #2E2724;
    display: block;
    line-height: 1;
}
.geo-stat-label {
    font-size: 13px;
    color: #6B5E58;
    margin-top: 4px;
}

/* Info cards */
.geo-info {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    max-width: 800px;
    margin: 0 auto;
}
@media (min-width: 768px) {
    .geo-info {
        grid-template-columns: repeat(3, 1fr);
    }
}
.geo-info-card {
    text-align: center;
    padding: 32px 24px;
    background: white;
    border-radius: 20px;
    transition: all 0.4s ease;
    border: 1px solid rgba(58,50,46,0.05);
}
.geo-info-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 48px -12px rgba(58,50,46,0.08);
}
.geo-info-icon {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    background: #FBF1F1;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    color: #EC4899;
}
.geo-info-title {
    font-family: 'Playfair Display', serif;
    font-size: 20px;
    font-weight: 600;
    color: #2E2724;
    margin-bottom: 6px;
}
.geo-info-desc {
    font-size: 14px;
    color: #6B5E58;
    line-height: 1.5;
}

/* ═══════════════════════════════════════════════════════
   ARTICLES — Asymmetric grid
   ═══════════════════════════════════════════════════════ */

.articles-section {
    background: white;
    padding: 100px 0;
}
.articles-header {
    text-align: center;
    margin-bottom: 64px;
}
.articles-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}
@media (min-width: 768px) {
    .articles-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 32px;
    }
}
@media (min-width: 1024px) {
    .articles-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 32px;
    }
}

.article-card {
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    border-radius: 20px;
    overflow: hidden;
    background: #F7F5F2;
    transition: all 0.4s ease;
    border: 1px solid rgba(58,50,46,0.05);
}
.article-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 60px -15px rgba(58,50,46,0.1);
}
.article-card-image {
    aspect-ratio: 16 / 10;
    overflow: hidden;
}
.article-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
.article-card:hover .article-card-image img {
    transform: scale(1.05);
}
.article-card-body {
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    flex: 1;
}
.article-card-title {
    font-family: 'Playfair Display', serif;
    font-size: 20px;
    font-weight: 600;
    color: #2E2724;
    line-height: 1.35;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    transition: color 0.3s ease;
}
.article-card:hover .article-card-title {
    color: #EC4899;
}
.article-card-excerpt {
    font-size: 14px;
    color: #6B5E58;
    line-height: 1.6;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.article-card-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    font-weight: 600;
    color: #EC4899;
    margin-top: auto;
    padding-top: 12px;
    transition: gap 0.3s ease;
}
.article-card:hover .article-card-link {
    gap: 10px;
}
.article-card-link svg {
    transition: transform 0.3s ease;
}
.article-card:hover .article-card-link svg {
    transform: translateX(3px);
}

.articles-cta {
    text-align: center;
    margin-top: 56px;
}

/* ═══════════════════════════════════════════════════════
   TELEGRAM CTA — Dark cinematic
   ═══════════════════════════════════════════════════════ */

.telegram-cta-section {
    position: relative;
    background: #1F1717;
    padding: 100px 0;
    overflow: hidden;
}
.telegram-cta-particles {
    position: absolute;
    inset: 0;
    pointer-events: none;
}
.telegram-particle {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
}
.telegram-particle--1 {
    width: 300px;
    height: 300px;
    background: rgba(236,72,153,0.08);
    top: -20%;
    left: 10%;
    animation: telegramParticle 20s ease-in-out infinite;
}
.telegram-particle--2 {
    width: 250px;
    height: 250px;
    background: rgba(228,205,146,0.06);
    bottom: -20%;
    right: 10%;
    animation: telegramParticle 25s ease-in-out infinite reverse;
}
@keyframes telegramParticle {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(30px, -20px); }
}

.telegram-cta-content {
    position: relative;
    z-index: 2;
}
.telegram-cta-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(28px, 4vw, 40px);
    font-weight: 600;
    line-height: 1.25;
}
.telegram-cta-text {
    font-size: 15px;
    line-height: 1.6;
}

/* ═══════════════════════════════════════════════════════
   REVEAL ANIMATIONS
   ═══════════════════════════════════════════════════════ */

.reveal-up {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}
.reveal-up.visible {
    opacity: 1;
    transform: translateY(0);
}
.reveal-up-delayed {
    transition-delay: 0.15s;
}
.reveal-up-delayed-2 {
    transition-delay: 0.3s;
}

/* ═══════════════════════════════════════════════════════
   NAV LINK UNDERLINE
   ═══════════════════════════════════════════════════════ */

.nav-link {
    position: relative;
}
.nav-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #EC4899, #F472B6);
    border-radius: 1px;
    transition: width 0.3s ease;
}
.nav-link:hover::after {
    width: 100%;
}

/* ═══════════════════════════════════════════════════════
   GLASS EFFECT
   ═══════════════════════════════════════════════════════ */

.glass {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

/* ═══════════════════════════════════════════════════════
   SHIMMER / PULSE / GLOW (legacy — kept for admin)
   ═══════════════════════════════════════════════════════ */

@keyframes shimmer {
    0% { background-position: '-200% 0'; }
    100% { background-position: '200% 0'; }
}
@keyframes pulse-soft {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}
@keyframes glow {
    0% { box-shadow: 0 0 20px rgba(236, 72, 153, 0.3); }
    100% { box-shadow: 0 0 40px rgba(236, 72, 153, 0.6), 0 0 80px rgba(236, 72, 153, 0.3); }
}
@keyframes fade-in-up {
    0% { opacity: 0; transform: translateY(30px); }
    100% { opacity: 1; transform: translateY(0); }
}
@keyframes scale-in {
    0% { opacity: 0; transform: scale(0.9); }
    100% { opacity: 1; transform: scale(1); }
}

/* ═══════════════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════════════ */

@media (max-width: 767px) {
    .hero-content {
        padding-top: 120px;
    }
    .hero-stats {
        gap: 20px;
    }
    .hero-stat-number {
        font-size: 22px;
    }
    .catalog-section,
    .about-section,
    .reviews-section,
    .geography-section,
    .articles-section {
        padding: 64px 0;
    }
    .trend-card {
        flex: 0 0 260px;
    }
    .review-card {
        flex: 0 0 280px;
    }
    .geo-stats {
        gap: 32px;
    }
}

@media (min-width: 768px) and (max-width: 1023px) {
    .catalog-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* ═══════════════════════════════════════════════════════
   CATALOG PAGE — Filter buttons
   ═══════════════════════════════════════════════════════ */

.filter-btn {
    padding: 8px 20px;
    border-radius: 100px;
    font-size: 13px;
    font-weight: 500;
    background: white;
    color: #6B5E58;
    border: 1px solid rgba(58,50,46,0.1);
    cursor: pointer;
    transition: all 0.3s ease;
}
.filter-btn:hover {
    border-color: #EC4899;
    color: #EC4899;
}
.filter-btn--active {
    background: #EC4899;
    color: white;
    border-color: #EC4899;
}

/* ═══════════════════════════════════════════════════════
   PAGINATION
   ═══════════════════════════════════════════════════════ */

.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
}
.pagination a, .pagination span {
    padding: 8px 16px;
    border-radius: 100px;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
}
.pagination a {
    background: white;
    color: #6B5E58;
    border: 1px solid rgba(58,50,46,0.1);
    text-decoration: none;
}
.pagination a:hover {
    border-color: #EC4899;
    color: #EC4899;
}
.pagination .active span {
    background: #EC4899;
    color: white;
}
.pagination .disabled {
    opacity: 0.5;
    pointer-events: none;
}

/* ═══════════════════════════════════════════════════════
   ARTICLE PAGE — Content styling
   ═══════════════════════════════════════════════════════ */

.article-content {
    font-size: 16px;
    line-height: 1.8;
    color: #4A403C;
}
.article-content h1,
.article-content h2,
.article-content h3 {
    font-family: 'Playfair Display', serif;
    color: #2E2724;
    margin-top: 2em;
    margin-bottom: 0.75em;
    line-height: 1.3;
}
.article-content h1 { font-size: 2.25rem; font-weight: 700; }
.article-content h2 { font-size: 1.875rem; font-weight: 600; }
.article-content h3 { font-size: 1.5rem; font-weight: 600; }
.article-content p { margin-bottom: 1.25em; }
.article-content ul,
.article-content ol { margin-bottom: 1.25em; padding-left: 1.5em; }
.article-content li { margin-bottom: 0.5em; }
.article-content blockquote {
    border-left: 4px solid #EC4899;
    padding-left: 1.5em;
    font-style: italic;
    color: #6B5E58;
    margin: 1.5em 0;
}
.article-content img {
    border-radius: 1rem;
    margin: 1.5em 0;
    box-shadow: 0 10px 30px -10px rgba(236, 72, 153, 0.3);
}
.article-content a {
    color: #EC4899;
    text-decoration: underline;
}

/* ═══════════════════════════════════════════════════════
   PRODUCT PAGE — Additional styles
   ═══════════════════════════════════════════════════════ */

.product-gallery-thumb {
    aspect-ratio: 1;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}
.product-gallery-thumb:hover,
.product-gallery-thumb.active {
    border-color: #EC4899;
}

/* ═══════════════════════════════════════════════════════
   PRIVACY & CONTACTS — Section styling
   ═══════════════════════════════════════════════════════ */

.section-card {
    background: white;
    border-radius: 20px;
    padding: 32px;
    border: 1px solid rgba(58,50,46,0.05);
    transition: all 0.4s ease;
}
.section-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 48px -12px rgba(58,50,46,0.08);
}
.section-card h2 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: #2E2724;
    margin-bottom: 1.5rem;
}
.section-card dl {
    display: grid;
    gap: 1rem;
}
.section-card dt {
    font-weight: 600;
    color: #2E2724;
    min-width: 180px;
}
.section-card dd {
    color: #6B5E58;
}
.section-card a {
    color: #EC4899;
    text-decoration: underline;
    transition: color 0.3s ease;
}
.section-card a:hover {
    color: #DB2777;
}

/* ═══════════════════════════════════════════════════════
   COMING SOON — Additional styles
   ═══════════════════════════════════════════════════════ */

.coming-soon-hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}
.coming-soon-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    border-radius: 100px;
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(20px);
    color: white;
    font-size: 14px;
    font-weight: 500;
}
.coming-soon-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #22C55E;
    animation: pulse-soft 2s ease-in-out infinite;
}

/* ═══════════════════════════════════════════════════════
   PREMIUM PRODUCT CARD — Vertical editorial layout
   ═══════════════════════════════════════════════════════ */

.product-card-premium {
    display: flex;
    flex-direction: column;
    background: white;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(58,50,46,0.04);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
.product-card-premium:hover {
    transform: translateY(-6px);
    box-shadow: 0 30px 80px -20px rgba(58,50,46,0.12);
    border-color: rgba(58,50,46,0.08);
}

.product-card-premium-link {
    display: flex;
    flex-direction: column;
    flex: 1;
    text-decoration: none;
    color: inherit;
}

.product-card-premium-image {
    position: relative;
    aspect-ratio: 4 / 5;
    overflow: hidden;
    background: linear-gradient(140deg, #FBF1F1 0%, #F6E2E6 50%, #E9CDD3 100%);
}
.product-card-premium-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}
.product-card-premium:hover .product-card-premium-img {
    transform: scale(1.06);
}
.product-card-premium-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-card-premium-info {
    padding: 28px 24px 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    flex: 1;
}
.product-card-premium-category {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #A29490;
}
.product-card-premium-name {
    font-family: 'Playfair Display', serif;
    font-size: 18px;
    font-weight: 600;
    color: #2E2724;
    line-height: 1.4;
    transition: color 0.3s ease;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.product-card-premium:hover .product-card-premium-name {
    color: #EC4899;
}
.product-card-premium-action {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    font-weight: 500;
    color: #A29490;
    margin-top: 4px;
    transition: all 0.3s ease;
}
.product-card-premium:hover .product-card-premium-action {
    color: #EC4899;
    gap: 10px;
}
.product-card-premium-action svg {
    transition: transform 0.3s ease;
}
.product-card-premium:hover .product-card-premium-action svg {
    transform: translateX(3px);
}

.product-card-premium-ozon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 24px;
    margin: 0 24px 24px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #2E2724;
    text-decoration: none;
    background: #F7F5F2;
    border-radius: 100px;
    transition: all 0.3s ease;
}
.product-card-premium-ozon:hover {
    background: #EC4899;
    color: white;
}
