/* Katerina Karim — Styles v1.0 */

:root {
  --cream: #FDF8F4;
  --blush: #F2DDD5;
  --rose: #C9A296;
  --deep-rose: #A87B6F;
  --warm-brown: #8B6F66;
  --dark: #2A2024;
  --soft-white: #FEFCFA;
  --lavender: #D8C8D8;
  --sage: #B8C4B0;
  --burgundy: #6B2D3E;
  --champagne: #F0E6D3;
  --gold: #C9A96E;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: 'Raleway', sans-serif; background: var(--cream); color: var(--dark); overflow-x: hidden; }
img { max-width: 100%; display: block; }

/* ===== NAV ===== */
.nav { position: fixed; top: 0; left: 0; right: 0; z-index: 100; padding: 16px 24px; display: flex; justify-content: space-between; align-items: center; background: rgba(253,248,244,0.88); backdrop-filter: blur(20px); border-bottom: 1px solid rgba(201,162,150,0.15); transition: all 0.4s; }
.nav.scrolled { padding: 10px 24px; box-shadow: 0 2px 20px rgba(42,32,36,0.06); }
.nav-brand { font-family: 'Cormorant Garamond', serif; font-size: 22px; font-weight: 500; letter-spacing: 3px; text-transform: uppercase; color: var(--dark); text-decoration: none; }
.nav-links { display: flex; gap: 28px; list-style: none; }
.nav-links a { text-decoration: none; color: var(--warm-brown); font-size: 11px; font-weight: 500; letter-spacing: 2px; text-transform: uppercase; transition: color 0.3s; }
.nav-links a:hover { color: var(--dark); }
.nav-right { display: flex; align-items: center; gap: 16px; }
.nav-cart { position: relative; padding: 8px; text-decoration: none; }
.nav-cart svg { width: 22px; height: 22px; stroke: var(--dark); fill: none; stroke-width: 1.5; }
.cart-count { position: absolute; top: 2px; right: 0; width: 16px; height: 16px; background: var(--burgundy); color: white; font-size: 10px; border-radius: 50%; display: flex; align-items: center; justify-content: center; }

/* Products dropdown */
.nav-products-dropdown { position: relative; }
.nav-dropdown-btn { background: none; border: 1px solid var(--blush); padding: 6px 14px; border-radius: 20px; font-family: 'Raleway'; font-size: 11px; letter-spacing: 1px; color: var(--warm-brown); cursor: pointer; transition: all 0.3s; }
.nav-dropdown-btn:hover { border-color: var(--burgundy); color: var(--dark); }
.nav-dropdown-menu { display: none; position: absolute; top: 100%; right: 0; padding-top: 6px; min-width: 240px; z-index: 10; }
.nav-dropdown-menu-inner { background: white; border-radius: 12px; box-shadow: 0 10px 40px rgba(42,32,36,0.12); overflow: hidden; }
.nav-products-dropdown:hover .nav-dropdown-menu { display: block; }
.nav-dropdown-menu a { display: block; padding: 12px 18px; text-decoration: none; color: var(--dark); font-size: 13px; transition: background 0.2s; }
.nav-dropdown-menu a:hover { background: var(--cream); }

/* ===== HERO ===== */
.hero { min-height: 100vh; display: grid; grid-template-columns: 1.1fr 0.9fr; padding-top: 70px; }
.hero-gallery { position: relative; background: var(--dark); overflow: hidden; min-height: 100vh; }
.hero-slider { width: 100%; height: 100%; position: relative; }
.hero-slide { position: absolute; inset: 0; opacity: 0; transition: opacity 0.5s; }
.hero-slide.active { opacity: 1; }
.hero-slide img { width: 100%; height: 100%; object-fit: cover; }
.gallery-label { position: absolute; top: 30px; left: 30px; z-index: 2; font-size: 11px; letter-spacing: 2px; color: rgba(255,255,255,0.6); }
.gallery-counter { position: absolute; bottom: 30px; left: 50%; transform: translateX(-50%); z-index: 2; display: flex; gap: 8px; }
.gallery-dot { width: 8px; height: 8px; border-radius: 50%; background: rgba(255,255,255,0.3); cursor: pointer; transition: all 0.3s; }
.gallery-dot.active { background: white; width: 24px; border-radius: 4px; }

.photo-placeholder { width: 80%; aspect-ratio: 3/4; background: linear-gradient(160deg, rgba(107,45,62,0.2), rgba(201,162,150,0.15)); border-radius: 12px; display: flex; flex-direction: column; align-items: center; justify-content: center; margin: auto; }
.photo-placeholder-icon { width: 80px; height: 80px; border: 2px dashed rgba(201,162,150,0.4); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin-bottom: 16px; }
.photo-placeholder-icon svg { width: 36px; height: 36px; stroke: var(--rose); fill: none; stroke-width: 1.5; opacity: 0.6; }
.photo-placeholder-text { font-size: 13px; color: var(--rose); opacity: 0.5; letter-spacing: 2px; text-transform: uppercase; }

/* Hero info */
.hero-info { padding: 80px 48px 50px; display: flex; flex-direction: column; justify-content: center; }
.product-tag { display: inline-flex; align-items: center; gap: 8px; font-size: 11px; letter-spacing: 3px; text-transform: uppercase; color: var(--burgundy); margin-bottom: 20px; font-weight: 500; }
.product-tag::before { content: ''; width: 30px; height: 1px; background: var(--burgundy); }
.product-title { font-family: 'Cormorant Garamond', serif; font-size: clamp(38px,4.5vw,56px); font-weight: 300; line-height: 1.1; margin-bottom: 8px; }
.product-subtitle { font-family: 'Cormorant Garamond', serif; font-size: clamp(16px,1.8vw,20px); font-weight: 300; font-style: italic; color: var(--warm-brown); margin-bottom: 14px; line-height: 1.5; }
.composition-tag { display: inline-flex; align-items: center; gap: 8px; padding: 8px 16px; background: rgba(107,45,62,0.06); border-radius: 8px; font-size: 12px; color: var(--burgundy); margin-bottom: 20px; font-weight: 500; }
.product-price { font-family: 'Cormorant Garamond', serif; font-size: 34px; font-weight: 500; margin-bottom: 32px; }
.old-price { font-size: 20px; color: var(--warm-brown); text-decoration: line-through; margin-left: 12px; }

/* Options */
.option-label { font-size: 12px; letter-spacing: 1.5px; text-transform: uppercase; color: var(--warm-brown); margin-bottom: 12px; font-weight: 500; }
.color-options { display: flex; gap: 10px; margin-bottom: 30px; flex-wrap: wrap; }
.color-swatch { width: 38px; height: 38px; border-radius: 50%; cursor: pointer; border: 2.5px solid transparent; transition: all 0.3s; box-shadow: inset 0 0 0 1px rgba(0,0,0,0.08); }
.color-swatch.active { border-color: var(--dark); transform: scale(1.12); }
.color-swatch:hover { transform: scale(1.12); }
.size-options { display: flex; gap: 12px; margin-bottom: 32px; }
.size-btn { padding: 14px 28px; border: 1.5px solid var(--blush); background: transparent; border-radius: 8px; font-family: 'Raleway'; font-size: 13px; font-weight: 500; color: var(--dark); cursor: pointer; transition: all 0.3s; letter-spacing: 1px; }
.size-btn:hover { border-color: var(--burgundy); }
.size-btn.active { background: var(--dark); color: var(--soft-white); border-color: var(--dark); }

/* CTA */
.cta-group { display: flex; gap: 14px; margin-bottom: 16px; }
.btn-primary { flex: 1; padding: 18px 40px; background: var(--dark); color: var(--soft-white); border: none; border-radius: 60px; font-family: 'Raleway'; font-size: 12px; letter-spacing: 2.5px; text-transform: uppercase; cursor: pointer; transition: all 0.4s; font-weight: 500; }
.btn-primary:hover { background: var(--burgundy); transform: translateY(-2px); box-shadow: 0 8px 30px rgba(107,45,62,0.25); }
.btn-wishlist { width: 56px; height: 56px; border: 1.5px solid var(--blush); background: transparent; border-radius: 50%; cursor: pointer; display: flex; align-items: center; justify-content: center; transition: all 0.3s; flex-shrink: 0; }
.btn-wishlist:hover, .btn-wishlist.active { border-color: var(--burgundy); }
.btn-wishlist.active svg { fill: var(--burgundy); stroke: var(--burgundy); }
.btn-wishlist svg { width: 20px; height: 20px; stroke: var(--warm-brown); fill: none; stroke-width: 1.5; }

/* Gift toggle */
.gift-toggle { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; padding: 14px 20px; background: linear-gradient(135deg, rgba(201,169,110,0.06), rgba(240,230,211,0.2)); border-radius: 12px; border: 1px solid rgba(201,169,110,0.15); cursor: pointer; transition: all 0.3s; }
.gift-toggle:hover { border-color: var(--gold); }
.gift-toggle input { display: none; }
.gift-checkbox { width: 22px; height: 22px; border: 2px solid var(--gold); border-radius: 6px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; transition: all 0.3s; }
.gift-checkbox svg { width: 14px; height: 14px; stroke: white; fill: none; stroke-width: 2.5; opacity: 0; transition: opacity 0.3s; }
.gift-toggle input:checked ~ .gift-checkbox { background: var(--gold); }
.gift-toggle input:checked ~ .gift-checkbox svg { opacity: 1; }
.gift-icon { font-size: 18px; }
.gift-info { flex: 1; }
.gift-title { font-size: 13px; font-weight: 500; margin-bottom: 1px; }
.gift-subtitle { font-size: 11px; color: var(--warm-brown); }
.gift-price { font-size: 13px; font-weight: 600; color: var(--gold); white-space: nowrap; }

.delivery-note { display: flex; align-items: center; gap: 10px; font-size: 12px; color: var(--warm-brown); padding: 13px 18px; background: rgba(242,221,213,0.2); border-radius: 10px; }

/* ===== GUARANTEES ===== */
.guarantees { background: var(--soft-white); padding: 36px 24px; border-top: 1px solid rgba(201,162,150,0.15); border-bottom: 1px solid rgba(201,162,150,0.15); }
.guarantees-grid { display: flex; justify-content: center; gap: 48px; max-width: 1100px; margin: 0 auto; flex-wrap: wrap; }
.guarantee-item { display: flex; align-items: center; gap: 12px; }
.guarantee-icon { width: 44px; height: 44px; border-radius: 50%; background: rgba(107,45,62,0.06); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.guarantee-icon svg { width: 20px; height: 20px; stroke: var(--burgundy); fill: none; stroke-width: 1.5; }
.guarantee-text { font-size: 13px; font-weight: 500; line-height: 1.4; }
.guarantee-sub { font-size: 11px; color: var(--warm-brown); font-weight: 400; }

/* ===== SECTIONS ===== */
.section { padding: 80px 24px; }
.section-tag { text-align: center; font-size: 11px; letter-spacing: 3px; text-transform: uppercase; color: var(--burgundy); margin-bottom: 12px; font-weight: 500; }
.section-title { text-align: center; font-family: 'Cormorant Garamond', serif; font-size: clamp(30px,3.5vw,46px); font-weight: 300; margin-bottom: 16px; }
.section-subtitle { text-align: center; font-size: 15px; color: var(--warm-brown); max-width: 600px; margin: 0 auto 50px; line-height: 1.7; font-style: italic; }

/* ===== CONTENT BLOCKS (split layout: photo + text side-by-side) ===== */
.content-block { position: relative; padding: 70px 0; background: #fff; }
.content-block:nth-of-type(even) { background: #faf6f3; }
.block-wrapper { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; max-width: 1100px; margin: 0 auto; padding: 0 48px; }
.block-photo { position: relative; aspect-ratio: 4/5; max-width: 440px; width: 100%; overflow: hidden; border-radius: 4px; box-shadow: 0 24px 60px rgba(74,42,49,.12); }
.block-photo img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .8s ease; }
.content-block:hover .block-photo img { transform: scale(1.02); }
/* Auto-alternate sides: odd = photo left, even = photo right */
.content-block:nth-of-type(odd) .block-photo { order: 0; justify-self: end; }
.content-block:nth-of-type(odd) .block-content { order: 1; justify-self: start; }
.content-block:nth-of-type(even) .block-photo { order: 2; justify-self: start; }
.content-block:nth-of-type(even) .block-content { order: 1; justify-self: end; }
.block-content { color: var(--dark); padding: 0; max-width: 440px; width: 100%; }
.block-number { font-family: 'Cormorant Garamond', serif; font-size: 52px; font-weight: 300; line-height: 1; margin-bottom: 10px; color: var(--burgundy); opacity: .35; }
.block-title { font-family: 'Cormorant Garamond', serif; font-size: clamp(28px,2.8vw,40px); font-weight: 400; margin-bottom: 14px; line-height: 1.18; color: var(--dark); }
.block-subtitle { font-family: 'Cormorant Garamond', serif; font-size: 18px; font-style: italic; color: var(--burgundy); margin-bottom: 20px; }
.block-text { font-size: 15px; line-height: 1.8; color: var(--warm-brown); margin-bottom: 22px; }
.block-bullets { list-style: none; display: flex; flex-direction: column; gap: 11px; padding: 0; margin: 0; }
.block-bullets li { display: flex; align-items: center; gap: 14px; font-size: 14.5px; color: var(--warm-brown); }
.block-bullets li::before { content: ''; width: 7px; height: 7px; border-radius: 50%; background: var(--burgundy); flex-shrink: 0; }
@media (max-width: 768px) {
  .content-block { padding: 50px 0; }
  .block-wrapper { grid-template-columns: 1fr; gap: 30px; padding: 0 20px; max-width: 100%; }
  .content-block:nth-of-type(odd) .block-photo,
  .content-block:nth-of-type(even) .block-photo { order: 0; justify-self: center; }
  .content-block:nth-of-type(odd) .block-content,
  .content-block:nth-of-type(even) .block-content { order: 1; justify-self: center; }
  .block-photo { max-width: 100%; aspect-ratio: 4/5; }
  .block-content { max-width: 100%; }
}

/* ===== VIDEO ===== */
.video-section { background: var(--dark); padding: 80px 24px; position: relative; }
.video-section .section-tag { color: var(--rose); }
.video-section .section-title { color: var(--soft-white); }
.video-container { max-width: 900px; margin: 0 auto; aspect-ratio: 16/9; border-radius: 16px; overflow: hidden; }
.video-container iframe { width: 100%; height: 100%; }
.video-caption { text-align: center; color: rgba(255,255,255,0.4); margin-top: 16px; font-size: 13px; font-style: italic; }

/* ===== FEATURES ===== */
.features-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; max-width: 1000px; margin: 0 auto; }
.feature-card { background: var(--soft-white); border-radius: 20px; padding: 36px 28px; text-align: center; border: 1px solid rgba(201,162,150,0.2); transition: all 0.4s; }
.feature-card:hover { transform: translateY(-6px); box-shadow: 0 16px 40px rgba(42,32,36,0.08); }
.feature-icon { width: 60px; height: 60px; border-radius: 50%; background: rgba(107,45,62,0.06); display: flex; align-items: center; justify-content: center; margin: 0 auto 18px; color: var(--burgundy); }
.feature-icon svg { width: 26px; height: 26px; }
.feature-title { font-family: 'Cormorant Garamond', serif; font-size: 21px; font-weight: 500; margin-bottom: 8px; }
.feature-text { font-size: 13px; line-height: 1.7; color: var(--warm-brown); }

/* ===== CROSS-SELL ===== */
.crosssell-section { background: var(--soft-white); }
.crosssell-container { max-width: 900px; margin: 0 auto; background: linear-gradient(135deg, rgba(107,45,62,0.04), rgba(201,162,150,0.08)); border-radius: 24px; padding: 44px; display: grid; grid-template-columns: 1fr auto 1fr auto; align-items: center; gap: 28px; border: 1px solid rgba(107,45,62,0.1); }
.crosssell-item { text-align: center; }
.crosssell-photo { width: 100%; aspect-ratio: 3/4; border-radius: 16px; overflow: hidden; margin-bottom: 14px; background: var(--blush); }
.crosssell-photo img { width: 100%; height: 100%; object-fit: cover; }
.crosssell-name { font-family: 'Cormorant Garamond', serif; font-size: 19px; font-weight: 500; margin-bottom: 4px; }
.crosssell-price { font-size: 15px; color: var(--warm-brown); }
.crosssell-plus { font-family: 'Cormorant Garamond', serif; font-size: 44px; font-weight: 300; color: var(--burgundy); }
.crosssell-result { text-align: center; padding: 24px; }
.crosssell-result-label { font-size: 11px; letter-spacing: 2px; text-transform: uppercase; color: var(--burgundy); margin-bottom: 8px; }
.crosssell-result-price { font-family: 'Cormorant Garamond', serif; font-size: 34px; font-weight: 500; margin-bottom: 4px; }
.crosssell-result-old { font-size: 15px; color: var(--warm-brown); text-decoration: line-through; margin-bottom: 14px; }
.crosssell-result-save { display: inline-block; padding: 6px 16px; background: var(--burgundy); color: white; border-radius: 20px; font-size: 11px; font-weight: 600; letter-spacing: 1px; margin-bottom: 18px; }
.btn-crosssell { display: inline-block; padding: 14px 30px; background: var(--dark); color: var(--soft-white); border: none; border-radius: 60px; font-family: 'Raleway'; font-size: 11px; letter-spacing: 2px; text-transform: uppercase; cursor: pointer; transition: all 0.4s; text-decoration: none; }
.btn-crosssell:hover { background: var(--burgundy); transform: translateY(-2px); }

/* ===== SIZE CHART ===== */
.size-section { background: var(--cream); }
.size-chart-wrapper { max-width: 600px; margin: 0 auto; }
.size-chart { width: 100%; border-collapse: separate; border-spacing: 0; border-radius: 16px; overflow: hidden; box-shadow: 0 4px 24px rgba(42,32,36,0.06); }
.size-chart thead th { background: var(--dark); color: var(--soft-white); padding: 18px 30px; font-size: 13px; font-weight: 500; letter-spacing: 1px; text-transform: uppercase; }
.size-chart tbody td { padding: 18px 30px; text-align: center; font-size: 15px; border-bottom: 1px solid var(--blush); background: var(--soft-white); }
.size-chart tbody td:first-child { font-weight: 600; background: rgba(107,45,62,0.04); }
.size-chart tbody tr:last-child td { border-bottom: none; }
.model-params { text-align: center; margin-top: 20px; font-size: 13px; color: var(--warm-brown); font-style: italic; }

/* ===== CARE ===== */
.care-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; max-width: 900px; margin: 0 auto; }
.care-card { text-align: center; padding: 28px 16px; background: var(--soft-white); border-radius: 16px; border: 1px solid rgba(201,162,150,0.2); transition: all 0.3s; }
.care-card:hover { transform: translateY(-4px); }
.care-icon { width: 52px; height: 52px; border-radius: 50%; background: rgba(107,45,62,0.06); display: flex; align-items: center; justify-content: center; margin: 0 auto 12px; }
.care-icon svg { width: 22px; height: 22px; }
.care-title { font-size: 13px; font-weight: 600; margin-bottom: 4px; }
.care-text { font-size: 11px; color: var(--warm-brown); line-height: 1.5; }

/* ===== FAQ ===== */
.faq-section { background: var(--cream); }
.faq-container { max-width: 750px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid rgba(201,162,150,0.3); overflow: hidden; }
.faq-question { width: 100%; background: none; border: none; padding: 22px 0; display: flex; justify-content: space-between; align-items: center; cursor: pointer; font-family: 'Raleway'; font-size: 15px; font-weight: 500; color: var(--dark); text-align: left; transition: color 0.3s; }
.faq-question:hover { color: var(--burgundy); }
.faq-arrow { width: 30px; height: 30px; border-radius: 50%; background: rgba(107,45,62,0.06); display: flex; align-items: center; justify-content: center; flex-shrink: 0; transition: all 0.4s; }
.faq-arrow svg { width: 14px; height: 14px; transition: transform 0.4s; }
.faq-item.open .faq-arrow { background: var(--dark); }
.faq-item.open .faq-arrow svg { stroke: white; transform: rotate(180deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.4s ease; }
.faq-item.open .faq-answer { max-height: 300px; }
.faq-answer-text { padding: 0 0 22px; font-size: 14px; line-height: 1.8; color: var(--warm-brown); }

/* ===== OTHER PRODUCTS ===== */
.other-products-section { background: var(--soft-white); }
.other-products-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 30px; max-width: 800px; margin: 0 auto; }
.other-product-card { text-decoration: none; color: var(--dark); border-radius: 20px; overflow: hidden; background: var(--cream); border: 1px solid rgba(201,162,150,0.2); transition: all 0.4s; }
.other-product-card:hover { transform: translateY(-8px); box-shadow: 0 20px 50px rgba(42,32,36,0.1); }
.other-product-photo { aspect-ratio: 3/4; overflow: hidden; background: var(--blush); display: flex; align-items: center; justify-content: center; }
.other-product-photo img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.other-product-card:hover .other-product-photo img { transform: scale(1.05); }
.other-product-info { padding: 20px 24px; }
.other-product-name { font-family: 'Cormorant Garamond', serif; font-size: 24px; font-weight: 500; margin-bottom: 4px; }
.other-product-price { font-size: 16px; color: var(--warm-brown); }

/* ===== CROSS-SELL ===== */
.crosssell-options { margin-top: 12px; }
.cs-option-row { display: flex; align-items: center; gap: 8px; margin-bottom: 8px; }
.cs-option-label { font-size: 11px; color: var(--warm-brown); min-width: 50px; }
.cs-colors { display: flex; gap: 5px; flex-wrap: wrap; }
.cs-color-swatch { cursor: pointer; }
.cs-color-swatch input { display: none; }
.cs-color-swatch span { display: block; width: 22px; height: 22px; border-radius: 50%; border: 2px solid transparent; transition: all 0.2s; box-shadow: inset 0 0 0 1px rgba(0,0,0,0.1); }
.cs-color-swatch.active span { border-color: var(--burgundy); }
.cs-color-swatch:hover span { transform: scale(1.15); }
.cs-sizes { display: flex; gap: 4px; flex-wrap: wrap; }
.cs-size-btn { cursor: pointer; }
.cs-size-btn input { display: none; }
.cs-size-btn span { display: block; padding: 4px 10px; font-size: 11px; border-radius: 6px; border: 1.5px solid #ddd; transition: all 0.2s; background: white; }
.cs-size-btn.active span { border-color: var(--burgundy); color: var(--burgundy); font-weight: 600; }
.cs-size-btn:hover span { border-color: var(--warm-brown); }
.btn-crosssell-cart { display: block; width: 100%; padding: 14px 20px; background: var(--dark); color: white; border: none; border-radius: 30px; font-size: 15px; font-family: 'Cormorant Garamond', serif; cursor: pointer; transition: all 0.3s; margin-top: 16px; letter-spacing: 0.5px; }
.btn-crosssell-cart:hover { background: var(--burgundy); }
.crosssell-link { display: block; text-align: center; margin-top: 10px; color: var(--warm-brown); font-size: 13px; text-decoration: none; transition: color 0.2s; }
.crosssell-link:hover { color: var(--burgundy); }
.crosssell-result-save { display: inline-block; background: var(--burgundy); color: white; font-size: 13px; padding: 4px 12px; border-radius: 20px; margin-top: 4px; }

/* ===== COMPONENTS (3 елементи комплекту) ===== */
.components-section { background: var(--soft-white); }
.components-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; max-width: 1000px; margin: 0 auto; }
.component-card { background: var(--cream); border-radius: 20px; overflow: hidden; border: 1px solid rgba(201,162,150,0.15); transition: all 0.4s; }
.component-card:hover { transform: translateY(-6px); box-shadow: 0 16px 40px rgba(42,32,36,0.08); }
.component-photo { position: relative; aspect-ratio: 3/4; background: linear-gradient(160deg, rgba(242,221,213,0.4), rgba(216,200,216,0.3)); display: flex; align-items: center; justify-content: center; overflow: hidden; }
.component-photo img { width: 100%; height: 100%; object-fit: cover; }
.component-number { position: absolute; top: 16px; left: 16px; width: 36px; height: 36px; border-radius: 50%; background: var(--dark); color: white; font-family: 'Cormorant Garamond', serif; font-size: 16px; font-weight: 500; display: flex; align-items: center; justify-content: center; z-index: 2; }
.component-info { padding: 24px; text-align: center; }
.component-title { font-family: 'Cormorant Garamond', serif; font-size: 22px; font-weight: 500; margin-bottom: 6px; }
.component-text { font-size: 13px; color: var(--warm-brown); line-height: 1.6; }

/* ===== REVIEWS ===== */
.reviews-section { background: var(--cream); }
.reviews-rating { text-align: center; margin-bottom: 40px; }
.reviews-score { font-family: 'Cormorant Garamond', serif; font-size: 52px; font-weight: 400; line-height: 1; margin-bottom: 4px; }
.reviews-stars { font-size: 20px; color: var(--gold); letter-spacing: 3px; margin-bottom: 6px; }
.reviews-count { font-size: 13px; color: var(--warm-brown); }
.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; max-width: 1100px; margin: 0 auto; }
.review-card { background: var(--soft-white); border-radius: 20px; padding: 28px; border: 1px solid rgba(201,162,150,0.15); transition: all 0.3s; }
.review-card:hover { transform: translateY(-4px); box-shadow: 0 10px 30px rgba(42,32,36,0.06); }
.review-header { display: flex; align-items: center; gap: 12px; margin-bottom: 12px; }
.review-avatar { width: 44px; height: 44px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-family: 'Cormorant Garamond', serif; font-size: 20px; font-weight: 600; flex-shrink: 0; }
.review-name { font-size: 14px; font-weight: 600; }
.review-date { font-size: 11px; color: var(--warm-brown); }
.review-stars { font-size: 14px; color: var(--gold); letter-spacing: 2px; margin-bottom: 12px; }
.review-text { font-size: 14px; line-height: 1.7; color: var(--dark); margin-bottom: 14px; }
.review-photo { aspect-ratio: 4/3; border-radius: 12px; overflow: hidden; margin-bottom: 12px; background: linear-gradient(160deg, rgba(242,221,213,0.4), rgba(216,200,216,0.3)); display: flex; align-items: center; justify-content: center; }
.review-photo img { width: 100%; height: 100%; object-fit: cover; }
.review-verified { font-size: 11px; color: var(--sage); font-weight: 500; display: flex; align-items: center; gap: 4px; }

/* ===== INSTAGRAM ===== */
.instagram-section { padding: 80px 0; text-align: center; background: var(--soft-white); overflow: hidden; }
.instagram-section .section-tag, .instagram-section .section-title { padding: 0 24px; }
.instagram-handle { display: inline-block; color: var(--warm-brown); text-decoration: none; font-size: 15px; margin-bottom: 36px; transition: color 0.3s; }
.instagram-handle:hover { color: var(--burgundy); }
.instagram-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 0; }
.instagram-item { aspect-ratio: 1; overflow: hidden; position: relative; }
.instagram-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.instagram-item:hover img { transform: scale(1.05); }
.instagram-item-featured { background: rgba(74,74,74,0.5); display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,0.7); }

/* ===== CTA BOTTOM ===== */
.cta-section { background: var(--dark); padding: 80px 24px; text-align: center; position: relative; overflow: hidden; }
.cta-section::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse at 30% 50%, rgba(107,45,62,0.15), transparent 50%); }
.cta-section .section-tag { color: var(--rose); }
.cta-section .section-title { color: var(--soft-white); margin-bottom: 12px; }
.cta-subtitle { font-family: 'Cormorant Garamond', serif; font-size: 18px; font-style: italic; color: rgba(255,255,255,0.5); margin-bottom: 32px; }
.cta-price { font-family: 'Cormorant Garamond', serif; font-size: 40px; color: var(--soft-white); margin-bottom: 32px; }
.btn-order { display: inline-flex; padding: 20px 56px; background: var(--burgundy); color: var(--soft-white); border: none; border-radius: 60px; font-family: 'Raleway'; font-size: 13px; letter-spacing: 2.5px; text-transform: uppercase; cursor: pointer; transition: all 0.4s; position: relative; z-index: 1; }
.btn-order:hover { background: var(--rose); transform: translateY(-3px); box-shadow: 0 10px 40px rgba(107,45,62,0.35); }

/* ===== FOOTER ===== */
/* ===== FOOTER ===== */
.footer { background: var(--dark); border-top: 1px solid rgba(201,162,150,0.1); padding: 0; }
.footer-inner { max-width: 1100px; margin: 0 auto; padding: 48px 24px 32px; display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 40px; }
.footer-col {}
.footer-brand { font-family: 'Cormorant Garamond', serif; font-size: 20px; color: var(--soft-white); letter-spacing: 4px; text-transform: uppercase; margin-bottom: 8px; }
.footer-tagline { font-size: 13px; color: rgba(255,255,255,0.4); }
.footer-heading { font-size: 11px; letter-spacing: 2px; text-transform: uppercase; color: rgba(255,255,255,0.5); margin-bottom: 14px; }
.footer-link { display: block; color: var(--rose); text-decoration: none; font-size: 13px; margin-bottom: 8px; transition: color 0.2s; }
.footer-link:hover { color: white; }
.footer-bottom { text-align: center; padding: 20px 24px; border-top: 1px solid rgba(255,255,255,0.06); }
.footer-bottom p { font-size: 11px; color: rgba(255,255,255,0.3); margin: 0; }

/* ===== STATIC PAGES ===== */
.static-page { max-width: 760px; margin: 0 auto; padding: 120px 24px 60px; }
.static-page-title { font-family: 'Cormorant Garamond', serif; font-size: 40px; font-weight: 400; text-align: center; margin-bottom: 40px; color: var(--dark); }
.static-page-content { font-size: 15px; line-height: 1.8; color: var(--dark); }
.static-page-content h2 { font-family: 'Cormorant Garamond', serif; font-size: 28px; font-weight: 500; margin: 36px 0 16px; color: var(--dark); }
.static-page-content h3 { font-family: 'Cormorant Garamond', serif; font-size: 22px; font-weight: 500; margin: 28px 0 12px; color: var(--dark); }
.static-page-content p { margin-bottom: 14px; }
.static-page-content ul, .static-page-content ol { margin: 12px 0 18px 24px; }
.static-page-content li { margin-bottom: 6px; }
.static-page-content strong { color: var(--dark); font-weight: 600; }

/* ===== CATALOG PAGE ===== */
.catalog-hero { min-height: 60vh; display: flex; align-items: center; justify-content: center; text-align: center; padding: 120px 24px 80px; background: linear-gradient(180deg, var(--cream), var(--soft-white)); }
.catalog-hero-title { font-family: 'Cormorant Garamond', serif; font-size: clamp(38px,5vw,64px); font-weight: 300; line-height: 1.1; margin-bottom: 16px; }
.catalog-hero-subtitle { font-size: 16px; color: var(--warm-brown); max-width: 500px; margin: 0 auto 32px; line-height: 1.7; }
.catalog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; max-width: 1200px; margin: 0 auto; }
.catalog-card { text-decoration: none; color: var(--dark); border-radius: 20px; overflow: hidden; background: var(--soft-white); border: 1px solid rgba(201,162,150,0.2); transition: all 0.4s; }
.catalog-card:hover { transform: translateY(-10px); box-shadow: 0 20px 60px rgba(42,32,36,0.1); }
.catalog-card-photo { aspect-ratio: 3/4; overflow: hidden; background: var(--blush); display: flex; align-items: center; justify-content: center; }
.catalog-card-photo img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s; }
.catalog-card:hover .catalog-card-photo img { transform: scale(1.05); }
.catalog-card-info { padding: 24px; }
.catalog-card-article { font-size: 11px; letter-spacing: 2px; color: var(--warm-brown); text-transform: uppercase; margin-bottom: 6px; }
.catalog-card-name { font-family: 'Cormorant Garamond', serif; font-size: 26px; font-weight: 500; margin-bottom: 6px; }
.catalog-card-subtitle { font-size: 13px; color: var(--warm-brown); margin-bottom: 12px; line-height: 1.5; }
.catalog-card-colors { display: flex; gap: 6px; margin-bottom: 12px; }
.mini-swatch { width: 16px; height: 16px; border-radius: 50%; box-shadow: inset 0 0 0 1px rgba(0,0,0,0.08); }
.catalog-card-price { font-family: 'Cormorant Garamond', serif; font-size: 22px; font-weight: 500; }

/* ===== CART PAGE ===== */
.cart-page { max-width: 1100px; margin: 0 auto; padding: 100px 24px 60px; min-height: 80vh; }
.cart-title { font-family: 'Cormorant Garamond', serif; font-size: 40px; font-weight: 300; margin-bottom: 40px; text-align: center; }
.cart-empty { text-align: center; padding: 60px 0; color: var(--warm-brown); font-size: 16px; }
.cart-layout { display: grid; grid-template-columns: 1.2fr 0.8fr; gap: 40px; align-items: start; }
.cart-item { display: flex; align-items: center; gap: 16px; padding: 16px 0; border-bottom: 1px solid var(--blush); }
.cart-item-photo { width: 80px; height: 100px; border-radius: 10px; overflow: hidden; background: var(--blush); flex-shrink: 0; }
.cart-item-photo img { width: 100%; height: 100%; object-fit: cover; }
.cart-item-info { flex: 1; }
.cart-item-name { font-family: 'Cormorant Garamond', serif; font-size: 20px; font-weight: 500; margin-bottom: 2px; }
.cart-item-variant { font-size: 13px; color: var(--warm-brown); margin-bottom: 4px; }
.cart-item-price { font-size: 15px; font-weight: 600; }
.cart-item-qty { display: flex; align-items: center; gap: 12px; }
.cart-item-qty button { width: 32px; height: 32px; border: 1px solid var(--blush); background: none; border-radius: 8px; font-size: 18px; cursor: pointer; transition: all 0.2s; display: flex; align-items: center; justify-content: center; }
.cart-item-qty button:hover { border-color: var(--burgundy); background: rgba(107,45,62,0.05); }
.cart-item-qty span { font-size: 16px; font-weight: 500; min-width: 20px; text-align: center; }
.cart-item-remove { background: none; border: none; font-size: 18px; color: var(--warm-brown); cursor: pointer; padding: 8px; }
.cart-item-bundle-badge { display: inline-block; background: var(--burgundy); color: white; font-size: 10px; padding: 2px 8px; border-radius: 10px; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 4px; }

.cart-checkout { background: var(--soft-white); border-radius: 20px; padding: 32px; border: 1px solid rgba(201,162,150,0.2); position: sticky; top: 80px; }
.checkout-summary { margin-bottom: 28px; }
.checkout-row { display: flex; justify-content: space-between; padding: 10px 0; font-size: 14px; color: var(--warm-brown); }
.checkout-row.total { font-size: 18px; font-weight: 600; color: var(--dark); border-top: 1px solid var(--blush); margin-top: 8px; padding-top: 16px; font-family: 'Cormorant Garamond', serif; font-size: 24px; }
.form-group { margin-bottom: 12px; }
.form-input { width: 100%; padding: 14px 18px; border: 1.5px solid var(--blush); border-radius: 10px; font-family: 'Raleway'; font-size: 14px; background: white; transition: border-color 0.3s; resize: none; }
.form-input:focus { outline: none; border-color: var(--burgundy); }
.form-input::placeholder { color: var(--rose); }

/* ===== ANIMATIONS ===== */
.animate-in { opacity: 0; animation: fadeUp 0.8s ease forwards; }
@keyframes fadeUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }
.animate-in:nth-child(1) { animation-delay: 0.1s; }
.animate-in:nth-child(2) { animation-delay: 0.15s; }
.animate-in:nth-child(3) { animation-delay: 0.2s; }
.animate-in:nth-child(4) { animation-delay: 0.25s; }
.animate-in:nth-child(5) { animation-delay: 0.3s; }

/* ===== MOBILE ===== */
@media (max-width: 768px) {
  .hero { grid-template-columns: 1fr; min-height: auto; }
  .hero-gallery { min-height: 75vh; }
  .hero-info { padding: 36px 20px; }
  .nav-links { display: none; }
  .nav-products-dropdown { display: none; }
  .features-grid { grid-template-columns: 1fr; padding: 0 16px; }
  .care-grid { grid-template-columns: repeat(2, 1fr); padding: 0 16px; }
  .size-chart-wrapper { padding: 0 16px; overflow-x: auto; }
  .cta-group { flex-direction: column; }
  .btn-wishlist { width: 100%; border-radius: 60px; height: 54px; }
  .crosssell-container { grid-template-columns: 1fr; padding: 28px; }
  .crosssell-plus { font-size: 32px; }
  .guarantees-grid { flex-direction: column; gap: 16px; align-items: flex-start; padding: 0 16px; }
  .faq-container { padding: 0 16px; }
  .catalog-grid { grid-template-columns: 1fr; max-width: 400px; }
  .other-products-grid { grid-template-columns: 1fr; max-width: 400px; }
  .cart-layout { grid-template-columns: 1fr; }
  .block-content { padding: 40px 24px; }
  .block-text-left .block-content, .block-text-right .block-content { margin: 0; }
  .components-grid { grid-template-columns: 1fr; max-width: 340px; margin: 0 auto; }
  .reviews-grid { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }
  .instagram-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 28px; padding: 36px 20px 24px; }
  .static-page { padding: 100px 20px 40px; }
  .static-page-title { font-size: 30px; margin-bottom: 28px; }
}

/* ===== CHECKOUT STEPS ===== */
.checkout-steps { display: flex; align-items: center; justify-content: center; gap: 12px; margin-bottom: 40px; }
.checkout-step { display: flex; align-items: center; gap: 8px; color: var(--warm-brown); opacity: 0.5; transition: all 0.3s; text-decoration: none; }
.checkout-step.active { opacity: 1; color: var(--dark); }
.checkout-step.done { opacity: 0.8; color: var(--burgundy); }
a.checkout-step:hover { opacity: 1; }
.step-num { display: flex; align-items: center; justify-content: center; width: 28px; height: 28px; border-radius: 50%; border: 1.5px solid currentColor; font-size: 13px; font-weight: 600; }
.checkout-step.active .step-num { background: var(--dark); color: white; border-color: var(--dark); }
.checkout-step.done .step-num { background: var(--burgundy); color: white; border-color: var(--burgundy); }
.step-label { font-size: 13px; letter-spacing: 0.5px; }
.step-divider { color: var(--warm-brown); opacity: 0.3; font-size: 14px; }

/* ===== CHECKOUT FORM ===== */
.checkout-form { background: white; border-radius: 20px; padding: 32px; border: 1px solid rgba(201,162,150,0.15); }
.checkout-form-title { font-family: 'Cormorant Garamond', serif; font-size: 22px; font-weight: 500; margin-bottom: 16px; color: var(--dark); }
.form-label { display: block; font-size: 12px; color: var(--warm-brown); margin-bottom: 4px; letter-spacing: 0.5px; }

/* ===== CHECKOUT ITEMS (sidebar) ===== */
.checkout-item { display: flex; align-items: center; gap: 12px; padding: 12px 0; border-bottom: 1px solid rgba(201,162,150,0.1); }
.checkout-item:last-of-type { border-bottom: none; }
.checkout-item-photo { width: 56px; height: 72px; border-radius: 8px; overflow: hidden; flex-shrink: 0; background: var(--blush); }
.checkout-item-photo img { width: 100%; height: 100%; object-fit: cover; }
.checkout-item-info { flex: 1; min-width: 0; }
.checkout-item-name { font-family: 'Cormorant Garamond', serif; font-size: 16px; font-weight: 500; line-height: 1.2; }
.checkout-item-variant { font-size: 12px; color: var(--warm-brown); margin-top: 2px; }
.checkout-item-price { font-size: 14px; font-weight: 600; white-space: nowrap; }

/* ===== THANK YOU ===== */
.thankyou-card { max-width: 520px; margin: 0 auto; background: white; border-radius: 24px; padding: 48px 40px; text-align: center; border: 1px solid rgba(201,162,150,0.15); }
.thankyou-icon { font-size: 48px; margin-bottom: 16px; }
.thankyou-title { font-family: 'Cormorant Garamond', serif; font-size: 36px; font-weight: 400; margin-bottom: 12px; }
.thankyou-text { font-size: 15px; color: var(--warm-brown); margin-bottom: 8px; line-height: 1.6; }
.thankyou-total { margin-top: 24px; padding: 16px; background: var(--blush); border-radius: 12px; font-size: 18px; display: flex; justify-content: center; gap: 12px; }
.thankyou-total strong { color: var(--dark); }
.thankyou-actions { margin-top: 28px; }

@media (max-width: 768px) {
  .checkout-steps { gap: 6px; }
  .step-label { display: none; }
  .checkout-form { padding: 24px 20px; }
  .thankyou-card { padding: 36px 24px; margin: 0 16px; }
  .thankyou-title { font-size: 28px; }
}

/* ===== Nova Poshta delivery ===== */
.delivery-type-selector { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.delivery-type-option {
  display: flex; align-items: center; gap: 12px; padding: 14px 16px;
  border: 2px solid #e8e0db; border-radius: 12px; cursor: pointer;
  transition: all 0.2s; background: white;
}
.delivery-type-option:hover { border-color: #C9A296; }
.delivery-type-option.active { border-color: var(--deep-burgundy); background: #faf6f3; }
.delivery-type-option input { display: none; }
.delivery-type-icon { font-size: 24px; flex-shrink: 0; }
.delivery-type-text { display: flex; flex-direction: column; }
.delivery-type-text strong { font-size: 13px; color: #2A2024; }
.delivery-type-text small { font-size: 11px; color: #8B6F76; margin-top: 2px; }

.np-autocomplete-wrap { position: relative; }
.np-suggestions {
  display: none; position: absolute; top: 100%; left: 0; right: 0; z-index: 100;
  background: white; border: 1.5px solid #e8e0db; border-top: none;
  border-radius: 0 0 12px 12px; max-height: 240px; overflow-y: auto;
  box-shadow: 0 8px 24px rgba(42,32,36,0.12);
}
.np-suggestion {
  padding: 10px 16px; font-size: 13px; color: #2A2024; cursor: pointer;
  border-bottom: 1px solid #f5f0ea; transition: background 0.15s;
}
.np-suggestion:hover { background: #faf6f3; }
.np-suggestion:last-child { border-bottom: none; border-radius: 0 0 12px 12px; }

.delivery-cost-block {
  margin: -4px 0 16px; padding: 14px 16px;
  background: #f9f5f2; border-radius: 12px; border: 1px solid #e8e0db;
}
.delivery-cost-inner { display: flex; align-items: center; gap: 10px; font-size: 14px; color: #2A2024; }
.delivery-cost-icon { font-size: 18px; }

@media (max-width: 600px) {
  .delivery-type-selector { grid-template-columns: 1fr; }
  .np-suggestions { max-height: 200px; }
}
