:root {
    --rose: #b5446e;
    --rose-light: #d4708f;
    --rose-deep: #8c2f55;
    --blush: #f8e8ed;
    --blush-deep: #f0d4dc;
    --cream: #faf6f2;
    --warm: #f5ede6;
    --gold: #b89a5a;
    --gold-light: #d4bf8a;
    --green: #3d6b5e;
    --green-deep: #2a4f44;
    --charcoal: #1e1e1e;
    --dark: #2c2828;
    --text: #2c2828;
    --text-secondary: #6b6363;
    --text-muted: #a09898;
    --white: #ffffff;
    --border: #ebe3df;
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.04);
    --shadow: 0 4px 20px rgba(0,0,0,0.06);
    --shadow-lg: 0 20px 60px rgba(0,0,0,0.1);
    --radius: 12px;
    --radius-sm: 8px;
    --radius-lg: 20px;
    --ease: cubic-bezier(0.4, 0, 0.2, 1);
    --ease-out: cubic-bezier(0, 0, 0.2, 1);
    --font-display: 'Cormorant Garamond', 'Georgia', serif;
    --font-body: 'Montserrat', -apple-system, sans-serif;
    --container: 1200px;
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    font-family: var(--font-body);
    font-size: 15px;
    line-height: 1.65;
    color: var(--text);
    background: var(--cream);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--rose); text-decoration: none; transition: color 0.3s var(--ease); }
a:hover { color: var(--rose-deep); }
em { font-style: italic; color: var(--rose); }

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

/* ===================== HEADER ===================== */

.site-header {
    position: fixed;
    inset: 0 0 auto;
    z-index: 1000;
    background: rgba(250, 246, 242, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    transition: all 0.4s var(--ease);
}

.site-header.scrolled {
    background: rgba(250, 246, 242, 0.95);
    box-shadow: 0 1px 0 var(--border);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
}

.site-logo {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    color: var(--text);
}

.logo-text {
    font-family: var(--font-display);
    font-size: clamp(20px, 2.5vw, 26px);
    font-weight: 600;
    letter-spacing: 0.5px;
    display: inline-flex;
    align-items: baseline;
}

.logo-accent {
    color: var(--rose);
    font-weight: 700;
}

.logo-dot {
    font-weight: 400;
    color: var(--text-muted);
    font-size: 0.7em;
    margin-left: 1px;
}

.main-nav { display: flex; align-items: center; gap: 36px; }

.nav-link {
    font-size: 12px;
    font-weight: 600;
    color: var(--text);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    padding: 4px 0;
    position: relative;
}

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

.nav-link:hover, .nav-link.active { color: var(--rose); }
.nav-link:hover::after, .nav-link.active::after { width: 100%; }

.nav-phone {
    font-weight: 600;
    font-size: 14px;
    color: var(--text);
    letter-spacing: 0.5px;
}

.nav-burger {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    flex-direction: column;
    gap: 6px;
    z-index: 1002;
}

.nav-burger span {
    display: block;
    width: 24px;
    height: 1.5px;
    background: var(--text);
    transition: all 0.3s var(--ease);
}

/* ===================== HERO ===================== */

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 120px 0 80px;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 120% 80% at 50% 100%, var(--blush) 0%, transparent 50%),
        radial-gradient(ellipse 80% 60% at 100% 0%, rgba(184, 154, 90, 0.08) 0%, transparent 50%),
        var(--cream);
}

.hero-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    will-change: transform;
    pointer-events: none;
}

.hero-orb-1 {
    width: 500px;
    height: 500px;
    background: rgba(181, 68, 110, 0.07);
    top: 10%;
    right: -5%;
}

.hero-orb-2 {
    width: 400px;
    height: 400px;
    background: rgba(184, 154, 90, 0.06);
    bottom: -10%;
    left: -5%;
}

.hero-orb-3 {
    width: 300px;
    height: 300px;
    background: rgba(212, 112, 143, 0.05);
    top: 50%;
    left: 40%;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.hero-label {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-bottom: 32px;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--rose);
}

.hero-label-line {
    width: 40px;
    height: 1px;
    background: var(--rose);
    opacity: 0.4;
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(44px, 8vw, 84px);
    font-weight: 400;
    line-height: 1.05;
    color: var(--text);
    margin-bottom: 24px;
    letter-spacing: -0.5px;
}

.hero-title em {
    font-weight: 600;
}

.hero-subtitle {
    font-size: clamp(15px, 2vw, 18px);
    color: var(--text-secondary);
    max-width: 500px;
    margin: 0 auto 44px;
    line-height: 1.7;
}

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

.hero-scroll-hint {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    transition: opacity 0.3s;
}

.hero-scroll-hint:hover { opacity: 0.6; }

.hero-scroll-hint .scroll-chevrons {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
}

.hero-scroll-hint .scroll-chevron {
    width: 16px;
    height: 16px;
    color: var(--rose);
    opacity: 0;
    animation: chevronCascade 2s var(--ease) infinite;
}

.hero-scroll-hint .scroll-chevron:nth-child(1) { animation-delay: 0s; }
.hero-scroll-hint .scroll-chevron:nth-child(2) { animation-delay: 0.15s; }
.hero-scroll-hint .scroll-chevron:nth-child(3) { animation-delay: 0.3s; }

.hero-scroll-hint .scroll-label {
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--rose-light);
    opacity: 0.45;
}

/* ===================== BUTTONS ===================== */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 32px;
    border-radius: 100px;
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    text-decoration: none;
    border: 1.5px solid transparent;
    cursor: pointer;
    transition: all 0.4s var(--ease);
    white-space: nowrap;
}

.btn-primary {
    background: var(--rose);
    color: var(--white);
    border-color: var(--rose);
}

.btn-primary:hover {
    background: var(--rose-deep);
    border-color: var(--rose-deep);
    color: var(--white);
    box-shadow: 0 8px 30px rgba(181, 68, 110, 0.3);
}

.btn-outline {
    background: transparent;
    color: var(--rose);
    border-color: var(--rose);
}

.btn-outline:hover {
    background: var(--rose);
    color: var(--white);
}

.btn-ghost {
    background: transparent;
    color: var(--text);
    border-color: transparent;
    padding-left: 8px;
    padding-right: 8px;
}

.btn-ghost:hover { color: var(--rose); }

.btn-ghost-light {
    background: transparent;
    color: rgba(255,255,255,0.8);
    border-color: rgba(255,255,255,0.25);
}

.btn-ghost-light:hover {
    background: rgba(255,255,255,0.1);
    color: var(--white);
    border-color: rgba(255,255,255,0.5);
}

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

.btn-white:hover {
    background: var(--blush);
    border-color: var(--blush);
    box-shadow: 0 8px 30px rgba(0,0,0,0.15);
}

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

.btn-block { width: 100%; }

.btn-magnetic {
    transition: all 0.4s var(--ease), transform 0.2s var(--ease);
}

/* Bloom hover effect */
.btn-primary,
.btn-outline,
.btn-white {
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-primary::before,
.btn-outline::before,
.btn-white::before {
    content: '';
    position: absolute;
    width: 0;
    height: 0;
    border-radius: 50%;
    left: var(--mx, 50%);
    top: var(--my, 50%);
    transform: translate(-50%, -50%);
    transition: width 0.6s var(--ease), height 0.6s var(--ease);
    z-index: -1;
}

.btn-primary::before { background: var(--rose-deep); }
.btn-outline::before { background: var(--rose); }
.btn-white::before { background: var(--blush); }

.btn-primary:hover::before,
.btn-outline:hover::before,
.btn-white:hover::before {
    width: 320px;
    height: 320px;
}

/* Bloom petals animation */
.bloom-petal {
    animation: bloomFloat 0.9s var(--ease) forwards;
}

@keyframes bloomFloat {
    0% {
        opacity: 0;
        transform: translate(0, 0) rotate(0deg) scale(0.3);
    }
    20% {
        opacity: 0.9;
        transform: translate(calc(var(--dx) * 0.2), calc(var(--dy) * 0.2)) rotate(calc(var(--rot) * 0.2)) scale(1);
    }
    100% {
        opacity: 0;
        transform: translate(var(--dx), var(--dy)) rotate(var(--rot)) scale(0.4);
    }
}

/* ===================== PROMO BANNER ===================== */

.promo-strip {
    padding: 0;
}

.promo-banner {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    margin-top: -40px;
}

.promo-banner-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--rose) 0%, var(--rose-deep) 50%, #6b2040 100%);
}

.promo-banner-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 20% 50%, rgba(255,255,255,0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(184,154,90,0.12) 0%, transparent 50%);
}

.promo-banner-content {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    padding: 48px 56px;
    color: var(--white);
}

.promo-tag {
    display: inline-block;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    background: rgba(255,255,255,0.15);
    padding: 4px 14px;
    border-radius: 50px;
    margin-bottom: 12px;
}

.promo-title {
    font-family: var(--font-display);
    font-size: clamp(28px, 5vw, 44px);
    font-weight: 600;
    line-height: 1.1;
    margin-bottom: 8px;
}

.promo-desc {
    font-size: 14px;
    color: rgba(255,255,255,0.7);
    max-width: 380px;
    line-height: 1.6;
}

/* ===================== ADVANTAGES ===================== */

.section-light {
    background: var(--white);
}

.advantages-strip {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    background: var(--border);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
}

.advantage {
    background: var(--white);
    padding: 40px 32px;
    transition: background 0.4s var(--ease);
}

.advantage:hover {
    background: var(--blush);
}

.advantage-num {
    font-family: var(--font-display);
    font-size: 36px;
    font-weight: 300;
    color: var(--rose-light);
    margin-bottom: 16px;
    line-height: 1;
}

.advantage h3 {
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--text);
}

.advantage p {
    font-size: 13px;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* ===================== SECTIONS ===================== */

.section {
    padding: 100px 0;
    position: relative;
}

.section-accent {
    background:
        radial-gradient(ellipse 80% 60% at 50% 100%, rgba(248, 232, 237, 0.5) 0%, transparent 60%),
        var(--cream);
}

.section-header {
    text-align: center;
    margin-bottom: 56px;
}

.section-eyebrow {
    display: block;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--rose);
    margin-bottom: 12px;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(32px, 5vw, 48px);
    font-weight: 400;
    color: var(--text);
    line-height: 1.15;
}

.section-line {
    width: 48px;
    height: 1px;
    background: var(--rose);
    margin: 20px auto 0;
    opacity: 0.4;
}

.section-cta {
    text-align: center;
    margin-top: 48px;
}

/* ===================== PRODUCTS ===================== */

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 20px;
}

.product-card {
    border-radius: var(--radius);
    overflow: hidden;
    background: var(--white);
    transition: all 0.5s var(--ease);
    position: relative;
}

.product-card::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: var(--radius);
    border: 1px solid var(--border);
    transition: border-color 0.4s var(--ease);
    pointer-events: none;
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.product-card:hover::after {
    border-color: var(--blush-deep);
}

.product-card-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.product-image-wrap {
    position: relative;
    padding-top: 115%;
    overflow: hidden;
    background: var(--warm);
}

.product-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s var(--ease-out);
}

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

.product-image-placeholder {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background:
        radial-gradient(ellipse 80% 60% at 50% 40%, rgba(181, 68, 110, 0.06) 0%, transparent 70%),
        linear-gradient(135deg, #f5eaef 0%, #f0e6e0 50%, #ece4de 100%);
    color: var(--rose-light);
}

.placeholder-flower {
    width: 64px;
    height: 64px;
    animation: placeholderSpin 20s linear infinite;
}

.placeholder-label {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--rose-light);
    opacity: 0.5;
}

@keyframes placeholderSpin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.product-image-placeholder-lg {
    position: relative;
    padding-top: 0;
    min-height: 400px;
    border-radius: var(--radius);
}

.product-image-placeholder-lg .placeholder-flower {
    width: 96px;
    height: 96px;
}

.product-image-placeholder-lg .placeholder-label {
    font-size: 13px;
}

.product-discount {
    position: absolute;
    top: 16px;
    right: 16px;
    background: var(--rose);
    color: var(--white);
    padding: 4px 12px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.5px;
    z-index: 2;
}

.product-discount-lg { font-size: 15px; padding: 6px 16px; }

.product-occasion {
    position: absolute;
    bottom: 16px;
    left: 16px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(8px);
    color: var(--text);
    padding: 4px 12px;
    border-radius: 50px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.5px;
    z-index: 2;
}

.product-info {
    padding: 20px;
}

.product-name {
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 4px;
    color: var(--text);
}

.product-composition {
    font-size: 12px;
    color: var(--text-muted);
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.product-price-block {
    display: flex;
    align-items: baseline;
    gap: 10px;
}

.product-price {
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 700;
    color: var(--text);
}

.product-price-old {
    font-size: 14px;
    color: var(--text-muted);
    text-decoration: line-through;
}

.product-price-big {
    font-family: var(--font-display);
    font-size: 36px;
    font-weight: 700;
    color: var(--text);
}

/* ===================== PRODUCT DETAIL ===================== */

.product-section { background: var(--cream); }

.breadcrumbs {
    padding: 24px 0;
    font-size: 12px;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.breadcrumbs a { color: var(--text-muted); }
.breadcrumbs a:hover { color: var(--rose); }
.breadcrumb-sep { color: var(--border); }

.product-detail {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 64px;
    align-items: start;
}

.product-detail-image {
    border-radius: var(--radius-lg);
    overflow: hidden;
    position: relative;
}

.product-detail-image img { width: 100%; border-radius: var(--radius-lg); }

.product-detail-name {
    font-family: var(--font-display);
    font-size: 40px;
    font-weight: 400;
    margin-bottom: 16px;
    line-height: 1.15;
}

.product-detail-price {
    display: flex;
    align-items: baseline;
    gap: 16px;
    margin-bottom: 28px;
    padding-bottom: 28px;
    border-bottom: 1px solid var(--border);
}

.product-detail-desc {
    margin-bottom: 28px;
    color: var(--text-secondary);
    line-height: 1.75;
}

.product-params {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-bottom: 36px;
}

.param-item {
    background: var(--warm);
    padding: 14px 18px;
    border-radius: var(--radius-sm);
}

.param-label {
    display: block;
    font-size: 10px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 3px;
}

.param-value {
    font-weight: 600;
    font-size: 14px;
    color: var(--text);
}

/* ===================== ORDER FORM ===================== */

/* ===================== QUANTITY PICKER ===================== */

.quantity-picker {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 24px 32px;
    margin-bottom: 16px;
    box-shadow: var(--shadow);
}

.quantity-picker h3 {
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 400;
    margin-bottom: 16px;
}

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

.qty-btn {
    width: 40px;
    height: 40px;
    border: 1.5px solid var(--border);
    border-radius: 50%;
    background: var(--white);
    font-size: 18px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s var(--ease);
    color: var(--text);
}

.qty-btn:hover {
    border-color: var(--rose);
    color: var(--rose);
    background: var(--blush);
}

.qty-input {
    width: 60px;
    text-align: center;
    font-size: 18px;
    font-weight: 600;
    border: 1.5px solid var(--border);
    border-radius: 8px;
    padding: 6px;
    background: var(--cream);
}

.qty-label {
    font-size: 14px;
    color: var(--text-muted);
}

.qty-total {
    margin-top: 12px;
    font-size: 15px;
    color: var(--text-secondary);
}

.qty-total strong {
    font-size: 20px;
    color: var(--text);
}

.order-form-wrapper {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 32px;
    box-shadow: var(--shadow);
}

.order-form-wrapper h3 {
    font-family: var(--font-display);
    font-size: 26px;
    font-weight: 400;
    margin-bottom: 24px;
}

.form-group { margin-bottom: 16px; }

.form-group label {
    display: block;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
    color: var(--text);
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 14px 18px;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    font-family: var(--font-body);
    font-size: 15px;
    color: var(--text);
    background: var(--cream);
    transition: all 0.3s var(--ease);
    outline: none;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    border-color: var(--rose);
    background: var(--white);
    box-shadow: 0 0 0 3px rgba(181, 68, 110, 0.08);
}

.form-group textarea { resize: vertical; min-height: 80px; }

.form-note {
    font-size: 11px;
    color: var(--text-muted);
    margin-top: 12px;
    text-align: center;
}

.btn-loader {
    width: 18px;
    height: 18px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-top-color: var(--white);
    border-radius: 50%;
    animation: spin 0.6s linear infinite;
}

/* ===================== ORDER SUCCESS ===================== */

.order-success {
    text-align: center;
    padding: 48px 20px;
}

.order-success h3 {
    font-family: var(--font-display);
    font-size: 32px;
    font-weight: 400;
    color: var(--green);
    margin-bottom: 8px;
}

.order-success p { color: var(--text-secondary); }

.success-flower {
    position: relative;
    width: 100px;
    height: 100px;
    margin: 0 auto 28px;
}

.flower-center {
    position: absolute;
    width: 24px;
    height: 24px;
    background: var(--gold);
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    animation: bloomCenter 0.6s ease-out 0.2s both;
}

.flower-petal {
    position: absolute;
    width: 22px;
    height: 36px;
    background: var(--rose-light);
    border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
    top: 50%;
    left: 50%;
    transform-origin: center bottom;
    opacity: 0;
    animation: bloomPetal 0.5s ease-out both;
}

.fp-1 { transform: translate(-50%, -100%) rotate(0deg); animation-delay: 0.3s; }
.fp-2 { transform: translate(-50%, -100%) rotate(45deg); animation-delay: 0.4s; background: var(--rose); }
.fp-3 { transform: translate(-50%, -100%) rotate(90deg); animation-delay: 0.5s; }
.fp-4 { transform: translate(-50%, -100%) rotate(135deg); animation-delay: 0.6s; background: var(--rose); }
.fp-5 { transform: translate(-50%, -100%) rotate(180deg); animation-delay: 0.7s; }
.fp-6 { transform: translate(-50%, -100%) rotate(225deg); animation-delay: 0.8s; background: var(--rose); }
.fp-7 { transform: translate(-50%, -100%) rotate(270deg); animation-delay: 0.9s; }
.fp-8 { transform: translate(-50%, -100%) rotate(315deg); animation-delay: 1.0s; background: var(--rose); }

/* ===================== CTA ===================== */

.cta-section {
    background: linear-gradient(135deg, var(--rose-deep) 0%, #6b2040 40%, #3d1528 100%);
    color: var(--white);
    overflow: hidden;
    position: relative;
}

.cta-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 60% 80% at 80% 50%, rgba(184, 154, 90, 0.1) 0%, transparent 60%),
        radial-gradient(ellipse 60% 80% at 20% 80%, rgba(255, 255, 255, 0.03) 0%, transparent 60%);
}

.cta-card {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap;
}

.cta-content h2 {
    font-family: var(--font-display);
    font-size: clamp(28px, 4vw, 40px);
    font-weight: 400;
    line-height: 1.2;
    margin-bottom: 12px;
}

.cta-content h2 em {
    color: rgba(255, 255, 255, 0.85);
    text-shadow: 0 0 30px rgba(212, 112, 143, 0.3);
}

.cta-content p {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.7);
    max-width: 420px;
    line-height: 1.6;
}

.cta-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

/* ===================== CONTACTS ===================== */

.contacts-section { background: var(--cream); }

.contacts-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: start;
}

.contact-item {
    display: flex;
    gap: 16px;
    padding: 24px;
    border-radius: var(--radius);
    background: var(--white);
    border: 1px solid var(--border);
    margin-bottom: 12px;
    transition: all 0.4s var(--ease);
}

.contact-item:hover {
    border-color: var(--blush-deep);
    box-shadow: var(--shadow);
}

.contact-icon {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--blush);
    border-radius: 12px;
    color: var(--rose);
    transition: all 0.3s var(--ease);
}

.contact-icon svg {
    width: 20px;
    height: 20px;
}

.contact-item:hover .contact-icon {
    background: var(--rose);
    color: var(--white);
    transform: translateY(-2px);
}
.contact-item h3 { font-size: 13px; font-weight: 700; margin-bottom: 2px; letter-spacing: 0.3px; }
.contact-item p { font-size: 14px; color: var(--text-secondary); }

/* ===================== STEPS ===================== */

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

.step { display: flex; gap: 16px; align-items: flex-start; }

.step-number {
    width: 36px;
    height: 36px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--rose);
    color: var(--white);
    border-radius: 50%;
    font-size: 13px;
    font-weight: 700;
}

.step-content h4 { font-size: 15px; font-weight: 600; margin-bottom: 2px; }
.step-content p { font-size: 13px; color: var(--text-secondary); line-height: 1.5; }

/* ===================== CARD ===================== */

.card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
}

.card-header { padding: 20px 24px; border-bottom: 1px solid var(--border); }
.card-header h2 { font-family: var(--font-display); font-size: 22px; font-weight: 600; }
.card-body { padding: 24px; }

.prose h2 { font-family: var(--font-display); font-size: 22px; font-weight: 600; margin: 28px 0 12px; }
.prose h2:first-child { margin-top: 0; }
.prose p { margin-bottom: 12px; line-height: 1.7; color: var(--text-secondary); }
.prose ul { margin: 0 0 12px 20px; color: var(--text-secondary); }
.prose li { margin-bottom: 6px; line-height: 1.6; }

/* ===================== CATALOG FILTERS ===================== */

.catalog-section { background: var(--cream); }

.catalog-filters { margin-bottom: 32px; }

.filters-form {
    display: flex;
    gap: 16px;
    align-items: end;
    flex-wrap: wrap;
    background: var(--white);
    padding: 20px 24px;
    border-radius: var(--radius);
    border: 1px solid var(--border);
}

.filter-group { flex: 1; min-width: 160px; }

.filter-group label {
    display: block;
    font-size: 10px;
    font-weight: 700;
    color: var(--text-muted);
    margin-bottom: 6px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.filter-group select {
    width: 100%;
    padding: 10px 14px;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    font-family: var(--font-body);
    font-size: 14px;
    background: var(--cream);
    color: var(--text);
    cursor: pointer;
    outline: none;
    transition: border-color 0.3s var(--ease);
}

.filter-group select:focus { border-color: var(--rose); }

.filter-reset {
    font-size: 12px;
    color: var(--text-muted);
    padding: 12px 0;
    letter-spacing: 0.5px;
}

/* ===================== EMPTY ===================== */

.empty-state { text-align: center; padding: 80px 20px; }
.empty-icon { font-size: 48px; margin-bottom: 16px; }
.empty-state h3 { font-family: var(--font-display); font-size: 24px; margin-bottom: 8px; }
.empty-state p { color: var(--text-secondary); }

/* ===================== FOOTER SPACER ===================== */

.footer-spacer {
    height: 48px;
    background: var(--cream);
    position: relative;
}

.footer-spacer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 20%, rgba(181, 68, 110, 0.15) 50%, transparent 80%);
}

.footer-spacer::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 20%, rgba(0, 0, 0, 0.06) 50%, transparent 80%);
}

/* ===================== FOOTER ===================== */

.site-footer {
    background: var(--charcoal);
    color: rgba(255, 255, 255, 0.8);
    padding: 72px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 48px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-logo .logo-text { color: var(--white); }
.footer-logo .logo-dot { color: rgba(255, 255, 255, 0.4); }
.footer-logo .logo-accent { color: var(--rose-light); }

.footer-tagline {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
    margin-top: 12px;
    line-height: 1.6;
}

.footer-contacts h4,
.footer-links h4,
.footer-socials h4 {
    font-family: var(--font-display);
    font-size: 18px;
    margin-bottom: 16px;
    color: var(--white);
    font-weight: 600;
}

.footer-contacts p { font-size: 14px; margin-bottom: 10px; color: rgba(255, 255, 255, 0.6); }
.footer-contacts a { color: rgba(255, 255, 255, 0.7); }
.footer-contacts a:hover { color: var(--rose-light); }

.footer-contact-line {
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-icon {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
    opacity: 0.6;
}

.footer-links { display: flex; flex-direction: column; }
.footer-links a {
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
    padding: 4px 0;
    transition: color 0.3s;
}
.footer-links a:hover { color: var(--rose-light); }

.social-links { display: flex; gap: 10px; }

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.06);
    color: rgba(255, 255, 255, 0.5);
    transition: all 0.3s var(--ease);
}

.social-link:hover { transform: translateY(-2px); }
.social-link.whatsapp:hover { background: #25d366; color: var(--white); }
.social-link.telegram:hover { background: #0088cc; color: var(--white); }

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.35);
}

.footer-bottom a { color: rgba(255, 255, 255, 0.35); }
.footer-bottom a:hover { color: var(--rose-light); }

/* ===================== SCROLL REVEAL ===================== */

.reveal {
    opacity: 0;
    transform: translateY(32px);
    transition: opacity 0.9s var(--ease-out), transform 0.9s var(--ease-out);
}

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

/* ===================== KEYFRAMES ===================== */

@keyframes chevronCascade {
    0% { opacity: 0; transform: translateY(-6px); }
    30%, 60% { opacity: 0.8; transform: translateY(0); }
    100% { opacity: 0; transform: translateY(4px); }
}

@keyframes bloomCenter {
    0% { transform: translate(-50%, -50%) scale(0); }
    70% { transform: translate(-50%, -50%) scale(1.2); }
    100% { transform: translate(-50%, -50%) scale(1); }
}

@keyframes bloomPetal {
    0% { opacity: 0; transform: translate(-50%, -50%) scale(0); }
    100% { opacity: 1; transform: translate(-50%, -100%) scale(1); }
}

@keyframes spin { to { transform: rotate(360deg); } }

/* ===================== PRIVACY ===================== */

.privacy-section { background: var(--cream); }

/* ===================== RESPONSIVE ===================== */

@media (max-width: 1024px) {
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .product-detail { grid-template-columns: 1fr; gap: 32px; }
    .advantages-strip { grid-template-columns: repeat(2, 1fr); }
    .contacts-grid { grid-template-columns: 1fr; }
    .promo-banner-content { padding: 36px 32px; }
    .cart-layout { grid-template-columns: 1fr; }
    .cart-sidebar { position: static; }
}

@media (max-width: 768px) {
    .main-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 300px;
        height: 100vh;
        background: var(--cream);
        flex-direction: column;
        padding: 100px 40px 40px;
        gap: 28px;
        box-shadow: -10px 0 40px rgba(0, 0, 0, 0.08);
        transition: right 0.4s var(--ease);
        z-index: 1001;
        align-items: flex-start;
    }

    .main-nav.open { right: 0; }
    .nav-burger { display: flex; }

    .nav-burger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
    .nav-burger.open span:nth-child(2) { opacity: 0; }
    .nav-burger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

    .hero { padding: 120px 0 60px; min-height: auto; }
    .header-inner { height: 64px; }

    .advantages-strip { grid-template-columns: 1fr 1fr; }
    .advantage { padding: 28px 20px; }

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

    .section { padding: 56px 0; }

    .section-title { font-size: clamp(24px, 5vw, 32px); }

    .contact-item { gap: 12px; }
    .contact-icon { width: 40px; height: 40px; }

    .cta-card { gap: 24px; }

    .footer-grid { gap: 32px; }
    .footer-spacer { height: 32px; }
    .product-params { grid-template-columns: 1fr; }

    .filters-form { flex-direction: column; gap: 12px; }
    .filter-group { min-width: 100%; }

    .footer-grid { grid-template-columns: 1fr; gap: 28px; }
    .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }

    .cta-card { flex-direction: column; text-align: center; }
    .cta-actions { justify-content: center; }

    .section { padding: 64px 0; }

    .promo-banner-content { flex-direction: column; text-align: center; padding: 32px 24px; }
    .promo-desc { margin: 0 auto; }

    .hero-scroll-hint { display: none; }

    .cart-item { flex-wrap: wrap; gap: 12px; padding: 14px 16px; }
    .cart-item-total { min-width: auto; }
    .cart-notification { left: 16px; right: 16px; bottom: 16px; }
}

@media (max-width: 480px) {
    .products-grid { grid-template-columns: 1fr; }
    .advantages-strip { grid-template-columns: 1fr; }
    .hero-actions { flex-direction: column; align-items: center; }
    .hero-actions .btn { width: 100%; max-width: 280px; }

    .footer-grid { grid-template-columns: 1fr; gap: 28px; }

    .contact-item h3 { font-size: 14px; }
    .contact-item p { font-size: 15px; }

    .steps { gap: 20px; }
    .step-number { width: 32px; height: 32px; font-size: 13px; }

    .cart-item-image { width: 56px; height: 56px; }
    .cart-item-info { flex-basis: calc(100% - 80px); }
    .cart-item-qty { margin-left: auto; }
}

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        transition-duration: 0.01ms !important;
    }
    .reveal { opacity: 1; transform: none; }
    .hero-orb { display: none; }
}

/* ===================== NAV CART ===================== */

.nav-cart {
    position: relative;
    display: flex;
    align-items: center;
    color: var(--text);
    transition: color 0.3s;
}

.nav-cart:hover { color: var(--rose); }

.cart-badge {
    position: absolute;
    top: -6px;
    right: -8px;
    min-width: 18px;
    height: 18px;
    background: var(--rose);
    color: var(--white);
    font-size: 10px;
    font-weight: 700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 4px;
    line-height: 1;
}

/* ===================== ADD TO CART BUTTON (CARD) ===================== */

.btn-add-cart {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    width: 100%;
    padding: 12px;
    background: var(--cream);
    color: var(--rose);
    border: none;
    border-top: 1px solid var(--border);
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s var(--ease);
}

.btn-add-cart:hover {
    background: var(--rose);
    color: var(--white);
}

.btn-add-cart-detail {
    gap: 10px;
}

.btn-add-cart-detail.added {
    background: var(--green);
    border-color: var(--green);
}

/* ===================== CART NOTIFICATION ===================== */

.cart-notification {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 10001;
    display: flex;
    align-items: center;
    gap: 10px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 14px 20px;
    box-shadow: var(--shadow-lg);
    font-size: 14px;
    color: var(--text);
    transform: translateY(20px);
    opacity: 0;
    transition: all 0.4s var(--ease);
}

.cart-notification.visible {
    transform: translateY(0);
    opacity: 1;
}

.cart-notification svg { color: var(--green); flex-shrink: 0; }

.cart-notification a {
    font-weight: 600;
    font-size: 13px;
    white-space: nowrap;
}

/* ===================== CART PAGE ===================== */

.cart-section { background: var(--cream); }

.page-heading {
    font-family: var(--font-display);
    font-size: clamp(32px, 5vw, 48px);
    font-weight: 400;
    margin-bottom: 40px;
}

.cart-empty {
    text-align: center;
    padding: 60px 20px;
}

.cart-layout {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 32px;
    align-items: start;
}

.cart-item {
    display: flex;
    align-items: center;
    gap: 16px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 16px 20px;
    margin-bottom: 12px;
    transition: border-color 0.3s;
}

.cart-item:hover { border-color: var(--blush-deep); }

.cart-item-image {
    width: 72px;
    height: 72px;
    border-radius: var(--radius-sm);
    overflow: hidden;
    flex-shrink: 0;
    background: var(--warm);
}

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

.cart-item-noimg {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--rose-light);
}

.cart-item-info {
    flex: 1;
    min-width: 0;
}

.cart-item-name {
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 600;
    color: var(--text);
    display: block;
    margin-bottom: 2px;
}

.cart-item-unit-price {
    font-size: 12px;
    color: var(--text-muted);
}

.cart-item-qty {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
}

.cart-item-qty .qty-btn {
    width: 32px;
    height: 32px;
    font-size: 16px;
}

.cart-qty-value {
    font-weight: 600;
    font-size: 16px;
    min-width: 24px;
    text-align: center;
}

.cart-item-total {
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 700;
    white-space: nowrap;
    flex-shrink: 0;
    min-width: 80px;
    text-align: right;
}

.cart-item-remove {
    background: none;
    border: none;
    cursor: pointer;
    color: var(--text-muted);
    padding: 4px;
    transition: color 0.2s;
    flex-shrink: 0;
}

.cart-item-remove:hover { color: var(--rose); }

/* Cart sidebar */

.cart-sidebar { position: sticky; top: 100px; }

.cart-summary-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 28px;
    margin-bottom: 16px;
    box-shadow: var(--shadow);
}

.cart-summary-card h3 {
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 20px;
}

.cart-summary-rows { margin-bottom: 16px; }

.summary-row {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    padding: 6px 0;
    font-size: 13px;
    color: var(--text-secondary);
}

.summary-row span:last-child { white-space: nowrap; font-weight: 500; }

.cart-wrapping {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 16px;
    background: var(--blush);
    border-radius: var(--radius-sm);
    cursor: pointer;
    margin-bottom: 16px;
    transition: background 0.2s;
}

.cart-wrapping:hover { background: var(--blush-deep); }

.cart-wrapping input { display: none; }

.wrapping-check {
    width: 20px;
    height: 20px;
    border: 2px solid var(--rose-light);
    border-radius: 4px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
}

.cart-wrapping input:checked + .wrapping-check {
    background: var(--rose);
    border-color: var(--rose);
}

.cart-wrapping input:checked + .wrapping-check::after {
    content: '✓';
    color: var(--white);
    font-size: 12px;
    font-weight: 700;
}

.wrapping-text { flex: 1; font-size: 14px; font-weight: 500; }

.wrapping-price {
    font-size: 14px;
    font-weight: 600;
    color: var(--rose);
    white-space: nowrap;
}

.cart-total-row {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    padding-top: 16px;
    border-top: 1px solid var(--border);
    font-size: 15px;
}

.cart-total-row strong {
    font-family: var(--font-display);
    font-size: 28px;
    font-weight: 700;
    color: var(--text);
}

.cart-order-form {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 28px;
    box-shadow: var(--shadow);
}

.cart-order-form h3 {
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 400;
    margin-bottom: 20px;
}

/* ===================== UTILITIES ===================== */

.text-center { text-align: center; }
.text-muted { color: var(--text-muted); }
