:root {
      --bg: #f5f1eb;
      --paper: #fffaf3;
      --white: #ffffff;
      --dark: #171412;
      --muted: #776d63;
      --soft: #ece3d8;
      --accent: #b87642;
      --accent-2: #d5a06f;
      --green: #315846;
      --red: #c5503d;
      --line: rgba(23, 20, 18, .11);
      --shadow: 0 22px 70px rgba(37, 26, 18, .13);
      --radius: 24px;
    }

    * { box-sizing: border-box; margin: 0; padding: 0; }
    html { scroll-behavior: smooth; }
    body {
      font-family: "Inter", sans-serif;
      background: var(--bg);
      color: var(--dark);
      overflow-x: hidden;
    }
    a { color: inherit; text-decoration: none; }
    button, input, select, textarea { font-family: inherit; }
    img { max-width: 100%; display: block; }
    .container { width: min(1320px, calc(100% - 36px)); margin: 0 auto; }

    .page { display: none; }
    .page.active { display: block; }

    .promo-bar {
      background: var(--dark);
      color: #fff;
      font-size: 13px;
      font-weight: 700;
      letter-spacing: .01em;
      padding: 10px 0;
      text-align: center;
    }

    .topbar {
      position: sticky;
      top: 0;
      z-index: 50;
      background: rgba(245, 241, 235, .82);
      backdrop-filter: blur(18px);
      border-bottom: 1px solid var(--line);
    }

    .nav {
      min-height: 78px;
      display: grid;
      grid-template-columns: auto 1fr;
      align-items: center;
      gap: 24px;
    }

    .logo {
      font-size: 30px;
      font-weight: 900;
      letter-spacing: -.06em;
    }
    .logo span { color: var(--accent); }

    .search {
      max-width: 560px;
      width: 100%;
      justify-self: center;
      position: relative;
    }
    .search input {
      width: 100%;
      height: 48px;
      border: 1px solid var(--line);
      border-radius: 999px;
      background: rgba(255,255,255,.72);
      outline: none;
      padding: 0 52px 0 20px;
      font-weight: 600;
      color: var(--dark);
    }
    .search button {
      position: absolute;
      right: 6px;
      top: 6px;
      width: 36px;
      height: 36px;
      border: 0;
      border-radius: 50%;
      background: var(--dark);
      color: white;
      cursor: pointer;
      font-size: 16px;
    }
    .mobile-menu-toggle {
      display: none;
      width: 42px;
      height: 42px;
      border: 1px solid var(--line);
      border-radius: 50%;
      background: rgba(255,255,255,.76);
      align-items: center;
      justify-content: center;
      flex-direction: column;
      gap: 3px;
      cursor: pointer;
      justify-self: end;
      padding: 0;
    }
    .mobile-menu-toggle span {
      display: block;
      width: 16px;
      height: 2px;
      border-radius: 99px;
      background: var(--dark);
      transition: .22s ease;
    }
    .topbar.menu-open .mobile-menu-toggle span:nth-child(1) { transform: translateY(5px) rotate(45deg); }
    .topbar.menu-open .mobile-menu-toggle span:nth-child(2) { opacity: 0; }
    .topbar.menu-open .mobile-menu-toggle span:nth-child(3) { transform: translateY(-5px) rotate(-45deg); }

    .menu-row { border-top: 1px solid rgba(23, 20, 18, .07); }
    .menu {
      height: 48px;
      display: flex;
      align-items: center;
      gap: 24px;
      overflow: visible;
      scrollbar-width: none;
      color: var(--muted);
      font-size: 14px;
      font-weight: 800;
      white-space: nowrap;
    }
    .menu::-webkit-scrollbar { display: none; }
    .menu a:hover { color: var(--dark); }
    .menu-dropdown {
      position: relative;
      display: inline-flex;
      align-items: center;
      height: 100%;
      flex: 0 0 auto;
    }
    .menu-dropdown button {
      border: 0;
      background: transparent;
      color: inherit;
      font: inherit;
      font-weight: 800;
      cursor: pointer;
    }
    .menu-dropdown button::after {
      content: "⌄";
      margin-left: 6px;
      font-size: 12px;
    }
    .menu-dropdown-panel {
      position: absolute;
      top: 100%;
      right: 0;
      z-index: 80;
      min-width: 230px;
      padding: 10px;
      border: 1px solid var(--line);
      border-radius: 16px;
      background: rgba(255,250,243,.98);
      box-shadow: var(--shadow);
      display: none;
    }
    .menu-dropdown:hover .menu-dropdown-panel,
    .menu-dropdown:focus-within .menu-dropdown-panel { display: grid; gap: 4px; }
    .menu-dropdown-panel a {
      padding: 10px 12px;
      border-radius: 10px;
      color: var(--dark);
    }
    .menu-dropdown-panel a:hover { background: var(--soft); transform: none; }

    .stories-wrap { padding: 24px 0 10px; }
    .stories {
      display: flex;
      gap: 18px;
      overflow-x: auto;
      padding-bottom: 10px;
      scrollbar-width: none;
    }
    .stories::-webkit-scrollbar { display: none; }
    .story {
      min-width: 92px;
      text-align: center;
      border: 0;
      background: transparent;
      cursor: pointer;
      color: inherit;
    }
    .story-img {
      width: 78px;
      height: 78px;
      margin: 0 auto 9px;
      padding: 3px;
      border-radius: 50%;
      background: linear-gradient(135deg, var(--accent), #222, var(--accent-2));
    }
    .story-img div {
      width: 100%;
      height: 100%;
      border-radius: 50%;
      border: 3px solid var(--bg);
      background: var(--card-img) center/cover no-repeat;
    }
    .story span { font-size: 12px; font-weight: 800; color: var(--dark); }

    .story-modal {
      position: fixed;
      inset: 0;
      z-index: 220;
      display: none;
      align-items: center;
      justify-content: center;
      padding: 24px;
      background: rgba(12, 10, 9, .88);
      backdrop-filter: blur(18px);
    }
    .story-modal.active { display: flex; }
    .story-phone {
      position: relative;
      width: min(390px, calc(100vw - 34px));
      aspect-ratio: 9 / 16;
      max-height: 88vh;
      overflow: hidden;
      background: #111;
      box-shadow: 0 34px 90px rgba(0,0,0,.42);
      border: 10px solid rgba(255,255,255,.08);
    }
    .story-video {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
      background: #111;
    }
    .story-overlay {
      position: absolute;
      inset: 0;
      pointer-events: none;
      background: linear-gradient(180deg, rgba(0,0,0,.58), transparent 34%, rgba(0,0,0,.72));
    }
    .story-progress {
      position: absolute;
      left: 14px;
      right: 14px;
      top: 14px;
      display: grid;
      grid-template-columns: repeat(6, 1fr);
      gap: 5px;
      z-index: 3;
    }
    .story-progress span {
      height: 3px;
      border-radius: 999px;
      background: rgba(255,255,255,.34);
      overflow: hidden;
    }
    .story-progress span.active::after {
      content: "";
      display: block;
      width: 100%;
      height: 100%;
      background: #fff;
      animation: storyFill 8s linear forwards;
    }
    @keyframes storyFill { from { transform: translateX(-100%); } to { transform: translateX(0); } }
    .story-modal-head {
      position: absolute;
      left: 18px;
      right: 60px;
      top: 30px;
      z-index: 4;
      display: flex;
      align-items: center;
      gap: 10px;
      color: #fff;
    }
    .story-modal-avatar {
      width: 38px;
      height: 38px;
      border-radius: 50%;
      border: 2px solid rgba(255,255,255,.85);
      background: var(--story-avatar) center/cover no-repeat;
      flex: 0 0 auto;
    }
    .story-modal-head strong {
      display: block;
      font-size: 14px;
      letter-spacing: -.02em;
    }
    .story-modal-head span {
      color: rgba(255,255,255,.66);
      font-size: 12px;
      font-weight: 700;
    }
    .story-close {
      position: absolute;
      right: 14px;
      top: 27px;
      z-index: 5;
      width: 38px;
      height: 38px;
      border: 0;
      border-radius: 50%;
      background: rgba(255,255,255,.16);
      color: #fff;
      font-size: 26px;
      line-height: 1;
      cursor: pointer;
      backdrop-filter: blur(12px);
    }
    .story-content {
      position: absolute;
      left: 22px;
      right: 22px;
      bottom: 24px;
      z-index: 4;
      color: #fff;
    }
    .story-content small {
      display: inline-flex;
      padding: 8px 11px;
      border-radius: 999px;
      background: rgba(255,255,255,.16);
      border: 1px solid rgba(255,255,255,.18);
      backdrop-filter: blur(12px);
      font-size: 11px;
      font-weight: 900;
      text-transform: uppercase;
      letter-spacing: .08em;
      margin-bottom: 12px;
    }
    .story-content h3 {
      font-size: 31px;
      line-height: .96;
      letter-spacing: -.06em;
      margin-bottom: 10px;
    }
    .story-content p {
      color: rgba(255,255,255,.76);
      line-height: 1.55;
      font-size: 14px;
      font-weight: 650;
      margin-bottom: 16px;
    }
    .story-cta {
      min-height: 44px;
      padding: 0 16px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      border-radius: 999px;
      background: #fff;
      color: var(--dark);
      font-size: 13px;
      font-weight: 900;
      pointer-events: auto;
    }

    .hero { padding: 14px 0 34px; }
    .hero-layout {
      display: grid;
      grid-template-columns: minmax(0, 1.6fr) minmax(320px, .8fr);
      gap: 20px;
    }
    .slider {
      position: relative;
      min-height: 510px;
      border-radius: 36px;
      overflow: hidden;
      box-shadow: var(--shadow);
      background: #ddd;
    }
    .slide {
      position: absolute;
      inset: 0;
      opacity: 0;
      animation: slider 15s infinite;
      background-size: cover;
      background-position: center;
      background-repeat: no-repeat;
    }
    .slide:nth-child(1) {
      opacity: 1;
      background-image: linear-gradient(90deg, rgba(0,0,0,.65), rgba(0,0,0,.15)), url("https://images.unsplash.com/photo-1600566753190-17f0baa2a6c3?auto=format&fit=crop&w=1600&q=85");
    }
    .slide:nth-child(2) {
      animation-delay: 5s;
      background-image: linear-gradient(90deg, rgba(0,0,0,.62), rgba(0,0,0,.12)), url("https://images.unsplash.com/photo-1618221195710-dd6b41faaea6?auto=format&fit=crop&w=1600&q=85");
    }
    .slide:nth-child(3) {
      animation-delay: 10s;
      background-image: linear-gradient(90deg, rgba(0,0,0,.64), rgba(0,0,0,.16)), url("https://images.unsplash.com/photo-1616486338812-3dadae4b4ace?auto=format&fit=crop&w=1600&q=85");
    }
    @keyframes slider {
      0%, 28% { opacity: 1; transform: scale(1); }
      33%, 95% { opacity: 0; transform: scale(1.04); }
      100% { opacity: 1; transform: scale(1); }
    }
    .slide-content {
      position: absolute;
      inset: auto auto 50px 48px;
      max-width: 590px;
      color: #fff;
      z-index: 3;
    }
    .badge {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 9px 13px;
      border-radius: 999px;
      background: rgba(255,255,255,.16);
      border: 1px solid rgba(255,255,255,.22);
      backdrop-filter: blur(16px);
      font-size: 13px;
      font-weight: 900;
      margin-bottom: 18px;
    }
    .slide-content h1 {
      font-size: clamp(42px, 5.8vw, 78px);
      line-height: .92;
      letter-spacing: -.07em;
      margin-bottom: 20px;
    }
    .slide-content p {
      color: rgba(255,255,255,.82);
      font-size: 17px;
      line-height: 1.65;
      max-width: 510px;
      margin-bottom: 26px;
    }
    .hero-buttons { display: flex; gap: 12px; flex-wrap: wrap; }

    .btn {
      min-height: 46px;
      padding: 0 21px;
      border-radius: 999px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      border: 1px solid transparent;
      font-size: 14px;
      font-weight: 900;
      cursor: pointer;
      transition: .25s ease;
    }
    .btn:hover { transform: translateY(-2px); }
    .btn-dark { background: var(--dark); color: #fff; }
    .btn-light { background: #fff; color: var(--dark); }
    .btn-outline { border-color: var(--line); background: rgba(255,255,255,.7); color: var(--dark); }

    .slider-dots {
      position: absolute;
      left: 48px;
      bottom: 22px;
      z-index: 5;
      display: flex;
      gap: 8px;
    }
    .slider-dots span {
      width: 28px;
      height: 5px;
      border-radius: 999px;
      background: rgba(255,255,255,.38);
    }
    .slider-dots span:first-child { background: #fff; }

    .side-deals { display: grid; gap: 20px; }
    .deal-card {
      min-height: 245px;
      border-radius: 30px;
      padding: 26px;
      position: relative;
      overflow: hidden;
      color: white;
      box-shadow: 0 18px 52px rgba(37,26,18,.12);
      background-size: cover;
      background-position: center;
      background-repeat: no-repeat;
    }
    .deal-card::after {
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(135deg, rgba(0,0,0,.66), rgba(0,0,0,.08));
    }
    .deal-card > * { position: relative; z-index: 2; }
    .deal-card h3 { font-size: 28px; letter-spacing: -.04em; max-width: 230px; margin: 11px 0; }
    .deal-card p { color: rgba(255,255,255,.78); line-height: 1.55; max-width: 250px; margin-bottom: 18px; }
    .deal-card small { font-weight: 900; color: #ffe0bd; }
    .deal-1 { background-image: url("https://images.unsplash.com/photo-1567016376408-0226e4d0c1ea?auto=format&fit=crop&w=900&q=85"); }
    .deal-2 { background-image: url("https://images.unsplash.com/photo-1600210492486-724fe5c67fb0?auto=format&fit=crop&w=900&q=85"); }

    section { padding: 42px 0; }
    .section-head {
      display: flex;
      align-items: end;
      justify-content: space-between;
      gap: 20px;
      margin-bottom: 22px;
    }
    .section-head h2 {
      font-size: clamp(28px, 3vw, 42px);
      letter-spacing: -.055em;
      line-height: 1;
    }
    .section-head p {
      max-width: 460px;
      color: var(--muted);
      line-height: 1.65;
      font-weight: 500;
    }

    .category-showcase {
      display: grid;
      grid-template-columns: 1.15fr .85fr .85fr;
      grid-auto-rows: 220px;
      gap: 18px;
    }
    .cat-tile {
      position: relative;
      overflow: hidden;
      border-radius: 34px;
      background: #ddd;
      isolation: isolate;
      box-shadow: 0 18px 54px rgba(37,26,18,.1);
      transition: transform .32s ease, box-shadow .32s ease;
    }
    .cat-tile.big { grid-row: span 2; }
    .cat-tile:hover { transform: translateY(-7px); box-shadow: var(--shadow); }
    .cat-tile::before {
      content: "";
      position: absolute;
      inset: 0;
      background: var(--cat-img) center/cover no-repeat;
      transition: transform .55s ease;
      z-index: -2;
    }
    .cat-tile:hover::before { transform: scale(1.08); }
    .cat-tile::after {
      content: "";
      position: absolute;
      inset: 0;
      background:
        radial-gradient(circle at 20% 20%, rgba(255,255,255,.18), transparent 34%),
        linear-gradient(180deg, rgba(0,0,0,.04) 10%, rgba(0,0,0,.72) 100%);
      z-index: -1;
    }
    .cat-content { position: absolute; left: 22px; right: 22px; bottom: 22px; color: #fff; }
    .cat-content small {
      display: inline-flex;
      padding: 7px 11px;
      border-radius: 999px;
      background: rgba(255,255,255,.18);
      border: 1px solid rgba(255,255,255,.22);
      backdrop-filter: blur(14px);
      font-size: 11px;
      font-weight: 900;
      letter-spacing: .08em;
      text-transform: uppercase;
      margin-bottom: 12px;
    }
    .cat-content strong {
      display: block;
      font-size: clamp(22px, 2.4vw, 34px);
      line-height: 1;
      letter-spacing: -.06em;
      margin-bottom: 10px;
    }
    .cat-content span {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 12px;
      color: rgba(255,255,255,.82);
      font-size: 14px;
      font-weight: 800;
    }
    .cat-content span::after {
      content: "→";
      width: 36px;
      height: 36px;
      display: grid;
      place-items: center;
      border-radius: 50%;
      background: rgba(255,255,255,.92);
      color: var(--dark);
      font-size: 18px;
      flex: 0 0 auto;
    }

    .tabs {
      display: flex;
      gap: 10px;
      overflow-x: auto;
      padding-bottom: 10px;
      margin-bottom: 18px;
      scrollbar-width: none;
    }
    .tabs::-webkit-scrollbar { display: none; }
    .tab {
      white-space: nowrap;
      padding: 11px 16px;
      border-radius: 999px;
      border: 1px solid var(--line);
      background: rgba(255,255,255,.58);
      font-weight: 900;
      color: var(--muted);
      font-size: 13px;
      cursor: pointer;
    }
    .tab.active { background: var(--dark); color: white; }

    .products { display: grid; grid-template-columns: repeat(5, 1fr); gap: 16px; }
    .product {
      display: block;
      background: rgba(255,255,255,.72);
      border: 1px solid var(--line);
      border-radius: 24px;
      overflow: hidden;
      position: relative;
      transition: .25s ease;
    }
    a.product { color: inherit; text-decoration: none; }
    .product:hover { transform: translateY(-6px); box-shadow: var(--shadow); background: #fff; }
    .product-img { height: 210px; background: var(--card-img) center/cover no-repeat; position: relative; }
    .label {
      position: absolute;
      top: 12px;
      left: 12px;
      z-index: 2;
      padding: 7px 10px;
      border-radius: 999px;
      background: #fff;
      font-size: 11px;
      font-weight: 900;
      color: var(--dark);
      box-shadow: 0 8px 20px rgba(0,0,0,.12);
    }
    .product-body { padding: 15px; }
    .product-body small {
      color: var(--accent);
      font-weight: 900;
      font-size: 11px;
      text-transform: uppercase;
      letter-spacing: .08em;
    }
    .product-body h3 {
      font-size: 16px;
      letter-spacing: -.035em;
      margin: 7px 0 9px;
      line-height: 1.25;
    }
    .rating { color: #c69055; font-size: 12px; letter-spacing: 1px; margin-bottom: 11px; }
    .product-bottom { display: flex; align-items: center; justify-content: space-between; gap: 10px; }
    .price, .old-price { display: none; }
    .consult-note {
      color: var(--muted);
      font-size: 13px;
      font-weight: 800;
      line-height: 1.45;
    }
    .add {
      width: 38px;
      height: 38px;
      border-radius: 14px;
      border: 0;
      background: var(--dark);
      color: #fff;
      font-size: 19px;
      cursor: pointer;
      display: grid;
      place-items: center;
    }

    .wide-banner {
      display: grid;
      grid-template-columns: 1fr 1fr;
      align-items: stretch;
      min-height: 390px;
      border-radius: 34px;
      overflow: hidden;
      background: var(--green);
      color: white;
      box-shadow: var(--shadow);
    }
    .wide-banner .content { padding: clamp(28px, 5vw, 58px); display: flex; flex-direction: column; justify-content: center; }
    .wide-banner h2 { font-size: clamp(34px, 4vw, 62px); line-height: .94; letter-spacing: -.07em; margin: 12px 0 18px; }
    .wide-banner p { color: rgba(255,255,255,.72); line-height: 1.7; max-width: 520px; margin-bottom: 26px; }
    .wide-banner .photo { background: url("https://images.unsplash.com/photo-1616046229478-9901c5536a45?auto=format&fit=crop&w=1200&q=85") center/cover no-repeat; min-height: 330px; }

    .contact-panel {
      display: grid;
      grid-template-columns: .9fr 1.1fr;
      gap: 18px;
      align-items: stretch;
      border-radius: 38px;
      overflow: hidden;
      background: rgba(255,255,255,.62);
      border: 1px solid var(--line);
      box-shadow: 0 24px 70px rgba(37,26,18,.08);
    }
    .contact-info {
      position: relative;
      min-height: 520px;
      padding: clamp(28px, 4vw, 48px);
      color: #fff;
      background:
        linear-gradient(135deg, rgba(23,20,18,.88), rgba(49,88,70,.66)),
        url("https://images.unsplash.com/photo-1616046229478-9901c5536a45?auto=format&fit=crop&w=1100&q=85") center/cover no-repeat;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
    }
    .contact-info h2 {
      font-size: clamp(34px, 4.5vw, 62px);
      line-height: .94;
      letter-spacing: -.07em;
      margin: 14px 0 18px;
      max-width: 520px;
    }
    .contact-info p { color: rgba(255,255,255,.76); line-height: 1.75; max-width: 480px; font-weight: 600; }
    .contact-badge {
      display: inline-flex;
      width: fit-content;
      padding: 8px 12px;
      border-radius: 999px;
      background: rgba(255,255,255,.14);
      border: 1px solid rgba(255,255,255,.2);
      backdrop-filter: blur(14px);
      font-size: 12px;
      font-weight: 900;
      letter-spacing: .04em;
    }
    .contact-points { display: grid; gap: 12px; margin-top: 28px; }
    .contact-points span { display: flex; align-items: center; gap: 10px; color: rgba(255,255,255,.86); font-weight: 800; font-size: 14px; }
    .contact-points span::before {
      content: "✓";
      width: 25px;
      height: 25px;
      border-radius: 50%;
      display: grid;
      place-items: center;
      background: rgba(255,255,255,.16);
      color: #fff;
    }
    .contact-form {
      padding: clamp(24px, 4vw, 44px);
      background: linear-gradient(145deg, #fff, rgba(255,250,243,.72));
      display: grid;
      align-content: center;
      gap: 16px;
    }
    .form-row { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }
    .field { display: grid; gap: 8px; }
    .field label { font-size: 13px; font-weight: 900; color: var(--dark); letter-spacing: -.01em; }
    .field input, .field select, .field textarea {
      width: 100%;
      border: 1px solid rgba(23,20,18,.1);
      outline: none;
      border-radius: 18px;
      background: rgba(245,241,235,.62);
      color: var(--dark);
      padding: 15px 16px;
      font-size: 14px;
      font-weight: 700;
      transition: .2s ease;
    }
    .field textarea { min-height: 126px; resize: vertical; line-height: 1.55; }
    .field input:focus, .field select:focus, .field textarea:focus {
      border-color: rgba(184,118,66,.55);
      background: #fff;
      box-shadow: 0 0 0 4px rgba(184,118,66,.1);
    }

    .category-page-hero {
      padding: 34px 0 24px;
    }
    .category-hero-card {
      min-height: 330px;
      display: grid;
      grid-template-columns: 1.05fr .95fr;
      align-items: stretch;
      overflow: hidden;
      background: var(--dark);
      color: #fff;
      box-shadow: var(--shadow);
    }
    .category-hero-content {
      padding: clamp(30px, 5vw, 58px);
      display: flex;
      flex-direction: column;
      justify-content: center;
    }
    .category-hero-content .badge {
      width: fit-content;
      margin-bottom: 18px;
    }
    .category-hero-content h1 {
      max-width: 640px;
      font-size: clamp(42px, 5.4vw, 78px);
      line-height: .9;
      letter-spacing: -.08em;
      margin-bottom: 20px;
    }
    .category-hero-content p {
      max-width: 520px;
      color: rgba(255,255,255,.72);
      line-height: 1.7;
      font-weight: 600;
    }
    .category-hero-image {
      min-height: 330px;
      background:
        linear-gradient(90deg, rgba(23,20,18,.22), transparent),
        var(--category-hero-img, url("https://images.unsplash.com/photo-1540574163026-643ea20ade25?auto=format&fit=crop&w=1200&q=85")) center/cover no-repeat;
    }
    .category-toolbar {
      padding: 0 0 22px;
    }
    .toolbar-inner {
      display: grid;
      grid-template-columns: 1fr auto;
      gap: 14px;
      align-items: center;
      padding: 16px;
      background: rgba(255,255,255,.66);
      border: 1px solid var(--line);
      box-shadow: 0 16px 46px rgba(37,26,18,.06);
    }
    .result-count {
      font-weight: 900;
      letter-spacing: -.02em;
    }
    .result-count span {
      color: var(--muted);
      font-weight: 700;
      margin-left: 8px;
    }
    .toolbar-select,
    .category-layout {
      display: block;
      padding-bottom: 70px;
    }
    .category-products-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 16px;
    }
    .category-product-card {
      display: block;
      background: rgba(255,255,255,.72);
      border: 1px solid var(--line);
      overflow: hidden;
      transition: .25s ease;
    }
    a.category-product-card { color: inherit; text-decoration: none; }
    .category-product-card:hover {
      transform: translateY(-6px);
      box-shadow: var(--shadow);
      background: #fff;
    }
    .category-product-img {
      height: 310px;
      position: relative;
      background: var(--card-img) center/cover no-repeat;
    }
    .category-product-img .label {
      border-radius: 0;
    }
    .category-product-actions {
      position: absolute;
      right: 14px;
      top: 14px;
      display: grid;
      gap: 8px;
    }
    .category-product-actions button,
    .category-product-actions a {
      width: 38px;
      height: 38px;
      display: grid;
      place-items: center;
      border: 0;
      background: rgba(255,255,255,.92);
      color: var(--dark);
      font-weight: 900;
      cursor: pointer;
    }
    .category-product-body {
      padding: 18px;
    }
    .category-product-body small {
      display: block;
      color: var(--accent);
      font-size: 11px;
      font-weight: 900;
      text-transform: uppercase;
      letter-spacing: .08em;
      margin-bottom: 8px;
    }
    .category-product-body h3 {
      font-size: 18px;
      line-height: 1.2;
      letter-spacing: -.045em;
      margin-bottom: 10px;
    }
    .category-product-meta {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 12px;
      color: var(--muted);
      font-size: 13px;
      font-weight: 750;
      margin-bottom: 14px;
    }
    .category-product-bottom {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 12px;
    }
    .category-product-price { display: none; }
    .category-detail-link {
      min-height: 42px;
      padding: 0 14px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      background: var(--dark);
      color: #fff;
      font-size: 13px;
      font-weight: 900;
    }
    .category-promo-card {
      grid-column: span 2;
      min-height: 310px;
      display: grid;
      grid-template-columns: 1fr 1fr;
      overflow: hidden;
      background: var(--green);
      color: #fff;
    }
    .category-promo-content {
      padding: 28px;
      display: flex;
      flex-direction: column;
      justify-content: center;
    }
    .category-promo-content small {
      color: rgba(255,255,255,.66);
      font-weight: 900;
      text-transform: uppercase;
      letter-spacing: .08em;
      margin-bottom: 12px;
    }
    .category-promo-content h3 {
      font-size: clamp(28px, 3vw, 44px);
      line-height: .96;
      letter-spacing: -.07em;
      margin-bottom: 14px;
    }
    .category-promo-content p {
      color: rgba(255,255,255,.72);
      line-height: 1.65;
      font-weight: 600;
      margin-bottom: 20px;
    }
    .category-promo-img {
      background: url("https://images.unsplash.com/photo-1600210492486-724fe5c67fb0?auto=format&fit=crop&w=900&q=85") center/cover no-repeat;
    }

    .blog-hero {
      padding: 34px 0 24px;
    }
    .blog-hero-card {
      min-height: 360px;
      display: grid;
      grid-template-columns: 1.05fr .95fr;
      overflow: hidden;
      background: #171412;
      color: #fff;
      box-shadow: var(--shadow);
    }
    .blog-hero-content {
      padding: clamp(30px, 5vw, 60px);
      display: flex;
      flex-direction: column;
      justify-content: center;
    }
    .blog-hero-content h1 {
      max-width: 720px;
      font-size: clamp(42px, 5.5vw, 78px);
      line-height: .9;
      letter-spacing: -.08em;
      margin-bottom: 20px;
    }
    .blog-hero-content p {
      max-width: 560px;
      color: rgba(255,255,255,.72);
      line-height: 1.75;
      font-weight: 650;
    }
    .blog-hero-image {
      min-height: 360px;
      background:
        linear-gradient(90deg, rgba(23,20,18,.18), transparent),
        url("https://images.unsplash.com/photo-1600566753190-17f0baa2a6c3?auto=format&fit=crop&w=1200&q=85") center/cover no-repeat;
    }
    .blog-categories {
      padding: 0 0 16px;
    }
    .blog-category-tabs {
      display: flex;
      gap: 10px;
      overflow-x: auto;
      padding-bottom: 8px;
      scrollbar-width: none;
    }
    .blog-category-tabs::-webkit-scrollbar { display: none; }
    .blog-category-tabs button {
      white-space: nowrap;
      min-height: 44px;
      padding: 0 16px;
      border: 1px solid var(--line);
      background: rgba(255,255,255,.66);
      color: var(--muted);
      font-size: 13px;
      font-weight: 900;
      cursor: pointer;
    }
    .blog-category-tabs button.active {
      background: var(--dark);
      color: #fff;
    }
    .blog-layout {
      display: grid;
      grid-template-columns: minmax(0, 1fr) 340px;
      gap: 24px;
      align-items: start;
      padding-bottom: 72px;
    }
    .blog-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 18px;
    }
    .blog-card {
      background: rgba(255,255,255,.72);
      border: 1px solid var(--line);
      overflow: hidden;
      transition: .25s ease;
    }
    .blog-card:hover {
      transform: translateY(-6px);
      box-shadow: var(--shadow);
      background: #fff;
    }
    .blog-card.featured {
      grid-column: span 2;
      display: grid;
      grid-template-columns: 1fr 1fr;
    }
    .blog-card-img {
      min-height: 285px;
      background: var(--card-img) center/cover no-repeat;
    }
    .blog-card.featured .blog-card-img {
      min-height: 390px;
    }
    .blog-card-body {
      padding: 24px;
      display: flex;
      flex-direction: column;
      justify-content: center;
    }
    .blog-meta {
      display: flex;
      flex-wrap: wrap;
      gap: 8px 14px;
      color: var(--accent);
      font-size: 12px;
      font-weight: 900;
      text-transform: uppercase;
      letter-spacing: .06em;
      margin-bottom: 14px;
    }
    .blog-card h2,
    .blog-card h3 {
      line-height: 1;
      letter-spacing: -.055em;
      margin-bottom: 12px;
    }
    .blog-card h2 { font-size: clamp(30px, 3.4vw, 48px); }
    .blog-card h3 { font-size: 25px; }
    .blog-card p {
      color: var(--muted);
      line-height: 1.7;
      font-weight: 600;
      margin-bottom: 20px;
    }
    .blog-read-link {
      width: fit-content;
      min-height: 42px;
      padding: 0 15px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      background: var(--dark);
      color: #fff;
      font-size: 13px;
      font-weight: 900;
    }
    .blog-sidebar {
      position: sticky;
      top: 146px;
      display: grid;
      gap: 16px;
    }
    .blog-side-box {
      padding: 22px;
      background: rgba(255,255,255,.72);
      border: 1px solid var(--line);
      box-shadow: 0 16px 44px rgba(37,26,18,.06);
    }
    .blog-side-box.dark {
      background: var(--dark);
      color: #fff;
    }
    .blog-side-box h3 {
      font-size: 20px;
      letter-spacing: -.04em;
      margin-bottom: 14px;
    }
    .blog-side-box p {
      color: var(--muted);
      line-height: 1.65;
      font-size: 14px;
      font-weight: 650;
      margin-bottom: 16px;
    }
    .blog-side-box.dark p { color: rgba(255,255,255,.68); }
    .popular-posts {
      display: grid;
      gap: 14px;
    }
    .popular-post {
      display: grid;
      grid-template-columns: 76px 1fr;
      gap: 12px;
      align-items: center;
      color: inherit;
    }
    .popular-post-img {
      width: 76px;
      height: 76px;
      background: var(--card-img) center/cover no-repeat;
    }
    .popular-post strong {
      display: block;
      font-size: 14px;
      line-height: 1.25;
      letter-spacing: -.025em;
      margin-bottom: 5px;
    }
    .popular-post span {
      color: var(--muted);
      font-size: 12px;
      font-weight: 800;
    }
    .blog-newsletter-mini input {
      width: 100%;
      min-height: 46px;
      border: 1px solid rgba(255,255,255,.16);
      background: rgba(255,255,255,.08);
      color: #fff;
      padding: 0 14px;
      outline: none;
      font-weight: 700;
      margin-bottom: 10px;
    }
    .blog-newsletter-mini input::placeholder { color: rgba(255,255,255,.48); }
    .blog-detail-hero {
      padding: 34px 0 28px;
    }
    .blog-detail-head {
      display: grid;
      grid-template-columns: minmax(0, 1fr) 420px;
      gap: 28px;
      align-items: end;
    }
    .blog-detail-title .blog-meta {
      margin-bottom: 18px;
    }
    .blog-detail-title h1 {
      max-width: 880px;
      font-size: clamp(42px, 6vw, 84px);
      line-height: .88;
      letter-spacing: -.085em;
      margin-bottom: 20px;
    }
    .blog-detail-title p {
      max-width: 720px;
      color: var(--muted);
      line-height: 1.75;
      font-size: 17px;
      font-weight: 650;
    }
    .blog-author-card {
      padding: 22px;
      background: rgba(255,255,255,.72);
      border: 1px solid var(--line);
      display: flex;
      align-items: center;
      gap: 14px;
    }
    .blog-author-avatar {
      width: 62px;
      height: 62px;
      background: url("https://images.unsplash.com/photo-1494790108377-be9c29b29330?auto=format&fit=crop&w=300&q=80") center/cover no-repeat;
      flex: 0 0 auto;
    }
    .blog-author-card strong {
      display: block;
      margin-bottom: 4px;
      letter-spacing: -.02em;
    }
    .blog-author-card span {
      color: var(--muted);
      font-size: 13px;
      line-height: 1.5;
      font-weight: 650;
    }
    .blog-detail-cover {
      margin-top: 28px;
      min-height: 560px;
      background:
        linear-gradient(180deg, transparent 54%, rgba(0,0,0,.28)),
        var(--blog-cover) center/cover no-repeat;
      box-shadow: var(--shadow);
    }
    .blog-article-wrap {
      padding: 18px 0 76px;
    }
    .blog-article-grid {
      display: grid;
      grid-template-columns: 260px minmax(0, 760px) 260px;
      gap: 34px;
      align-items: start;
      justify-content: center;
    }
    .article-toc,
    .article-share {
      position: sticky;
      top: 146px;
      padding: 20px;
      background: rgba(255,255,255,.66);
      border: 1px solid var(--line);
    }
    .article-toc h3,
    .article-share h3 {
      font-size: 14px;
      text-transform: uppercase;
      letter-spacing: .08em;
      margin-bottom: 14px;
    }
    .article-toc a {
      display: block;
      color: var(--muted);
      font-size: 14px;
      font-weight: 800;
      line-height: 1.45;
      margin: 12px 0;
    }
    .share-buttons {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
    }
    .share-buttons a {
      width: 42px;
      height: 42px;
      display: grid;
      place-items: center;
      background: var(--dark);
      color: #fff;
      font-size: 13px;
      font-weight: 900;
    }
    .article-content {
      background: rgba(255,255,255,.72);
      border: 1px solid var(--line);
      padding: clamp(26px, 4vw, 48px);
    }
    .article-content h2 {
      font-size: clamp(28px, 3vw, 44px);
      line-height: .98;
      letter-spacing: -.06em;
      margin: 34px 0 14px;
    }
    .article-content h2:first-child { margin-top: 0; }
    .article-content p {
      color: var(--muted);
      line-height: 1.9;
      font-size: 16px;
      font-weight: 600;
      margin: 16px 0;
    }
    .article-content blockquote {
      margin: 26px 0;
      padding: 26px;
      background: var(--dark);
      color: #fff;
      font-size: clamp(23px, 2.4vw, 34px);
      line-height: 1.1;
      letter-spacing: -.055em;
      font-weight: 900;
    }
    .article-content ul {
      display: grid;
      gap: 12px;
      margin: 18px 0;
      padding-left: 20px;
      color: var(--muted);
      line-height: 1.75;
      font-weight: 650;
    }
    .article-inline-image {
      min-height: 360px;
      margin: 26px 0;
      background-size: cover;
      background-position: center;
      background-repeat: no-repeat;
    }
    .related-blog-posts {
      padding: 0 0 78px;
    }

    .breadcrumb { padding: 26px 0 0; color: var(--muted); font-size: 13px; font-weight: 800; }
    .breadcrumb a { color: var(--muted); }
    .breadcrumb span { color: var(--dark); }
    .product-detail { padding: 28px 0 78px; }
    .product-detail-grid {
      display: grid;
      grid-template-columns: minmax(0, 1.18fr) minmax(390px, .82fr);
      gap: 34px;
      align-items: start;
    }
    .product-gallery { display: grid; gap: 16px; }
    .main-image {
      min-height: 720px;
      border-radius: 0;
      overflow: hidden;
      position: relative;
      background: #ddd center/cover no-repeat;
      box-shadow: 0 28px 80px rgba(37,26,18,.16);
      cursor: pointer;
      isolation: isolate;
    }
    .main-image::before {
      content: "";
      position: absolute;
      inset: 0;
      background: var(--main-img) center/cover no-repeat;
      transition: opacity .25s ease;
      z-index: -1;
    }
    .main-image:hover::before { opacity: .94; }
    .image-shade {
      position: absolute;
      inset: 0;
      background: linear-gradient(180deg, rgba(0,0,0,.08), transparent 38%, rgba(0,0,0,.22));
      pointer-events: none;
    }
    .gallery-badge {
      position: absolute;
      left: 24px;
      top: 24px;
      display: inline-flex;
      align-items: center;
      gap: 9px;
      padding: 10px 14px;
      background: rgba(255,255,255,.86);
      backdrop-filter: blur(16px);
      color: var(--dark);
      font-size: 12px;
      font-weight: 900;
      border: 1px solid rgba(255,255,255,.55);
      box-shadow: 0 14px 34px rgba(0,0,0,.1);
    }
    .gallery-caption {
      position: absolute;
      left: 24px;
      right: 24px;
      bottom: 24px;
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 18px;
      padding: 18px;
      background: rgba(23,20,18,.52);
      border: 1px solid rgba(255,255,255,.16);
      backdrop-filter: blur(18px);
      color: #fff;
    }
    .gallery-caption strong { display: block; font-size: 18px; letter-spacing: -.035em; margin-bottom: 4px; }
    .gallery-caption span { color: rgba(255,255,255,.68); font-size: 13px; font-weight: 700; }
    .zoom-icon { width: 44px; height: 44px; display: grid; place-items: center; background: rgba(255,255,255,.92); color: var(--dark); font-weight: 900; flex: 0 0 auto; }
    .thumbs { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
    .thumb {
      min-height: 138px;
      border: 0;
      overflow: hidden;
      background: var(--card-img) center/cover no-repeat;
      cursor: pointer;
      position: relative;
      transition: .25s ease;
      opacity: .72;
    }
    .thumb::after { content: ""; position: absolute; inset: 0; border: 3px solid transparent; transition: .2s ease; }
    .thumb:hover, .thumb.active { opacity: 1; transform: translateY(-3px); }
    .thumb.active::after { border-color: var(--dark); }
    .product-side { position: sticky; top: 142px; display: grid; gap: 16px; }
    .product-info {
      padding: clamp(28px, 4vw, 44px);
      background: linear-gradient(145deg, rgba(255,255,255,.92), rgba(255,250,243,.7));
      border: 1px solid rgba(23,20,18,.08);
      box-shadow: 0 24px 70px rgba(37,26,18,.09);
    }
    .product-topline { display: flex; justify-content: space-between; align-items: center; gap: 14px; margin-bottom: 22px; }
    .product-kicker { display: inline-flex; padding: 8px 12px; background: rgba(184,118,66,.1); color: var(--accent); font-size: 12px; font-weight: 900; letter-spacing: .06em; text-transform: uppercase; }
    .stock-badge { padding: 8px 12px; background: rgba(49,88,70,.1); color: var(--green); font-size: 12px; font-weight: 900; white-space: nowrap; }
    .product-info h1 { font-size: clamp(40px, 4.7vw, 70px); line-height: .88; letter-spacing: -.085em; margin-bottom: 18px; }
    .product-summary { color: var(--muted); font-size: 16px; line-height: 1.8; font-weight: 600; margin-bottom: 22px; }
    .detail-rating { display: inline-flex; align-items: center; gap: 10px; padding: 10px 12px; background: rgba(245,241,235,.8); color: var(--muted); font-size: 13px; font-weight: 800; margin-bottom: 24px; }
    .detail-rating b { color: #c69055; letter-spacing: 2px; }
    .buy-box { padding: 24px; background: #171412; color: #fff; margin: 6px 0 24px; }
    .detail-price-row { display: block; margin-bottom: 18px; }
    .detail-price, .detail-old-price, .detail-discount { display: none; }
    .consult-title {
      display: block;
      font-size: clamp(24px, 2.4vw, 34px);
      line-height: 1;
      letter-spacing: -.055em;
      margin-bottom: 10px;
      color: #fff;
    }
    .consult-text {
      color: rgba(255,255,255,.68);
      line-height: 1.65;
      font-size: 14px;
      font-weight: 650;
      margin-bottom: 18px;
    }
    .whatsapp-btn {
      min-height: 58px;
      width: 100%;
      background: #25D366;
      color: #062d16;
      font-weight: 900;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      box-shadow: 0 16px 34px rgba(37,211,102,.22);
      transition: .25s ease;
    }
    .whatsapp-btn:hover { transform: translateY(-2px); filter: brightness(.98); }
    .option-block { display: grid; gap: 12px; margin: 22px 0; }
    .option-title { display: flex; justify-content: space-between; gap: 12px; font-size: 13px; font-weight: 900; color: var(--dark); text-transform: uppercase; letter-spacing: .06em; }
    .option-title span { color: var(--muted); text-transform: none; letter-spacing: 0; font-weight: 800; }
    .color-options, .size-options { display: flex; flex-wrap: wrap; gap: 10px; }
    .color-dot { width: 46px; height: 46px; border-radius: 0; border: 3px solid #fff; box-shadow: 0 0 0 1px rgba(23,20,18,.16), 0 8px 20px rgba(0,0,0,.08); cursor: pointer; }
    .color-dot.active { box-shadow: 0 0 0 2px var(--dark), 0 8px 20px rgba(0,0,0,.08); }
    .size-pill { padding: 13px 16px; border: 1px solid var(--line); background: rgba(245,241,235,.75); font-size: 13px; font-weight: 900; cursor: pointer; transition: .2s ease; }
    .size-pill.active, .size-pill:hover { background: var(--dark); color: #fff; }
    .quick-specs { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin: 22px 0; }
    .quick-spec { padding: 15px; background: rgba(245,241,235,.68); border: 1px solid var(--line); }
    .quick-spec small { display: block; color: var(--muted); font-size: 11px; font-weight: 900; text-transform: uppercase; letter-spacing: .06em; margin-bottom: 6px; }
    .quick-spec strong { font-size: 14px; letter-spacing: -.02em; }
    .product-detail-bottom {
      padding: 0 0 34px;
      margin-top: -34px;
    }
    .detail-bottom-grid {
      display: grid;
      grid-template-columns: 1.15fr .85fr;
      gap: 18px;
      align-items: start;
    }
    .detail-panel {
      background: linear-gradient(145deg, rgba(255,255,255,.92), rgba(255,250,243,.72));
      border: 1px solid var(--line);
      padding: 28px;
      box-shadow: 0 18px 50px rgba(37,26,18,.07);
    }
    .product-description-html {
      color: var(--muted);
      line-height: 1.8;
      font-weight: 600;
    }
    .product-description-html h1,
    .product-description-html h2,
    .product-description-html h3 {
      color: var(--dark);
      line-height: 1.15;
      margin: 18px 0 10px;
      letter-spacing: -.04em;
    }
    .product-description-html ul,
    .product-description-html ol { padding-left: 22px; margin: 12px 0; }
    .product-description-html a { color: var(--accent); font-weight: 800; }
    .product-description-html blockquote {
      margin: 18px 0;
      padding: 16px 18px;
      border-left: 4px solid var(--accent);
      background: rgba(184,118,66,.08);
      color: var(--dark);
    }
    .detail-panel .mini-title {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 8px 12px;
      margin-bottom: 16px;
      background: rgba(184,118,66,.08);
      color: var(--accent);
      font-size: 12px;
      font-weight: 900;
      letter-spacing: .05em;
      text-transform: uppercase;
    }
    .detail-panel h3 {
      font-size: clamp(24px, 2.3vw, 34px);
      line-height: 1;
      letter-spacing: -.05em;
      margin-bottom: 14px;
    }
    .detail-panel p {
      color: var(--muted);
      line-height: 1.8;
      font-size: 15px;
      font-weight: 600;
    }
    .feature-list {
      display: grid;
      gap: 12px;
      margin-top: 8px;
    }
    .feature-item {
      display: grid;
      grid-template-columns: 42px 1fr;
      gap: 14px;
      align-items: start;
      padding: 14px 0;
      border-bottom: 1px solid var(--line);
    }
    .feature-item:last-child {
      border-bottom: 0;
      padding-bottom: 0;
    }
    .feature-icon {
      width: 42px;
      height: 42px;
      display: grid;
      place-items: center;
      background: var(--dark);
      color: #fff;
      font-size: 16px;
      font-weight: 900;
    }
    .feature-item strong {
      display: block;
      font-size: 15px;
      letter-spacing: -.02em;
      margin-bottom: 4px;
    }
    .feature-item span {
      color: var(--muted);
      font-size: 14px;
      line-height: 1.65;
      font-weight: 600;
    }
    .detail-note-card {
      margin-top: 18px;
      display: flex;
      align-items: center;
      gap: 16px;
      padding: 18px;
      background: #fff;
      border: 1px solid var(--line);
    }
    .detail-note-avatar {
      width: 58px;
      height: 58px;
      flex: 0 0 auto;
      background: url("https://images.unsplash.com/photo-1494790108377-be9c29b29330?auto=format&fit=crop&w=300&q=80") center/cover no-repeat;
    }
    .detail-note-card strong {
      display: block;
      margin-bottom: 4px;
      letter-spacing: -.02em;
    }
    .detail-note-card span {
      color: var(--muted);
      font-size: 13px;
      line-height: 1.55;
      font-weight: 600;
    }

    .similar-products { padding: 10px 0 82px; }
    .similar-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 20px; margin-bottom: 22px; }
    .similar-head h2 { font-size: clamp(30px, 3.6vw, 50px); line-height: .98; letter-spacing: -.07em; }
    .similar-head p { max-width: 440px; color: var(--muted); line-height: 1.65; font-weight: 600; }
    .similar-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
    .similar-card { display: block; background: rgba(255,255,255,.72); border: 1px solid var(--line); overflow: hidden; transition: .25s ease; color: inherit; text-decoration: none; }
    .similar-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); background: #fff; }
    .similar-img { height: 260px; position: relative; background: var(--card-img) center/cover no-repeat; }
    .similar-tag { position: absolute; top: 14px; left: 14px; padding: 8px 10px; background: #fff; color: var(--dark); font-size: 11px; font-weight: 900; box-shadow: 0 10px 22px rgba(0,0,0,.1); }
    .similar-body { padding: 18px; }
    .similar-body small { display: block; color: var(--accent); font-size: 11px; font-weight: 900; text-transform: uppercase; letter-spacing: .08em; margin-bottom: 8px; }
    .similar-body h3 { font-size: 17px; line-height: 1.25; letter-spacing: -.04em; margin-bottom: 12px; }
    .similar-bottom { display: flex; align-items: center; justify-content: space-between; gap: 12px; }
    .similar-price { display: none; }
    .similar-link { width: 40px; height: 40px; display: grid; place-items: center; background: var(--dark); color: #fff; font-weight: 900; }

    .image-modal {
      position: fixed;
      inset: 0;
      z-index: 200;
      display: none;
      align-items: center;
      justify-content: center;
      padding: 28px;
      background: rgba(12,10,9,.88);
      backdrop-filter: blur(18px);
    }
    .image-modal.active { display: flex; }
    .modal-image {
      width: min(1100px, 100%);
      height: min(82vh, 820px);
      background: var(--modal-img) center/contain no-repeat;
      box-shadow: 0 30px 90px rgba(0,0,0,.35);
    }
    .modal-close { position: absolute; right: 28px; top: 28px; width: 48px; height: 48px; border: 0; background: #fff; color: var(--dark); font-size: 26px; font-weight: 900; cursor: pointer; }

    footer { margin-top: 34px; padding: 0; color: rgba(255,255,255,.68); }
    .footer-shell {
      border-radius: 0;
      overflow: hidden;
      background:
        radial-gradient(circle at 10% 0%, rgba(184,118,66,.22), transparent 32%),
        radial-gradient(circle at 86% 18%, rgba(213,160,111,.14), transparent 30%),
        #171412;
      box-shadow: 0 -18px 70px rgba(37,26,18,.12);
    }
    .footer-cta { display: grid; grid-template-columns: 1fr auto; gap: 24px; align-items: center; padding: 34px 0; border-bottom: 1px solid rgba(255,255,255,.1); }
    .footer-cta h2 { max-width: 720px; color: #fff; font-size: clamp(30px, 4vw, 54px); line-height: .98; letter-spacing: -.07em; }
    .footer-cta p { max-width: 520px; margin-top: 12px; color: rgba(255,255,255,.62); line-height: 1.7; font-weight: 600; }
    .footer-main { display: grid; grid-template-columns: 1.35fr .8fr .8fr .8fr 1fr; gap: 34px; padding: 46px 0 38px; }
    .footer-brand p { line-height: 1.75; margin: 16px 0 22px; max-width: 360px; font-weight: 600; }
    .footer-logo { color: #fff; font-size: 34px; }
    .socials { display: flex; gap: 10px; flex-wrap: wrap; }
    .socials a { width: 44px; height: 44px; display: inline-flex; align-items: center; justify-content: center; border-radius: 999px; background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.16); color: #fff; transition: .25s ease; }
    .socials svg { width: 20px; height: 20px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
    .socials svg path:first-child,
    .socials svg rect,
    .socials svg circle { stroke: currentColor; }
    .socials a[aria-label="Pinterest"] svg,
    .socials a[aria-label="YouTube"] svg { fill: currentColor; stroke: none; }
    .socials a[aria-label="YouTube"] svg path:last-child { fill: #171412; }
    .socials a:hover { transform: translateY(-3px); background: #fff; color: var(--dark); }
    .footer-col h4, .footer-contact h4 { color: #fff; margin-bottom: 16px; font-size: 14px; text-transform: uppercase; letter-spacing: .08em; }
    .footer-col a { display: flex; align-items: center; gap: 8px; width: fit-content; margin: 11px 0; font-weight: 800; font-size: 14px; color: rgba(255,255,255,.62); transition: .2s ease; }
    .footer-col a:hover { color: #fff; transform: translateX(4px); }
    .footer-contact { padding: 20px; border-radius: 28px; background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.1); backdrop-filter: blur(16px); }
    .contact-line { display: grid; gap: 5px; padding: 13px 0; border-bottom: 1px solid rgba(255,255,255,.09); }
    .contact-line:last-child { border-bottom: 0; }
    .contact-line span { color: rgba(255,255,255,.44); font-size: 12px; font-weight: 800; text-transform: uppercase; letter-spacing: .07em; }
    .contact-line strong, .contact-line a { color: #fff; font-size: 14px; line-height: 1.45; }
    .footer-bottom { display: flex; align-items: center; justify-content: space-between; gap: 18px; flex-wrap: wrap; padding: 22px 0 0; border-top: 1px solid rgba(255,255,255,.1); font-size: 13px; font-weight: 700; }
    .footer-bottom-links { display: flex; gap: 18px; flex-wrap: wrap; }
    .footer-bottom-links a { color: rgba(255,255,255,.58); }
    .footer-bottom-links a:hover { color: #fff; }
    .footer-powered { padding: 18px 0 26px; text-align: center; font-size: 12px; font-weight: 800; letter-spacing: .02em; }
    .footer-powered a { color: rgba(255,255,255,.58); }
    .footer-powered a:hover { color: #fff; }

    @media (max-width: 1180px) {
      .products { grid-template-columns: repeat(4, 1fr); }
      .similar-grid { grid-template-columns: repeat(3, 1fr); }
      .category-showcase { grid-template-columns: repeat(2, 1fr); }
      .cat-tile.big { grid-row: span 1; }
    }
    @media (max-width: 920px) {
      .nav { grid-template-columns: auto auto; }
      .search { grid-column: 1 / -1; grid-row: 2; max-width: none; margin-bottom: 12px; }
      .mobile-menu-toggle { display: flex; }
      .menu-row {
        display: none;
        border-top: 1px solid rgba(23, 20, 18, .08);
        padding: 10px 0 14px;
        background: rgba(245, 241, 235, .96);
      }
      .topbar.menu-open .menu-row { display: block; }
      .menu {
        height: auto;
        display: grid;
        grid-template-columns: 1fr;
        gap: 8px;
        overflow: visible;
        white-space: normal;
      }
      .menu a,
      .menu-dropdown button {
        width: 100%;
        min-height: 44px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 0 14px;
        border-radius: 14px;
        background: rgba(255,255,255,.72);
        border: 1px solid rgba(23, 20, 18, .08);
        color: var(--dark);
      }
      .menu-dropdown {
        display: grid;
        height: auto;
        width: 100%;
      }
      .menu-dropdown-panel {
        position: static;
        min-width: 0;
        margin-top: 8px;
        box-shadow: none;
        border-radius: 14px;
        background: rgba(255,255,255,.72);
      }
      .menu-dropdown:hover .menu-dropdown-panel { display: none; }
      .menu-dropdown.open .menu-dropdown-panel,
      .menu-dropdown:focus-within .menu-dropdown-panel { display: grid; gap: 4px; }
      .hero-layout, .wide-banner { grid-template-columns: 1fr; }
      .slider { min-height: 480px; }
      .products { grid-template-columns: repeat(3, 1fr); }
      .similar-grid { grid-template-columns: repeat(2, 1fr); }
      .footer-cta, .footer-main { grid-template-columns: 1fr; }
      .footer-cta .btn { width: fit-content; }
      .product-detail-grid { grid-template-columns: 1fr; }
      .product-side { position: static; }
      .detail-bottom-grid { grid-template-columns: 1fr; }
      .category-hero-card { grid-template-columns: 1fr; }
      .category-products-grid { grid-template-columns: repeat(2, 1fr); }
      .blog-hero-card, .blog-card.featured, .blog-layout, .blog-detail-head, .blog-article-grid { grid-template-columns: 1fr; }
      .blog-sidebar, .article-toc, .article-share { position: static; }
      .blog-grid { grid-template-columns: repeat(2, 1fr); }
    }
    @media (max-width: 640px) {
      .container { width: min(100% - 26px, 1320px); }
      .promo-bar { font-size: 12px; }
      .logo { font-size: 26px; }
      .story { min-width: 76px; }
      .story-img { width: 66px; height: 66px; }
      .slider { min-height: 500px; border-radius: 26px; }
      .slide-content { left: 24px; right: 24px; bottom: 54px; }
      .slider-dots { left: 24px; }
      .section-head { display: block; }
      .section-head p { margin-top: 10px; }
      .category-showcase { grid-template-columns: 1fr; grid-auto-rows: 260px; }
      .products, .similar-grid { grid-template-columns: 1fr; }
      .product-img { height: 245px; }
      .contact-panel { grid-template-columns: 1fr; }
      .contact-info { min-height: 420px; }
      .form-row { grid-template-columns: 1fr; }
      .product-info { padding: 24px; }
      .main-image { min-height: 430px; }
      .thumbs { grid-template-columns: repeat(2, 1fr); }
      .thumb { min-height: 94px; }
      .quick-specs { grid-template-columns: 1fr; }
      .gallery-caption { align-items: flex-start; flex-direction: column; }
      .similar-head { display: block; }
      .similar-head p { margin-top: 10px; }
      .similar-img { height: 280px; }
      .product-detail-bottom { margin-top: -20px; }
      .detail-panel { padding: 22px; }
      .toolbar-inner { grid-template-columns: 1fr; }
      .category-products-grid { grid-template-columns: 1fr; }
      .category-product-img { height: 280px; }
      .category-hero-card { min-height: auto; }
      .category-hero-image { min-height: 240px; }
      .blog-hero-image { min-height: 240px; }
      .blog-grid { grid-template-columns: 1fr; }
      .blog-card.featured { grid-column: span 1; }
      .blog-card.featured .blog-card-img, .blog-card-img { min-height: 260px; }
      .blog-detail-cover { min-height: 320px; }
      .blog-author-card { align-items: flex-start; }
      .article-content { padding: 24px; }
      .article-inline-image { min-height: 240px; }
      .feature-item { grid-template-columns: 1fr; }
      .feature-icon { margin-bottom: 6px; }
    }
