/* ═══════════════════════════════════════════
   ТМ Калинка — style.css
   Design: Warm Minimal + Burgundy Accent
   ═══════════════════════════════════════════ */

/* ── Google Fonts ─────────────────────────── */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500&family=Outfit:wght@300;400;500;600;700&display=swap');

/* ── CSS Variables ────────────────────────── */
:root {
    /* Colors */
    --cream: #FDFBF9;
    --cream-dark: #F5EDE3;
    --burgundy: #8B2252;
    --burgundy-dark: #6B1A3F;
    --burgundy-light: #A83267;
    --gold: #C9A96E;
    --gold-light: #D4BC8E;
    --graphite: #2D2D2D;
    --graphite-light: #4A4A4A;
    --text: #3A3A3A;
    --text-light: #6B6B6B;
    --text-muted: #999;
    --white: #FFFFFF;
    --border: #E8E0D6;
    --border-light: #F0EBE4;
    --shadow: rgba(45, 45, 45, 0.08);
    --shadow-md: rgba(45, 45, 45, 0.12);
    --overlay: rgba(45, 45, 45, 0.6);

    /* Typography */
    --font-display: 'Cormorant Garamond', Georgia, serif;
    --font-body: 'Outfit', system-ui, sans-serif;

    /* Spacing */
    --section-pad: 100px;
    --container: 1200px;
    --container-narrow: 900px;
    --gap: 24px;
    --gap-sm: 16px;
    --gap-lg: 40px;

    /* Radius */
    --radius: 12px;
    --radius-sm: 8px;
    --radius-lg: 20px;

    /* Transitions */
    --ease: cubic-bezier(0.4, 0, 0.2, 1);
    --duration: 0.35s;
}

/* ── Reset & Base ─────────────────────────── */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-body);
    font-weight: 400;
    font-size: 16px;
    line-height: 1.7;
    color: var(--text);
    background: var(--cream);
}

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

a {
    color: var(--burgundy);
    text-decoration: none;
    transition: color var(--duration) var(--ease);
}

a:hover {
    color: var(--burgundy-dark);
}

/* ── Typography ───────────────────────────── */
h1, h2, h3, h4 {
    font-family: var(--font-display);
    font-weight: 600;
    line-height: 1.2;
    color: var(--graphite);
}

h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    letter-spacing: -0.02em;
}

h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    letter-spacing: -0.01em;
}

h3 {
    font-size: clamp(1.3rem, 2.5vw, 1.6rem);
}

h4 {
    font-size: 1.15rem;
}

p {
    max-width: 680px;
}

.text-center { text-align: center; }
.text-center p { margin-left: auto; margin-right: auto; }

/* ── Container ────────────────────────────── */
.container {
    width: 100%;
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 var(--gap);
}

.container--narrow {
    max-width: var(--container-narrow);
}

/* ── Buttons ──────────────────────────────── */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 32px;
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 0.03em;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all var(--duration) var(--ease);
    text-decoration: none;
    white-space: nowrap;
}

.btn--primary {
    background: var(--burgundy);
    color: var(--white);
    box-shadow: 0 4px 20px rgba(139, 34, 82, 0.25);
}

.btn--primary:hover {
    background: var(--burgundy-dark);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(139, 34, 82, 0.35);
}

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

.btn--outline:hover {
    background: var(--burgundy);
    color: var(--white);
    transform: translateY(-2px);
}

.btn--gold {
    background: var(--gold);
    color: var(--white);
}

.btn--gold:hover {
    background: var(--gold-light);
    color: var(--white);
    transform: translateY(-2px);
}

.btn--white {
    background: var(--white);
    color: var(--burgundy);
}

.btn--white:hover {
    background: var(--cream);
    color: var(--burgundy-dark);
    transform: translateY(-2px);
}

.btn--sm {
    padding: 10px 24px;
    font-size: 0.85rem;
}

.btn--lg {
    padding: 18px 40px;
    font-size: 1rem;
}

.btn--icon {
    width: 48px;
    height: 48px;
    padding: 0;
    border-radius: 50%;
    font-size: 1.2rem;
}

/* ── Section ──────────────────────────────── */
section {
    padding: var(--section-pad) 0;
}

.section-label {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--burgundy);
    margin-bottom: 16px;
    position: relative;
    padding-left: 36px;
}

.section-label::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    width: 24px;
    height: 1.5px;
    background: var(--burgundy);
}

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

.section-header p {
    color: var(--text-light);
    font-size: 1.1rem;
    margin-top: 16px;
}

/* Divider ornament */
.divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin: 60px 0;
}

.divider::before,
.divider::after {
    content: '';
    width: 60px;
    height: 1px;
    background: var(--border);
}

.divider-icon {
    color: var(--burgundy);
    font-size: 1.2rem;
    opacity: 0.5;
}

/* ══════════════════════════════════════════
   NAVIGATION
   ══════════════════════════════════════════ */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(253, 251, 249, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-light);
    transition: all var(--duration) var(--ease);
}

.nav--scrolled {
    box-shadow: 0 2px 20px var(--shadow);
}

.nav__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 var(--gap);
}

.nav__logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.nav__logo-text {
    font-family: var(--font-display);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--burgundy);
    font-style: italic;
    letter-spacing: -0.02em;
}

.nav__logo-tm {
    font-size: 0.6rem;
    font-style: normal;
    vertical-align: super;
    color: var(--text-muted);
}

.nav__links {
    display: flex;
    align-items: center;
    gap: 32px;
    list-style: none;
}

.nav__links a {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text);
    letter-spacing: 0.02em;
    position: relative;
    padding: 4px 0;
}

.nav__links a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--burgundy);
    transition: width var(--duration) var(--ease);
}

.nav__links a:hover::after,
.nav__links a.active::after {
    width: 100%;
}

.nav__links a:hover,
.nav__links a.active {
    color: var(--burgundy);
}

.nav__actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.nav__phone {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--graphite);
}

.nav__phone:hover {
    color: var(--burgundy);
}

/* Burger */
.burger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 44px;
    height: 44px;
    background: none;
    border: none;
    cursor: pointer;
    gap: 6px;
    padding: 0;
}

.burger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--graphite);
    border-radius: 2px;
    transition: all 0.3s var(--ease);
}

/* ── Mobile Menu ─────────────────────────── */
.mobile-menu {
    position: fixed;
    inset: 0;
    z-index: 1001;
    background: var(--cream);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s var(--ease), visibility 0.4s var(--ease);
}

.mobile-menu.open {
    opacity: 1;
    visibility: visible;
}

.mobile-menu__close {
    position: absolute;
    top: 16px;
    right: 20px;
    width: 48px;
    height: 48px;
    background: none;
    border: none;
    font-size: 1.8rem;
    color: var(--graphite);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: background 0.3s;
}

.mobile-menu__close:hover {
    background: var(--cream-dark);
}

.mobile-menu__links {
    list-style: none;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.mobile-menu__links a {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 600;
    color: var(--graphite);
    padding: 12px 40px;
    display: block;
    transition: color 0.3s;
}

.mobile-menu__links a:hover {
    color: var(--burgundy);
}

.mobile-menu__actions {
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.mobile-menu__phone {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--graphite);
}

/* ══════════════════════════════════════════
   HERO (Landing)
   ══════════════════════════════════════════ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, var(--graphite) 0%, #1a1a2e 50%, var(--burgundy-dark) 100%);
    overflow: hidden;
    padding-top: 72px;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.5;
}

.hero__inner {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    max-width: var(--container);
    margin: 0 auto;
    padding: 60px var(--gap);
}

.hero__content {
    color: var(--white);
}

.hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--gold-light);
    margin-bottom: 28px;
    backdrop-filter: blur(10px);
}

.hero__title {
    color: var(--white);
    margin-bottom: 20px;
    font-size: clamp(2.8rem, 5.5vw, 4.2rem);
}

.hero__title em {
    color: var(--gold-light);
    font-style: italic;
}

.hero__desc {
    font-size: 1.15rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 36px;
    max-width: 520px;
}

.hero__buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 50px;
}

.hero__stats {
    display: flex;
    gap: 40px;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.hero__stat-num {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--white);
    line-height: 1;
}

.hero__stat-label {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
    margin-top: 6px;
}

.hero__visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero__image-wrapper {
    position: relative;
    width: 100%;
    max-width: 480px;
    aspect-ratio: 3/4;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.4);
}

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

.hero__image-wrapper::after {
    content: '';
    position: absolute;
    inset: 0;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    pointer-events: none;
}

.hero__float-card {
    position: absolute;
    bottom: -20px;
    left: -30px;
    background: var(--white);
    border-radius: var(--radius);
    padding: 16px 24px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center;
    gap: 14px;
}

.hero__float-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--cream-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
}

.hero__float-text {
    font-size: 0.85rem;
    color: var(--text-light);
}

.hero__float-text strong {
    display: block;
    color: var(--graphite);
    font-size: 0.95rem;
}

/* ══════════════════════════════════════════
   FEATURES / ADVANTAGES
   ══════════════════════════════════════════ */
.features {
    background: var(--white);
}

.features__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--gap);
}

.feature-card {
    padding: 36px 28px;
    border-radius: var(--radius);
    border: 1px solid var(--border-light);
    transition: all var(--duration) var(--ease);
    text-align: center;
}

.feature-card:hover {
    border-color: var(--burgundy);
    box-shadow: 0 8px 30px var(--shadow);
    transform: translateY(-4px);
}

.feature-card__icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 20px;
    border-radius: 50%;
    background: var(--cream-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    transition: background 0.3s;
}

.feature-card:hover .feature-card__icon {
    background: var(--burgundy);
    color: var(--white);
}

.feature-card h3 {
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.feature-card p {
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.6;
    margin: 0 auto;
}

/* ══════════════════════════════════════════
   CATEGORIES (Landing)
   ══════════════════════════════════════════ */
.categories__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--gap);
}

.category-card {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    aspect-ratio: 3/4;
    cursor: pointer;
    group: true;
}

.category-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s var(--ease);
}

.category-card:hover img {
    transform: scale(1.05);
}

.category-card__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(45, 45, 45, 0.85) 0%, rgba(45, 45, 45, 0.1) 60%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 32px;
    transition: background 0.4s;
}

.category-card:hover .category-card__overlay {
    background: linear-gradient(to top, rgba(139, 34, 82, 0.85) 0%, rgba(139, 34, 82, 0.1) 60%);
}

.category-card__count {
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--gold-light);
    margin-bottom: 8px;
}

.category-card h3 {
    color: var(--white);
    font-size: 1.6rem;
    margin-bottom: 12px;
}

.category-card__arrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--white);
    font-size: 0.9rem;
    font-weight: 500;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.4s var(--ease);
}

.category-card:hover .category-card__arrow {
    opacity: 1;
    transform: translateY(0);
}

/* ══════════════════════════════════════════
   ABOUT / STORY
   ══════════════════════════════════════════ */
.about {
    background: var(--white);
}

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

.about__image {
    border-radius: var(--radius-lg);
    overflow: hidden;
    aspect-ratio: 4/5;
}

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

.about__content h2 {
    margin-bottom: 24px;
}

.about__content p {
    color: var(--text-light);
    margin-bottom: 16px;
    font-size: 1.05rem;
}

.about__highlights {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 32px;
}

.about__highlight {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.about__highlight-icon {
    font-size: 1.3rem;
    flex-shrink: 0;
    margin-top: 2px;
}

.about__highlight h4 {
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 4px;
}

.about__highlight p {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin: 0;
}

/* ══════════════════════════════════════════
   BESTSELLERS (Landing preview)
   ══════════════════════════════════════════ */
.bestsellers__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--gap);
}

/* ══════════════════════════════════════════
   PRODUCT CARD (shared for catalog)
   ══════════════════════════════════════════ */
.product-card {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid var(--border-light);
    transition: all var(--duration) var(--ease);
    cursor: pointer;
}

.product-card:hover {
    border-color: var(--burgundy);
    box-shadow: 0 12px 40px var(--shadow);
    transform: translateY(-4px);
}

.product-card__image {
    aspect-ratio: 3/4;
    overflow: hidden;
    background: #f0ece6;
    position: relative;
}

.product-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s var(--ease);
}

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

.product-card__badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: var(--burgundy);
    color: var(--white);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 5px 12px;
    border-radius: 50px;
}

.product-card__info {
    padding: 20px;
}

.product-card__art {
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--text-muted);
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-bottom: 6px;
}

.product-card__name {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--graphite);
    margin-bottom: 8px;
    line-height: 1.3;
}

.product-card__desc {
    font-size: 0.85rem;
    color: var(--text-light);
    margin-bottom: 12px;
}

.product-card__colors {
    display: flex;
    gap: 6px;
    margin-bottom: 12px;
}

.product-card__color {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    border: 2px solid var(--border);
}

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

.product-card__cta {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--burgundy);
    display: flex;
    align-items: center;
    gap: 6px;
    transition: gap 0.3s;
}

.product-card:hover .product-card__cta {
    gap: 10px;
}

/* ══════════════════════════════════════════
   PROCESS / HOW IT WORKS
   ══════════════════════════════════════════ */
.process {
    background: var(--cream-dark);
}

.process__steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--gap);
    position: relative;
}

.process__step {
    text-align: center;
    padding: 24px;
    position: relative;
}

.process__step-num {
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 700;
    color: var(--burgundy);
    opacity: 0.2;
    line-height: 1;
    margin-bottom: 16px;
}

.process__step h3 {
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.process__step p {
    font-size: 0.9rem;
    color: var(--text-light);
    margin: 0 auto;
}

/* ══════════════════════════════════════════
   FAQ
   ══════════════════════════════════════════ */
.faq__list {
    max-width: 800px;
    margin: 0 auto;
}

.faq__item {
    border-bottom: 1px solid var(--border);
    overflow: hidden;
}

.faq__question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px 0;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    font-family: var(--font-display);
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--graphite);
    transition: color 0.3s;
}

.faq__question:hover {
    color: var(--burgundy);
}

.faq__icon {
    font-size: 1.5rem;
    font-weight: 300;
    transition: transform 0.3s;
    color: var(--burgundy);
    flex-shrink: 0;
    margin-left: 20px;
}

.faq__item.active .faq__icon {
    transform: rotate(45deg);
}

.faq__answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s var(--ease), padding 0.4s var(--ease);
}

.faq__item.active .faq__answer {
    max-height: 300px;
}

.faq__answer p {
    padding-bottom: 24px;
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.7;
}

/* ══════════════════════════════════════════
   CTA / FORM SECTION
   ══════════════════════════════════════════ */
.cta-section {
    background: linear-gradient(135deg, var(--graphite) 0%, #1a1a2e 50%, var(--burgundy-dark) 100%);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.5;
}

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

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

.cta__text h2 {
    color: var(--white);
    margin-bottom: 16px;
}

.cta__text p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.1rem;
    margin-bottom: 32px;
}

.cta__contacts {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.cta__contact {
    display: flex;
    align-items: center;
    gap: 14px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 1rem;
    text-decoration: none;
    transition: color 0.3s;
}

.cta__contact:hover {
    color: var(--white);
}

.cta__contact-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}

/* Form */
.form {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 40px;
    color: var(--text);
}

.form h3 {
    font-size: 1.5rem;
    margin-bottom: 8px;
    color: var(--graphite);
}

.form > p {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 28px;
}

.form__group {
    margin-bottom: 20px;
}

.form__label {
    display: block;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text);
    margin-bottom: 8px;
}

.form__input,
.form__select,
.form__textarea {
    width: 100%;
    padding: 14px 18px;
    border: 1.5px solid var(--border);
    border-radius: var(--radius-sm);
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--text);
    background: var(--cream);
    transition: border-color 0.3s, box-shadow 0.3s;
    outline: none;
}

.form__input:focus,
.form__select:focus,
.form__textarea:focus {
    border-color: var(--burgundy);
    box-shadow: 0 0 0 3px rgba(139, 34, 82, 0.1);
}

.form__input::placeholder,
.form__textarea::placeholder {
    color: var(--text-muted);
}

.form__textarea {
    resize: vertical;
    min-height: 100px;
}

.form__row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.form__submit {
    width: 100%;
    margin-top: 8px;
}

.form__note {
    font-size: 0.78rem;
    color: var(--text-muted);
    text-align: center;
    margin-top: 14px;
}

/* ══════════════════════════════════════════
   FOOTER
   ══════════════════════════════════════════ */
.footer {
    background: var(--graphite);
    color: rgba(255, 255, 255, 0.6);
    padding: 60px 0 30px;
}

.footer__inner {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer__brand {
    max-width: 300px;
}

.footer__logo {
    font-family: var(--font-display);
    font-size: 1.8rem;
    font-weight: 700;
    font-style: italic;
    color: var(--white);
    margin-bottom: 14px;
}

.footer__brand p {
    font-size: 0.9rem;
    line-height: 1.7;
}

.footer__col h4 {
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--white);
    margin-bottom: 20px;
}

.footer__col ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer__col a {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    transition: color 0.3s;
}

.footer__col a:hover {
    color: var(--white);
}

.footer__bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 0.82rem;
}

.footer__social {
    display: flex;
    gap: 12px;
}

.footer__social a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.6);
    transition: all 0.3s;
}

.footer__social a:hover {
    background: var(--burgundy);
    border-color: var(--burgundy);
    color: var(--white);
}

/* ══════════════════════════════════════════
   CATALOG PAGES (sets, bras, panties)
   ══════════════════════════════════════════ */
.page-hero {
    padding: 140px 0 60px;
    background: linear-gradient(135deg, var(--graphite) 0%, #1a1a2e 50%, var(--burgundy-dark) 100%);
    text-align: center;
    color: var(--white);
    position: relative;
}

.page-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.5;
}

.page-hero .container {
    position: relative;
    z-index: 2;
}

.page-hero h1 {
    color: var(--white);
    margin-bottom: 12px;
}

.page-hero p {
    color: rgba(255, 255, 255, 0.65);
    font-size: 1.1rem;
    margin: 0 auto;
}

.page-hero .breadcrumb {
    margin-bottom: 24px;
    font-size: 0.85rem;
}

.page-hero .breadcrumb a {
    color: rgba(255, 255, 255, 0.5);
}

.page-hero .breadcrumb a:hover {
    color: var(--white);
}

.page-hero .breadcrumb span {
    color: var(--gold-light);
}

/* Catalog Filter */
.catalog-filter {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 40px;
}

.catalog-filter__btn {
    padding: 10px 24px;
    border: 1.5px solid var(--border);
    border-radius: 50px;
    background: var(--white);
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text);
    cursor: pointer;
    transition: all 0.3s;
}

.catalog-filter__btn:hover,
.catalog-filter__btn.active {
    border-color: var(--burgundy);
    background: var(--burgundy);
    color: var(--white);
}

/* Catalog Grid */
.catalog-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--gap);
}

.catalog-grid--3 {
    grid-template-columns: repeat(3, 1fr);
}

/* Catalog CTA Banner */
.catalog-cta {
    background: var(--cream-dark);
    border-radius: var(--radius-lg);
    padding: 48px;
    text-align: center;
    margin-top: 60px;
}

.catalog-cta h3 {
    font-size: 1.8rem;
    margin-bottom: 12px;
}

.catalog-cta p {
    color: var(--text-light);
    margin: 0 auto 24px;
}

/* Subcategory heading in catalog */
.catalog-subheading {
    grid-column: 1 / -1;
    padding: 20px 0 4px;
    border-bottom: 1px solid var(--border);
    margin-bottom: 8px;
}

.catalog-subheading h3 {
    font-size: 1.3rem;
    color: var(--graphite);
}

.catalog-subheading span {
    font-size: 0.85rem;
    color: var(--text-muted);
    font-weight: 400;
    margin-left: 10px;
}

/* ══════════════════════════════════════════
   THANK YOU PAGE
   ══════════════════════════════════════════ */
.thankyou {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 120px var(--gap) 60px;
}

.thankyou__card {
    max-width: 600px;
}

.thankyou__icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 28px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--burgundy), var(--burgundy-light));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: var(--white);
}

.thankyou h1 {
    font-size: 2.4rem;
    margin-bottom: 12px;
}

.thankyou > .thankyou__card > p {
    color: var(--text-light);
    font-size: 1.1rem;
    margin: 0 auto 40px;
}

.thankyou__steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 40px;
}

.thankyou__step {
    padding: 24px 16px;
    background: var(--white);
    border-radius: var(--radius);
    border: 1px solid var(--border-light);
}

.thankyou__step-num {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 700;
    color: var(--burgundy);
    opacity: 0.3;
    margin-bottom: 8px;
}

.thankyou__step h4 {
    font-size: 0.95rem;
    margin-bottom: 6px;
}

.thankyou__step p {
    font-size: 0.82rem;
    color: var(--text-muted);
    margin: 0 auto;
}

.thankyou__buttons {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

/* ══════════════════════════════════════════
   FLOATING ACTION BUTTONS (mobile)
   ══════════════════════════════════════════ */
.fab {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 999;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.fab__btn {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--white);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    transition: all 0.3s var(--ease);
    text-decoration: none;
}

.fab__btn:hover {
    transform: scale(1.1);
    color: var(--white);
}

.fab__btn--phone {
    background: var(--burgundy);
}

.fab__btn--telegram {
    background: #0088cc;
}

/* ══════════════════════════════════════════
   REVEAL ANIMATIONS
   ══════════════════════════════════════════ */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ══════════════════════════════════════════
   PRODUCT MODAL
   ══════════════════════════════════════════ */
.product-modal {
    position: fixed;
    inset: 0;
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s var(--ease), visibility 0.3s;
}

.product-modal.open {
    opacity: 1;
    visibility: visible;
}

.product-modal__overlay {
    position: absolute;
    inset: 0;
    background: rgba(45, 45, 45, 0.7);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
}

.product-modal__content {
    position: relative;
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    max-width: 880px;
    width: 100%;
    max-height: 90vh;
    display: grid;
    grid-template-columns: 1fr 1fr;
    box-shadow: 0 40px 80px rgba(0,0,0,0.2);
    transform: translateY(30px) scale(0.97);
    transition: transform 0.35s var(--ease);
}

.product-modal.open .product-modal__content {
    transform: translateY(0) scale(1);
}

.product-modal__close {
    position: absolute;
    top: 16px;
    right: 16px;
    z-index: 10;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: none;
    background: var(--white);
    box-shadow: 0 2px 12px rgba(0,0,0,0.15);
    font-size: 1.2rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
    color: var(--graphite);
}

.product-modal__close:hover {
    background: var(--burgundy);
    color: var(--white);
    transform: rotate(90deg);
}

.product-modal__image {
    background: #f0ece6;
    aspect-ratio: 3/4;
    overflow: hidden;
}

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

.product-modal__info {
    padding: 40px 36px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 16px;
    overflow-y: auto;
}

.product-modal__badge {
    display: inline-flex;
    align-self: flex-start;
    background: var(--burgundy);
    color: var(--white);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 5px 14px;
    border-radius: 50px;
}

.product-modal__art {
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--text-muted);
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.product-modal__name {
    font-family: var(--font-display);
    font-size: 1.6rem;
    font-weight: 600;
    color: var(--graphite);
    line-height: 1.25;
}

.product-modal__desc {
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.6;
}

.product-modal__details {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 16px 0;
    border-top: 1px solid var(--border-light);
    border-bottom: 1px solid var(--border-light);
}

.product-modal__detail {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.88rem;
    color: var(--text);
}

.product-modal__detail-icon {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    background: var(--cream-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    flex-shrink: 0;
}

.product-modal__detail strong {
    font-weight: 600;
    margin-right: 4px;
}

.product-modal__actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding-top: 8px;
}

.product-modal__actions .btn {
    text-align: center;
    justify-content: center;
}

.product-modal__actions .btn--primary {
    font-size: 1rem;
    padding: 14px 28px;
}

.product-modal__colors {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    padding: 16px 0;
    border-top: 1px solid var(--border-light);
    border-bottom: 1px solid var(--border-light);
}

.product-modal__colors-label {
    width: 100%;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-muted);
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-bottom: 4px;
}

.product-modal__swatch {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    border: 2px solid var(--border);
    transition: transform 0.2s, border-color 0.2s;
    cursor: default;
    position: relative;
}

.product-modal__swatch:hover {
    transform: scale(1.2);
    border-color: var(--burgundy);
}

.product-modal__swatch--light {
    border-color: #ccc;
}

.product-modal__swatch-label {
    display: none;
    position: absolute;
    bottom: calc(100% + 6px);
    left: 50%;
    transform: translateX(-50%);
    background: var(--graphite);
    color: var(--white);
    font-size: 0.7rem;
    padding: 3px 8px;
    border-radius: 4px;
    white-space: nowrap;
    pointer-events: none;
}

.product-modal__swatch:hover .product-modal__swatch-label {
    display: block;
}

.product-modal__hint {
    font-size: 0.78rem;
    color: var(--text-muted);
    text-align: center;
}

@media (prefers-reduced-motion: reduce) {
    .reveal { opacity: 1; transform: none; transition: none; }
}

.no-js .reveal {
    opacity: 1;
    transform: none;
}

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

/* Tablet */
@media (max-width: 1024px) {
    :root {
        --section-pad: 70px;
    }

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

    .hero__desc { margin: 0 auto 32px; }
    .hero__buttons { justify-content: center; }
    .hero__stats { justify-content: center; }

    .hero__visual {
        order: -1;
    }

    .hero__image-wrapper {
        max-width: 350px;
    }

    .hero__float-card { display: none; }

    .features__grid { grid-template-columns: repeat(2, 1fr); }
    .categories__grid { grid-template-columns: repeat(2, 1fr); }
    .bestsellers__grid { grid-template-columns: repeat(2, 1fr); }
    .about__grid { grid-template-columns: 1fr; gap: 40px; }
    .process__steps { grid-template-columns: repeat(2, 1fr); }
    .cta__grid { grid-template-columns: 1fr; }
    .catalog-grid { grid-template-columns: repeat(3, 1fr); }

    .footer__inner { grid-template-columns: 1fr 1fr; gap: 30px; }

    .product-modal__content { grid-template-columns: 1fr 1fr; max-width: 750px; }
    .product-modal__name { font-size: 1.4rem; }
    .product-modal__info { padding: 30px 24px; }
}

/* Mobile */
@media (max-width: 768px) {
    :root {
        --section-pad: 50px;
        --gap: 16px;
    }

    .nav__links { display: none; }
    .nav__phone { display: none; }
    .burger { display: flex; }

    .hero {
        min-height: auto;
        padding: 100px 0 60px;
    }

    .hero__stats { flex-wrap: wrap; gap: 24px; }

    .features__grid { grid-template-columns: 1fr; }
    .categories__grid { grid-template-columns: 1fr; }
    .bestsellers__grid { grid-template-columns: repeat(2, 1fr); }
    .process__steps { grid-template-columns: 1fr 1fr; }

    .catalog-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .cta__grid { gap: 40px; }
    .form { padding: 28px 20px; }
    .form__row { grid-template-columns: 1fr; }

    .footer__inner { grid-template-columns: 1fr; }
    .footer__bottom { flex-direction: column; gap: 16px; text-align: center; }

    .thankyou__steps { grid-template-columns: 1fr; }
    .about__highlights { grid-template-columns: 1fr; }

    .product-modal { padding: 0; }
    .product-modal__content {
        grid-template-columns: 1fr;
        max-height: 100vh;
        border-radius: 0;
        height: 100vh;
    }
    .product-modal__image {
        aspect-ratio: 4/3;
        max-height: 40vh;
    }
    .product-modal__info {
        padding: 24px 20px 32px;
        overflow-y: auto;
    }
    .product-modal__name { font-size: 1.3rem; }
    .product-modal__close {
        top: 12px;
        right: 12px;
        width: 36px;
        height: 36px;
    }
}

/* Small mobile */
@media (max-width: 480px) {
    h1 { font-size: 2rem; }
    h2 { font-size: 1.6rem; }

    .hero__title { font-size: 2.2rem; }

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

    .product-card__info { padding: 14px; }
    .product-card__name { font-size: 0.95rem; }

    .page-hero { padding: 120px 0 40px; }
    .catalog-grid { grid-template-columns: 1fr 1fr; }
}
