
  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

  :root {
    --white:   #FAFAF8;
    --dark:    #1A1A18;
    --accent:  #C4A882;
    --beige:   #EDE9E3;
    --mid:     #7A7A72;
    --border:  #D8D4CE;
  }

  html { scroll-behavior: smooth; }

  body {
    background: var(--white);
    color: var(--dark);
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    line-height: 1.6;
  }

  /* ── UTILITY ── */
  .container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
  .serif { font-family: 'Playfair Display', serif; }
  .eyebrow {
    font-size: 11px; font-weight: 500; letter-spacing: .14em;
    text-transform: uppercase; color: var(--mid);
  }

  /* ── PAGES ── */
  .page { display: none; }
  .page.active { display: block; }

  /* ── HEADER ── */
  header {
    position: sticky; top: 0; z-index: 100;
    background: var(--white); border-bottom: 1px solid var(--border);
  }
  .header-inner {
    display: flex; align-items: center;
    justify-content: space-between; height: 64px;
  }
  .logo {
    cursor: pointer; color: var(--dark);
    text-decoration: none; line-height: 1;
    display: inline-flex; flex-direction: column; gap: 3px;
  }
  .logo-top {
    font-family: 'Playfair Display', serif;
    font-size: 17px; font-weight: 600; font-style: italic;
    letter-spacing: .02em; color: var(--dark);
  }
  .logo-bottom {
    font-family: 'Inter', sans-serif;
    font-size: 9px; font-weight: 500;
    letter-spacing: .22em; text-transform: uppercase;
    color: var(--accent);
  }
  nav { display: flex; gap: 28px; }
  nav a {
    font-size: 13px; font-weight: 500; color: var(--dark);
    text-decoration: none; letter-spacing: .04em;
    transition: color .2s;
  }
  nav a:hover { color: var(--accent); }
  .header-icons { display: flex; gap: 16px; align-items: center; }
  .icon-btn {
    background: none; border: none; cursor: pointer;
    color: var(--dark); font-size: 13px;
    font-weight: 500; font-family: 'Inter', sans-serif;
    transition: color .2s; padding: 4px;
  }
  .icon-btn:hover { color: var(--accent); }
  .cart-count {
    display: inline-flex; align-items: center; justify-content: center;
    width: 18px; height: 18px; border-radius: 50%;
    background: var(--accent); color: #fff;
    font-size: 10px; font-weight: 600; margin-left: 4px;
  }

  /* ── HERO ── */
  .hero {
    background: var(--beige);
    padding: 80px 0 64px;
    display: grid; grid-template-columns: 1fr 1fr;
    align-items: center; gap: 64px;
    overflow: hidden;
  }
  .hero-text { padding-left: 48px; }
  .hero-text .eyebrow { margin-bottom: 20px; }
  .hero-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(38px, 5vw, 62px);
    font-weight: 400; line-height: 1.15;
    margin-bottom: 24px;
  }
  .hero-title em { font-style: italic; color: var(--accent); }
  .hero-sub {
    font-size: 16px; color: var(--mid);
    max-width: 380px; margin-bottom: 36px;
  }
  .btn {
    display: inline-block; padding: 14px 32px;
    background: var(--dark); color: var(--white);
    font-size: 13px; font-weight: 500; letter-spacing: .08em;
    text-transform: uppercase; text-decoration: none;
    border: none; cursor: pointer;
    transition: background .2s, color .2s;
  }
  .btn:hover { background: var(--accent); }
  .btn-outline {
    background: transparent; color: var(--dark);
    border: 1px solid var(--dark);
  }
  .btn-outline:hover { background: var(--dark); color: var(--white); }
  .hero-image {
    height: 520px; background: var(--border);
    display: flex; align-items: center; justify-content: center;
    font-size: 72px; color: var(--mid);
    position: relative; overflow: hidden;
  }
  .hero-image-placeholder {
    display: flex; flex-direction: column;
    align-items: center; gap: 12px; color: var(--mid);
  }

  /* ── CATALOG ── */
  .section { padding: 72px 0; }
  .section-header {
    display: flex; justify-content: space-between;
    align-items: flex-end; margin-bottom: 40px;
  }
  .section-title {
    font-family: 'Playfair Display', serif;
    font-size: 32px; font-weight: 400;
  }

  /* Filters */
  .filters {
    display: flex; gap: 8px; margin-bottom: 40px;
    flex-wrap: wrap;
  }
  .filter-btn {
    padding: 8px 18px; border: 1px solid var(--border);
    background: none; cursor: pointer; font-size: 13px;
    font-family: 'Inter', sans-serif; color: var(--mid);
    transition: all .2s;
  }
  .filter-btn.active,
  .filter-btn:hover {
    border-color: var(--dark); color: var(--dark);
    background: var(--beige);
  }

  /* Product grid */
  .products {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 32px 24px;
  }
  .product-card { cursor: pointer; }
  .product-image {
    position: relative; overflow: hidden;
    background: var(--beige); aspect-ratio: 3/4;
    display: block;
    margin-bottom: 14px;
  }
  .product-badge {
    position: absolute; top: 12px; left: 12px;
    background: var(--dark); color: var(--white);
    font-size: 10px; font-weight: 600; letter-spacing: .1em;
    text-transform: uppercase; padding: 4px 8px;
  }
  .badge-sale { background: #B85450; }
  .product-overlay {
    position: absolute; bottom: 0; left: 0; right: 0;
    background: var(--dark); color: var(--white);
    text-align: center; padding: 14px;
    font-size: 12px; font-weight: 500; letter-spacing: .08em;
    text-transform: uppercase;
    transform: translateY(100%);
    transition: transform .25s ease;
  }
  .product-card:hover .product-overlay { transform: translateY(0); }
  .product-image:hover { }
  .product-name {
    font-size: 14px; font-weight: 500; margin-bottom: 4px;
  }
  .product-cat { font-size: 12px; color: var(--mid); margin-bottom: 8px; }
  .product-price { display: flex; gap: 10px; align-items: center; }
  .price { font-weight: 600; font-size: 15px; }
  .price-old { font-size: 13px; color: var(--mid); text-decoration: line-through; }

  /* ── STRIPS ── */
  .strip {
    background: var(--dark); color: var(--white);
    padding: 48px 0; text-align: center;
  }
  .strip h2 {
    font-family: 'Playfair Display', serif;
    font-size: 28px; margin-bottom: 12px;
  }
  .strip p { color: rgba(255,255,255,.65); margin-bottom: 24px; }

  /* ── INFO BLOCKS ── */
  .info-grid {
    display: grid; grid-template-columns: repeat(3, 1fr);
    gap: 32px; padding: 56px 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
  }
  .info-block { text-align: center; }
  .info-icon { font-size: 28px; margin-bottom: 12px; }
  .info-block h4 { font-weight: 600; margin-bottom: 6px; }
  .info-block p { font-size: 13px; color: var(--mid); }

  /* ── FOOTER ── */
  footer {
    background: var(--dark); color: rgba(255,255,255,.85);
    padding: 56px 0 32px;
  }
  .footer-grid {
    display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px; margin-bottom: 48px;
  }
  .footer-brand .logo { color: var(--white); display: block; margin-bottom: 14px; }
  .footer-brand p { font-size: 13px; color: rgba(255,255,255,.5); line-height: 1.7; }
  .footer-col h5 {
    font-size: 11px; font-weight: 600; letter-spacing: .12em;
    text-transform: uppercase; color: rgba(255,255,255,.4);
    margin-bottom: 16px;
  }
  .footer-col a {
    display: block; color: rgba(255,255,255,.75);
    text-decoration: none; font-size: 13px;
    margin-bottom: 10px; transition: color .2s;
    cursor: pointer;
  }
  .footer-col a:hover { color: var(--accent); }
  .footer-bottom {
    border-top: 1px solid rgba(255,255,255,.1);
    padding-top: 24px;
    display: flex; justify-content: space-between;
    font-size: 12px; color: rgba(255,255,255,.4);
    flex-wrap: wrap; gap: 12px;
  }
  .requisites {
    font-size: 12px; color: rgba(255,255,255,.4);
    line-height: 1.8;
  }

  /* ── LEGAL PAGES ── */
  .legal-page { max-width: 800px; margin: 0 auto; padding: 64px 24px; }
  .legal-page h1 {
    font-family: 'Playfair Display', serif;
    font-size: 32px; font-weight: 400; margin-bottom: 8px;
  }
  .legal-date { font-size: 13px; color: var(--mid); margin-bottom: 40px; }
  .legal-page h2 {
    font-size: 16px; font-weight: 600;
    margin: 32px 0 12px;
  }
  .legal-page p, .legal-page li {
    font-size: 14px; color: #333;
    line-height: 1.75; margin-bottom: 10px;
  }
  .legal-page ul { padding-left: 20px; }
  .legal-page li { margin-bottom: 6px; }
  .back-btn {
    display: inline-flex; align-items: center; gap: 8px;
    font-size: 13px; color: var(--mid);
    cursor: pointer; margin-bottom: 32px;
    background: none; border: none;
    font-family: 'Inter', sans-serif;
    transition: color .2s;
  }
  .back-btn:hover { color: var(--dark); }

  /* ── PAYMENT PAGE ── */
  .payment-section {
    max-width: 900px; margin: 0 auto;
    padding: 64px 24px;
  }
  .payment-section h1 {
    font-family: 'Playfair Display', serif;
    font-size: 32px; font-weight: 400; margin-bottom: 40px;
  }
  .payment-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }
  .payment-card {
    border: 1px solid var(--border); padding: 28px;
    background: var(--white);
  }
  .payment-card h3 {
    font-size: 16px; font-weight: 600; margin-bottom: 8px;
  }
  .payment-card p { font-size: 14px; color: var(--mid); }
  .payment-icon { font-size: 32px; margin-bottom: 14px; }
  .payment-methods {
    display: flex; gap: 8px; flex-wrap: wrap; margin-top: 12px;
  }
  .payment-tag {
    background: var(--beige); padding: 4px 10px;
    font-size: 11px; font-weight: 500; color: var(--dark);
    border: 1px solid var(--border);
  }

  /* ── COOKIE BANNER ── */
  .cookie-banner {
    position: fixed; bottom: 24px; left: 24px; right: 24px;
    max-width: 600px; background: var(--dark);
    color: var(--white); padding: 20px 24px;
    display: flex; align-items: center; gap: 20px;
    z-index: 999; box-shadow: 0 8px 32px rgba(0,0,0,.2);
  }
  .cookie-banner p { font-size: 13px; color: rgba(255,255,255,.75); flex: 1; }
  .cookie-banner a { color: var(--accent); }
  .cookie-close {
    background: var(--accent); color: var(--white);
    border: none; padding: 8px 18px; cursor: pointer;
    font-size: 12px; font-weight: 600; letter-spacing: .06em;
    text-transform: uppercase; font-family: 'Inter', sans-serif;
    white-space: nowrap;
  }

  /* ── CART SIDEBAR ── */
  .cart-overlay {
    position: fixed; inset: 0; background: rgba(0,0,0,.4);
    z-index: 200; display: none;
  }
  .cart-overlay.open { display: block; }
  .cart-sidebar {
    position: fixed; top: 0; right: 0; bottom: 0;
    width: 380px; background: var(--white);
    z-index: 201; padding: 32px;
    transform: translateX(100%); transition: transform .3s ease;
    overflow-y: auto;
  }
  .cart-sidebar.open { transform: translateX(0); }
  .cart-header {
    display: flex; justify-content: space-between;
    align-items: center; margin-bottom: 32px;
  }
  .cart-header h3 {
    font-family: 'Playfair Display', serif; font-size: 22px;
  }
  .cart-item {
    display: flex; gap: 16px; padding: 16px 0;
    border-bottom: 1px solid var(--border);
  }
  .cart-item-img {
    width: 72px; height: 96px;
    background: var(--beige);
    display: flex; align-items: center; justify-content: center;
    font-size: 28px; flex-shrink: 0;
  }
  .cart-item-info { flex: 1; }
  .cart-item-name { font-weight: 500; font-size: 14px; margin-bottom: 4px; }
  .cart-item-sub { font-size: 12px; color: var(--mid); margin-bottom: 8px; }
  .cart-item-price { font-weight: 600; font-size: 14px; }
  .qty-control {
    display: flex; align-items: center; gap: 10px;
    margin-top: 8px;
  }
  .qty-btn {
    width: 24px; height: 24px;
    border: 1px solid var(--border); background: none;
    cursor: pointer; font-size: 14px; color: var(--dark);
    display: flex; align-items: center; justify-content: center;
  }
  .cart-total {
    margin-top: 24px; padding-top: 24px;
    border-top: 1px solid var(--border);
  }
  .cart-total-row {
    display: flex; justify-content: space-between;
    margin-bottom: 8px; font-size: 14px;
  }
  .cart-total-row.grand {
    font-weight: 700; font-size: 16px; margin-top: 12px;
  }
  .checkout-btn {
    width: 100%; margin-top: 20px;
    background: var(--dark); color: var(--white);
    border: none; padding: 16px;
    font-size: 13px; font-weight: 600; letter-spacing: .08em;
    text-transform: uppercase; cursor: pointer;
    font-family: 'Inter', sans-serif; transition: background .2s;
  }
  .checkout-btn:hover { background: var(--accent); }
  .empty-cart {
    text-align: center; padding: 48px 0; color: var(--mid);
  }
  .empty-cart p { font-size: 14px; margin-top: 12px; }

  /* Toast */
  .toast {
    position: fixed; bottom: 80px; right: 24px;
    background: var(--dark); color: var(--white);
    padding: 12px 20px; font-size: 13px;
    z-index: 300; opacity: 0; pointer-events: none;
    transition: opacity .3s; max-width: 260px;
  }
  .toast.show { opacity: 1; }

  @media (max-width: 768px) {
    .hero { grid-template-columns: 1fr; padding: 48px 0; }
    .hero-text { padding: 0 24px; }
    .hero-image { display: none; }
    .info-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .payment-grid { grid-template-columns: 1fr; }
    nav { display: none; }
    .cart-sidebar { width: 100%; }
  }
