:root {
      --header-h: 64px;
      --amber: #d4893a;
      --amber-bright: #e09a4d;
      --chocolate: #2a1608;
      --cream: #fffaf0;
      --cream-soft: #f0d9b0;
      --card: #f7ebda;
      --card-border: rgba(42, 22, 8, 0.08);
      --radius: 8px;
      --focus: #e09a4d;
      color-scheme: light;
    }

    * { box-sizing: border-box; }

    html {
      overflow: hidden;
      overscroll-behavior: none;
    }

    body {
      height: 100dvh;
      margin: 0;
      overflow: hidden;
      background: #1c1008;
      color: var(--cream);
      font-family: "Manrope", sans-serif;
      -webkit-font-smoothing: antialiased;
    }

    #root {
      height: 100dvh;
      overflow-x: clip;
      overflow-y: auto;
      overscroll-behavior: none;
      scroll-behavior: smooth;
      display: flex;
      flex-direction: column;
    }

    :focus-visible {
      outline: 2px solid var(--focus);
      outline-offset: 2px;
    }

    .hit:focus-within {
      outline: 2px solid var(--chocolate);
      outline-offset: 2px;
    }

    /* ===== Header ===== */
    .shop-header {
      position: sticky;
      top: 0;
      z-index: 40;
      min-height: var(--header-h);
      display: grid;
      grid-template-columns: auto 1fr auto;
      align-items: center;
      gap: 0.75rem;
      padding: 0.55rem 1rem;
      background: rgba(42, 22, 8, 0.82);
      backdrop-filter: blur(12px);
      border-bottom: 1px solid rgba(255, 244, 228, 0.12);
      color: #fff4e4;
    }

    .logo {
      display: inline-flex;
      align-items: center;
      gap: 0.55rem;
      margin: 0;
      color: inherit;
      text-decoration: none;
      font-family: "Fraunces", Georgia, serif;
      font-size: 1.15rem;
      font-weight: 700;
      letter-spacing: -0.02em;
      white-space: nowrap;
    }

    .logo__img {
      width: 28px;
      height: 28px;
      object-fit: cover;
      border-radius: 50%;
    }

    .logo__mark {
      width: 28px;
      height: 28px;
      border-radius: 50%;
      background:
        radial-gradient(circle at 35% 30%, #f0c987, var(--amber) 55%, #8a4e1a 100%);
      box-shadow: inset 0 0 0 1px rgba(255, 250, 240, 0.25);
      flex: 0 0 auto;
    }

    .nav-links {
      display: none;
      gap: 1.25rem;
      justify-content: center;
      list-style: none;
      margin: 0;
      padding: 0;
    }
    .nav-links li { margin: 0; }

    .nav-links a,
    .nav-links a:link,
    .nav-links a:visited,
    .drawer-nav a {
      color: inherit;
      text-decoration: none;
      font-size: 0.95rem;
      font-weight: 500;
      opacity: 0.9;
    }

    .nav-links a:hover,
    .drawer-nav a:hover { opacity: 1; }

    .header-actions {
      display: flex;
      align-items: center;
      gap: 0.45rem;
      justify-content: flex-end;
    }

    .search {
      display: none;
      align-items: center;
      gap: 0.45rem;
      min-width: 200px;
      height: 40px;
      padding: 0 0.75rem;
      border-radius: var(--radius);
      border: 1px solid rgba(255, 244, 228, 0.18);
      background: rgba(255, 244, 228, 0.08);
      color: #fff4e4;
    }

    .search input {
      border: 0;
      outline: 0;
      background: transparent;
      width: 100%;
      font: inherit;
      font-size: 0.9rem;
      color: inherit;
    }

    .search input::placeholder { color: inherit; opacity: 0.55; }

    .search svg {
      width: 16px;
      height: 16px;
      flex: 0 0 auto;
      fill: none;
      stroke: currentColor;
      stroke-width: 2;
      stroke-linecap: round;
      stroke-linejoin: round;
    }

    .icon-btn,
    .cart-btn,
    .menu-btn {
      height: 40px;
      min-width: 40px;
      border-radius: var(--radius);
      border: 1px solid rgba(255, 244, 228, 0.18);
      background: rgba(255, 244, 228, 0.08);
      color: #fff4e4;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 0.4rem;
      padding: 0 0.65rem;
      cursor: pointer;
      font: inherit;
      font-size: 0.9rem;
      font-weight: 600;
      text-decoration: none;
    }

    .icon-btn svg,
    .cart-btn svg,
    .menu-btn svg {
      width: 18px;
      height: 18px;
      fill: none;
      stroke: currentColor;
      stroke-width: 2;
      stroke-linecap: round;
      stroke-linejoin: round;
    }

    .cart-btn:link,
    .cart-btn:visited,
    .cart-btn:hover,
    .cart-btn:active { color: inherit; }

    .cart-label { display: none; }

    .cart-count {
      min-width: 1.25rem;
      height: 1.25rem;
      border-radius: 999px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      font-size: 0.72rem;
      font-weight: 700;
      padding: 0 0.3rem;
      background: var(--amber);
      color: var(--chocolate);
    }

    .menu-btn { display: inline-flex; }

    /* ===== Mobile drawers ===== */
    .backdrop {
      position: fixed;
      inset: 0;
      z-index: 50;
      background: rgba(20, 10, 4, 0.55);
      opacity: 0;
      pointer-events: none;
      transition: opacity 0.2s ease;
    }

    .backdrop.is-open {
      opacity: 1;
      pointer-events: auto;
    }

    .drawer {
      position: fixed;
      z-index: 60;
      background: #2a1608;
      color: #fff4e4;
      transform: translateY(-110%);
      transition: transform 0.25s ease;
      box-shadow: 0 16px 40px rgba(0, 0, 0, 0.35);
    }

    .drawer.is-open { transform: translateY(0); }

    .drawer-menu {
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      padding: 1rem 1rem 1.5rem;
      border-radius: 0;
      overflow-y: auto;
    }

    .drawer-search {
      top: 0;
      left: 0;
      right: 0;
      padding: 1rem;
      border-bottom-left-radius: 16px;
      border-bottom-right-radius: 16px;
    }

    .drawer-head {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 1rem;
      margin-bottom: 1rem;
    }

    .drawer-head h2 {
      margin: 0;
      font-family: "Fraunces", Georgia, serif;
      font-size: 1.25rem;
    }

    .drawer-close {
      width: 40px;
      height: 40px;
      border: 1px solid rgba(255, 244, 228, 0.18);
      border-radius: var(--radius);
      background: rgba(255, 244, 228, 0.08);
      color: inherit;
      cursor: pointer;
      font-size: 1.25rem;
      line-height: 1;
    }

    .drawer-nav {
      display: grid;
      gap: 0.35rem;
      list-style: none;
      margin: 0;
      padding: 0;
    }
    .drawer-nav li { margin: 0; }

    .drawer-nav a {
      display: block;
      padding: 0.85rem 0.75rem;
      border-radius: var(--radius);
      background: rgba(255, 244, 228, 0.06);
      font-size: 1.05rem;
    }

    .drawer-search .search {
      display: flex;
      width: 100%;
      min-width: 0;
      height: 48px;
    }

    /* ===== Hero ===== */
    .hero {
      position: relative;
      flex: 1 1 auto;
      min-height: min(100dvh - var(--header-h), 920px);
      overflow: hidden;
      display: grid;
      align-items: stretch;
      padding: 1rem 1rem 1.25rem;
    }

    .hero__media {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: 72% 38%;
      transform: scale(1.04);
    }

    .hero__scrim {
      position: absolute;
      inset: 0;
      pointer-events: none;
      background:
        linear-gradient(105deg, rgba(36, 18, 8, 0.82) 0%, rgba(36, 18, 8, 0.42) 42%, rgba(36, 18, 8, 0.12) 68%, rgba(36, 18, 8, 0.28) 100%),
        linear-gradient(to top, rgba(20, 10, 4, 0.78) 0%, rgba(20, 10, 4, 0.35) 38%, transparent 62%);
    }

    .hero__layout {
      position: relative;
      z-index: 2;
      width: 100%;
      min-width: 0;
      display: grid;
      grid-template-columns: 1fr;
      gap: 1rem;
      align-content: end;
      height: 100%;
    }

    .hero__copy {
      max-width: 40rem;
      min-width: 0;
      animation: copyIn 0.65s ease both;
    }

    @keyframes copyIn {
      from { opacity: 0; transform: translateY(14px); }
      to { opacity: 1; transform: translateY(0); }
    }

    .offer-line {
      margin: 0 0 0.55rem;
      display: inline-flex;
      align-items: center;
      min-height: 1.7rem;
      padding: 0.2rem 0.55rem;
      border-radius: 6px;
      background: rgba(42, 22, 8, 0.4);
      color: var(--amber-bright);
      font-size: 0.82rem;
      font-weight: 700;
      letter-spacing: 0.04em;
      text-transform: uppercase;
    }

    .brand {
      margin: 0 0 0.45rem;
      font-family: "Fraunces", Georgia, serif;
      font-size: clamp(2.5rem, 9vw, 4.2rem);
      font-weight: 700;
      line-height: 0.95;
      letter-spacing: -0.02em;
      color: var(--cream);
    }

    .headline {
      margin: 0 0 0.65rem;
      font-family: "Manrope", sans-serif;
      font-size: clamp(1.1rem, 3.4vw, 1.55rem);
      font-weight: 500;
      line-height: 1.25;
      max-width: 22ch;
      color: var(--cream-soft);
    }

    .lead {
      margin: 0 0 0.85rem;
      max-width: 38ch;
      line-height: 1.4;
      font-size: 0.98rem;
      color: rgba(255, 242, 220, 0.9);
    }

    .trust {
      display: flex;
      flex-wrap: wrap;
      gap: 0.4rem 0.85rem;
      margin: 0 0 1rem;
      padding: 0;
      list-style: none;
      color: rgba(255, 242, 220, 0.88);
      font-size: 0.86rem;
      font-weight: 600;
    }

    .trust li {
      position: relative;
      padding-left: 0.9rem;
    }

    .trust li::before {
      content: "";
      position: absolute;
      left: 0;
      top: 0.45em;
      width: 0.4rem;
      height: 0.4rem;
      border-radius: 50%;
      background: var(--amber);
    }

    .cta-row {
      display: flex;
      flex-wrap: wrap;
      gap: 0.65rem;
      align-items: center;
    }

    .btn {
      appearance: none;
      border: 0;
      cursor: pointer;
      text-decoration: none;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-height: 48px;
      padding: 0.8rem 1.25rem;
      font: inherit;
      font-weight: 700;
      border-radius: var(--radius);
      transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
    }

    .btn:hover { transform: translateY(-1px); }

    .btn-primary {
      background: var(--amber);
      color: var(--chocolate);
    }

    .btn-ghost {
      background: rgba(42, 22, 8, 0.35);
      color: var(--cream);
      border: 1px solid rgba(255, 241, 220, 0.45);
    }

    /* ===== Hits ===== */
    .hits {
      display: flex;
      gap: 0.65rem;
      width: 100%;
      min-width: 0;
      overflow-x: auto;
      overscroll-behavior-x: contain;
      scroll-snap-type: x mandatory;
      padding-bottom: 0.15rem;
      animation: copyIn 0.7s ease both;
    }

    .hits::-webkit-scrollbar { height: 4px; }
    .hits::-webkit-scrollbar-thumb {
      background: rgba(255, 244, 228, 0.28);
      border-radius: 999px;
    }

    .hit {
      position: relative;
      flex: 0 0 min(78vw, 260px);
      scroll-snap-align: start;
      display: grid;
      grid-template-rows: auto auto auto auto;
      gap: 0.45rem;
      padding: 0.7rem;
      min-width: 0;
      max-width: 100%;
      background: rgba(247, 235, 218, 0.9);
      color: var(--chocolate);
      border: 1px solid var(--card-border);
      border-radius: var(--radius);
      transition: transform 0.2s ease, background 0.2s ease;
    }

    .hit:hover { transform: translateY(-2px); }

    .hit__badge {
      position: absolute;
      top: 0.9rem;
      left: 0.9rem;
      z-index: 2;
      margin: 0;
      padding: 0.2rem 0.45rem;
      border-radius: 6px;
      background: var(--amber);
      color: var(--chocolate);
      font-size: 0.68rem;
      font-weight: 800;
      letter-spacing: 0.03em;
      text-transform: uppercase;
    }

    .hit__link {
      display: grid;
      gap: 0.45rem;
      color: inherit;
      text-decoration: none;
      min-width: 0;
    }

    .hit__link:focus-visible {
      outline: 2px solid var(--chocolate);
      outline-offset: 2px;
      border-radius: 6px;
    }

    .hit__img-wrap {
      width: 100%;
      aspect-ratio: 1;
      overflow: hidden;
      border-radius: 6px;
      background: #f3e6d4;
      min-width: 0;
    }

    .hit__img-wrap img {
      width: 100%;
      height: 100%;
      max-width: 100%;
      object-fit: cover;
      display: block;
    }

    .hit__name {
      margin: 0;
      font-size: 0.95rem;
      font-weight: 700;
      line-height: 1.25;
      display: -webkit-box;
      -webkit-line-clamp: 2;
      -webkit-box-orient: vertical;
      overflow: hidden;
    }

    .hit__meta {
      display: grid;
      gap: 0.35rem;
      min-width: 0;
    }

    .hit__price-row {
      display: flex;
      align-items: baseline;
      justify-content: space-between;
      gap: 0.5rem;
    }

    .hit__price {
      margin: 0;
      font-size: 1.05rem;
      font-weight: 800;
      white-space: nowrap;
    }

    .hit__note {
      margin: 0;
      font-size: 0.78rem;
      font-weight: 600;
      color: rgba(42, 22, 8, 0.72);
    }

    .hit__buy {
      appearance: none;
      border: 0;
      cursor: pointer;
      width: 100%;
      min-height: 44px;
      padding: 0 0.75rem;
      border-radius: var(--radius);
      background: var(--amber);
      color: var(--chocolate);
      font: inherit;
      font-size: 0.84rem;
      font-weight: 800;
      white-space: nowrap;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      text-decoration: none;
    }

    .hit__buy:hover { background: var(--amber-bright); }

    /* ===== Toast ===== */
    .toast {
      position: fixed;
      left: 50%;
      bottom: 1.25rem;
      z-index: 70;
      transform: translate(-50%, 120%);
      display: flex;
      align-items: center;
      gap: 0.85rem;
      min-width: min(920px, calc(100vw - 1.5rem));
      max-width: calc(100vw - 1.5rem);
      padding: 0.85rem 1rem;
      border-radius: var(--radius);
      background: #fff4e4;
      color: var(--chocolate);
      box-shadow: 0 12px 32px rgba(0, 0, 0, 0.28);
      transition: transform 0.25s ease;
    }

    .toast.is-open { transform: translate(-50%, 0); }

    .toast p {
      margin: 0;
      flex: 1 1 auto;
      font-size: 0.95rem;
      font-weight: 600;
    }

    .toast a {
      color: var(--chocolate);
      font-weight: 800;
      text-decoration: none;
      white-space: nowrap;
      padding: 0.55rem 0.8rem;
      border-radius: 6px;
      background: var(--amber);
    }

    /* ===== Breakpoints ===== */
    @media (min-width: 760px) {
      .menu-btn,
      .icon-btn { display: none; }
      .nav-links { display: flex; }
      .search { display: inline-flex; }
      .cart-label { display: inline; }
      .shop-header { padding: 0.55rem 1.5rem; }
      .hero { padding: 1.25rem 1.5rem 1.5rem; }
      .hits {
        display: grid;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        overflow: visible;
        scroll-snap-type: none;
        gap: 0.85rem;
      }
      .hit {
        flex: none;
        width: auto;
      }
      .hit__img-wrap {
        aspect-ratio: 4 / 3;
        max-height: 160px;
      }
    }

    @media (min-width: 1100px) {
      .shop-header { padding: 0.55rem clamp(1.75rem, 3vw, 3rem); }
      .hero { padding: 1.5rem clamp(1.75rem, 3vw, 3rem) 1.75rem; }
      .brand { font-size: clamp(3.2rem, 4.5vw, 5rem); }
      .headline { font-size: clamp(1.25rem, 2vw, 1.7rem); }
      .hit__img-wrap { max-height: 200px; }
    }

    @media (min-width: 1280px) {
      .hero {
        align-items: center;
        min-height: calc(100dvh - var(--header-h));
        padding-top: clamp(1.25rem, 3vh, 2.5rem);
        padding-bottom: clamp(1.25rem, 3vh, 2.5rem);
      }
      .hero__layout {
        grid-template-columns: minmax(360px, 0.92fr) minmax(540px, 1.08fr);
        align-items: stretch;
        align-content: center;
        gap: 2rem;
        height: auto;
        min-height: min(78dvh, 820px);
        max-height: calc(100dvh - var(--header-h) - 2.5rem);
      }
      .hero__copy {
        display: flex;
        flex-direction: column;
        justify-content: center;
        max-width: 44rem;
        gap: 0;
      }
      .brand { margin-bottom: 0.65rem; }
      .headline { margin-bottom: 0.85rem; }
      .lead { margin-bottom: 1rem; }
      .trust { margin-bottom: 1.25rem; }
      .hits {
        align-self: stretch;
        height: 100%;
        align-content: stretch;
      }
      .hit {
        display: flex;
        flex-direction: column;
        height: 100%;
        background: rgba(247, 235, 218, 0.88);
      }
      .hit__link {
        flex: 1 1 auto;
        display: flex;
        flex-direction: column;
        min-height: 0;
      }
      .hit__img-wrap {
        flex: 1 1 auto;
        aspect-ratio: auto;
        min-height: clamp(200px, 26vh, 280px);
        height: auto;
        max-height: none;
      }
    }

    @media (min-width: 1440px) {
      .shop-header {
        padding: 0.65rem clamp(2.5rem, 4vw, 4.5rem);
        min-height: 72px;
      }
      .logo { font-size: 1.3rem; }
      .logo__mark { width: 32px; height: 32px; }
      .nav-links { gap: 1.75rem; }
      .search { min-width: 240px; height: 42px; }
      .hero {
        padding-left: clamp(2.5rem, 4vw, 4.5rem);
        padding-right: clamp(2.5rem, 4vw, 4.5rem);
      }
      .hero__layout {
        grid-template-columns: minmax(440px, 0.9fr) minmax(620px, 1.1fr);
        gap: clamp(2rem, 3vw, 3rem);
        min-height: min(82dvh, 880px);
      }
      .brand { font-size: clamp(4.2rem, 5vw, 5.8rem); }
      .headline {
        max-width: 24ch;
        font-size: clamp(1.35rem, 2.1vw, 1.85rem);
      }
      .lead { font-size: 1.12rem; max-width: 40ch; }
      .trust { font-size: 0.95rem; gap: 0.5rem 1.1rem; }
      .btn { min-height: 52px; font-size: 1.05rem; padding: 0.9rem 1.45rem; }
      .hit { padding: 1.05rem; gap: 0.55rem; }
      .hit__img-wrap { min-height: clamp(240px, 30vh, 340px); }
      .hit__name { font-size: 1.1rem; }
      .hit__price { font-size: 1.18rem; }
      .hit__note { font-size: 0.84rem; }
      .hit__buy { min-height: 46px; font-size: 0.9rem; }
    }

    @media (min-width: 1800px) {
      .shop-header { padding-left: 4.5rem; padding-right: 4.5rem; }
      .hero {
        padding-left: 4.5rem;
        padding-right: 4.5rem;
        padding-top: clamp(1.5rem, 4vh, 3rem);
        padding-bottom: clamp(1.5rem, 4vh, 3rem);
      }
      .hero__layout {
        grid-template-columns: minmax(520px, 0.88fr) minmax(760px, 1.12fr);
        gap: 3.25rem;
        min-height: min(84dvh, 940px);
        width: min(1680px, 100%);
        margin-inline: auto;
      }
      .brand { font-size: 6rem; }
      .headline { font-size: 2rem; }
      .hits { max-width: none; margin-left: 0; }
      .hit__img-wrap { min-height: clamp(280px, 34vh, 400px); }
    }

    @media (prefers-reduced-motion: reduce) {
      *,
      *::before,
      *::after {
        animation: none !important;
        transition: none !important;
        scroll-behavior: auto !important;
      }
      .hit:hover,
      .btn:hover { transform: none; }
    }


/* ===== Inner pages ===== */
body.mishka-inner {
  background: #f3e6d4;
  color: #2a1608;
}
body.mishka-inner #root {
  background: #f3e6d4;
  min-height: 100dvh;
}
body.mishka-inner .shop-header {
  position: sticky;
}

.page-shell {
  width: min(1240px, calc(100% - 2.5rem));
  margin: 1.75rem auto 3rem;
  flex: 1 0 auto;
}
.page-shell h1,
.page-shell .page-title,
.woocommerce-products-header__title {
  font-family: "Fraunces", Georgia, serif;
  font-size: clamp(2rem, 4vw, 2.8rem);
  margin: 0 0 1rem;
  color: #2a1608;
}
.page-shell .content {
  font-size: 1.05rem;
  line-height: 1.6;
}
.page-shell a {
  color: #8a4e1a;
}
.home-catalog {
  width: min(1240px, calc(100% - 2.5rem));
  margin: 0 auto 3rem;
  color: #2a1608;
  padding: 0.5rem 0 1rem;
}
.home-catalog__head {
  display: flex;
  flex-wrap: wrap;
  align-items: end;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.25rem;
}
.home-catalog__head h2 {
  font-family: "Fraunces", Georgia, serif;
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  margin: 0;
}
.home-catalog__head p {
  margin: 0.35rem 0 0;
  opacity: 0.8;
}

.site-footer {
  margin-top: auto;
  padding: 1.25rem 1rem 2rem;
  background: #2a1608;
  color: #fff4e4;
  text-align: center;
  font-size: .95rem;
}
.site-footer a { color: #e09a4d; }

/* ===== WooCommerce shop grid ===== */
.woocommerce-products-header {
  margin-bottom: 0.75rem;
}
.woocommerce-result-count,
.woocommerce-ordering {
  color: #2a1608;
  font-size: 0.95rem;
}
.woocommerce-ordering select {
  border: 1px solid rgba(42,22,8,.18);
  border-radius: 8px;
  background: #fffaf0;
  padding: 0.55rem 0.75rem;
  color: #2a1608;
}
.woocommerce .woocommerce-result-count {
  float: none;
  margin: 0 0 1rem;
}
.woocommerce .woocommerce-ordering {
  float: none;
  margin: 0 0 1.25rem;
}
@media (min-width: 760px) {
  .woocommerce-loop-header,
  .shop-toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 1.25rem;
  }
  .woocommerce .woocommerce-result-count,
  .woocommerce .woocommerce-ordering {
    margin: 0;
  }
}

.woocommerce ul.products,
.woocommerce-page ul.products {
  list-style: none !important;
  margin: 0 !important;
  padding: 0 !important;
  display: grid !important;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
  clear: both;
}
@media (min-width: 760px) {
  .woocommerce ul.products,
  .woocommerce-page ul.products {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.15rem;
  }
}
@media (min-width: 1020px) {
  .woocommerce ul.products,
  .woocommerce-page ul.products {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}
.woocommerce ul.products::before,
.woocommerce ul.products::after,
.woocommerce-page ul.products::before,
.woocommerce-page ul.products::after {
  display: none !important;
  content: none !important;
}
.woocommerce ul.products li.product,
.woocommerce-page ul.products li.product {
  list-style: none !important;
  width: auto !important;
  float: none !important;
  margin: 0 !important;
  padding: 0.9rem !important;
  background: #fffaf0;
  border: 1px solid rgba(42,22,8,.08);
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  position: relative;
}
.woocommerce ul.products li.product a {
  color: #2a1608;
  text-decoration: none;
}
.woocommerce ul.products li.product a:hover {
  color: #8a4e1a;
}
.woocommerce ul.products li.product img,
.woocommerce ul.products li.product .attachment-woocommerce_thumbnail {
  width: 100% !important;
  height: auto !important;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 8px;
  margin: 0 0 0.15rem !important;
  background: #f3e6d4;
}
.woocommerce ul.products li.product .woocommerce-loop-product__title {
  font-family: "Manrope", sans-serif;
  font-size: 1.05rem !important;
  font-weight: 700;
  padding: 0 !important;
  margin: 0 !important;
  color: #2a1608;
}
.woocommerce ul.products li.product .price {
  color: #2a1608 !important;
  font-size: 1.1rem;
  font-weight: 800;
  margin: 0 !important;
}
.woocommerce ul.products li.product .price del {
  opacity: 0.55;
  font-weight: 600;
}
.woocommerce ul.products li.product .button,
.woocommerce ul.products li.product .add_to_cart_button,
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button,
.woocommerce #respond input#submit {
  appearance: none;
  border: 0;
  background: #d4893a !important;
  color: #2a1608 !important;
  border-radius: 8px !important;
  min-height: 44px;
  padding: 0.7rem 1rem !important;
  font-weight: 800 !important;
  font-size: 0.9rem !important;
  text-align: center;
  text-decoration: none !important;
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  margin-top: auto !important;
  width: 100%;
}
.woocommerce ul.products li.product .button:hover,
.woocommerce a.button:hover,
.woocommerce button.button:hover {
  background: #e09a4d !important;
  color: #2a1608 !important;
}
.woocommerce span.onsale {
  background: #d4893a;
  color: #2a1608;
  border-radius: 6px;
  min-height: 0;
  line-height: 1.2;
  padding: 0.3rem 0.5rem;
  font-weight: 800;
}

/* ===== Single product ===== */
.woocommerce div.product {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  color: #2a1608;
}
@media (min-width: 900px) {
  .woocommerce div.product {
    grid-template-columns: minmax(280px, 1fr) minmax(280px, 1fr);
    gap: 2.5rem;
    align-items: start;
  }
}
.woocommerce div.product .woocommerce-product-gallery,
.woocommerce div.product div.images {
  opacity: 1 !important;
  width: 100% !important;
  float: none !important;
  margin: 0 !important;
}
.woocommerce div.product div.images img {
  width: 100%;
  border-radius: 12px;
  background: #f3e6d4;
}
.woocommerce div.product div.summary {
  width: 100% !important;
  float: none !important;
  margin: 0 !important;
}
.woocommerce div.product .product_title {
  font-family: "Fraunces", Georgia, serif;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  margin: 0 0 0.75rem;
}
.woocommerce div.product p.price {
  color: #2a1608;
  font-size: 1.5rem;
  font-weight: 800;
  margin: 0 0 1rem;
}
.woocommerce div.product .cart {
  margin: 1.25rem 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
}
.woocommerce div.product form.cart .button {
  width: auto;
  min-width: 200px;
}
.woocommerce div.product .quantity .qty {
  border: 1px solid rgba(42,22,8,.18);
  border-radius: 8px;
  min-height: 44px;
  padding: 0.4rem 0.6rem;
  width: 5rem;
  background: #fffaf0;
}
.woocommerce-tabs {
  grid-column: 1 / -1;
  margin-top: 1rem;
}
.woocommerce-tabs ul.tabs {
  list-style: none;
  margin: 0 0 1rem;
  padding: 0;
  display: flex;
  gap: 0.5rem;
  border: 0;
}
.woocommerce-tabs ul.tabs li {
  border: 1px solid rgba(42,22,8,.12) !important;
  background: #fffaf0 !important;
  border-radius: 8px;
  margin: 0 !important;
  padding: 0 !important;
}
.woocommerce-tabs ul.tabs li a {
  color: #2a1608 !important;
  font-weight: 700;
  padding: 0.65rem 0.9rem !important;
  display: block;
}
.woocommerce-tabs ul.tabs li.active {
  background: #d4893a !important;
  border-color: #d4893a !important;
}
.woocommerce-Tabs-panel {
  background: #fffaf0;
  border: 1px solid rgba(42,22,8,.08);
  border-radius: 12px;
  padding: 1rem 1.15rem;
}

/* Cart / checkout */
.woocommerce-cart .page-shell,
.woocommerce-checkout .page-shell,
.woocommerce-account .page-shell,
.woocommerce-page .page-shell {
  background: transparent;
  padding: 0;
}
.woocommerce-cart .page-shell,
.woocommerce-checkout .page-shell {
  width: min(1120px, calc(100% - 2.5rem));
}
.woocommerce table.shop_table {
  width: 100%;
  border: 1px solid rgba(42,22,8,.1);
  border-radius: 12px;
  background: #fffaf0;
  border-collapse: collapse;
  color: #2a1608;
}
.woocommerce table.shop_table th,
.woocommerce table.shop_table td {
  border-bottom: 1px solid rgba(42,22,8,.08);
  color: #2a1608;
  padding: 0.85rem 0.7rem;
  vertical-align: middle;
  text-align: left;
}
.woocommerce table.cart .product-remove { width: 2.4rem; }
.woocommerce table.cart .product-thumbnail { width: 5.5rem; }
.woocommerce table.cart .product-thumbnail img {
  width: 72px;
  height: 72px;
  object-fit: cover;
  border-radius: 8px;
  display: block;
}
.woocommerce table.cart .product-name a {
  color: #2a1608;
  text-decoration: none;
  font-weight: 700;
}
.woocommerce table.cart .product-price,
.woocommerce table.cart .product-quantity,
.woocommerce table.cart .product-subtotal {
  white-space: nowrap;
  width: 1%;
}
.woocommerce a.remove {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.6rem;
  height: 1.6rem;
  border-radius: 50%;
  color: #8a4e1a !important;
  text-decoration: none;
  font-size: 1.2rem;
  line-height: 1;
}
.woocommerce .quantity {
  display: inline-block;
  width: auto;
}
.woocommerce .quantity .qty {
  width: 4.25rem !important;
  max-width: 4.25rem !important;
  min-height: 44px;
  text-align: center;
  border: 1px solid rgba(42,22,8,.18);
  border-radius: 8px;
  background: #fffaf0;
  font: inherit;
}
.woocommerce table.cart td.actions {
  text-align: right;
}
.woocommerce table.cart td.actions .button {
  width: auto !important;
  min-width: 180px;
  display: inline-flex !important;
}
.woocommerce-cart .woocommerce {
  display: grid;
  gap: 1.25rem;
}
@media (min-width: 900px) {
  .woocommerce-cart .woocommerce {
    grid-template-columns: minmax(0, 1.45fr) minmax(280px, 0.7fr);
    align-items: start;
  }
  .woocommerce-cart .woocommerce-notices-wrapper,
  .woocommerce-cart .woocommerce-form-coupon-toggle {
    grid-column: 1 / -1;
  }
}
.woocommerce-cart-form { margin: 0; }
.cart-collaterals .shop_table th,
.cart-collaterals .shop_table td {
  padding: 0.65rem 0;
}
.cart_totals h2 {
  font-family: "Fraunces", Georgia, serif;
  font-size: 1.45rem;
  margin: 0 0 0.75rem;
}
.woocommerce ul#shipping_method {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.45rem;
}
.woocommerce ul#shipping_method li {
  list-style: none;
  margin: 0;
  padding: 0;
}
.woocommerce-message,
.woocommerce-info,
.woocommerce-error {
  border-top-color: #d4893a;
  background: #fffaf0;
  color: #2a1608;
}
.woocommerce-message::before,
.woocommerce-info::before {
  color: #d4893a;
}

.related.products > h2,
.upsells.products > h2 {
  font-family: "Fraunces", Georgia, serif;
  font-size: 1.6rem;
  margin: 2rem 0 1rem;
  color: #2a1608;
}
.related.products ul.products,
.upsells.products ul.products {
  grid-template-columns: repeat(auto-fit, minmax(200px, 240px)) !important;
  justify-content: start;
}

.home-after {
  background: #f3e6d4;
  color: #2a1608;
  padding: 2.5rem 0 1px;
}
.home-block {
  width: min(1240px, calc(100% - 2.5rem));
  margin: 0 auto 2.75rem;
}
.home-block h2,
.page-prose h2 {
  font-family: "Fraunces", Georgia, serif;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  margin: 0 0 1rem;
  color: #2a1608;
}
.home-block h3,
.page-prose h3 {
  font-family: "Fraunces", Georgia, serif;
  margin: 0 0 0.45rem;
  font-size: 1.2rem;
}
.info-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.9rem;
}
@media (min-width: 760px) {
  .info-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}
.info-card {
  background: #fffaf0;
  border: 1px solid rgba(42, 22, 8, 0.08);
  border-radius: 12px;
  padding: 1.1rem 1.15rem;
}
.info-card p { margin: 0; line-height: 1.5; }
.size-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
}
@media (min-width: 760px) {
  .size-row { grid-template-columns: repeat(4, minmax(0, 1fr)); }
}
.size-chip {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  padding: 1rem;
  background: #fffaf0;
  border: 1px solid rgba(42, 22, 8, 0.08);
  border-radius: 12px;
  color: #2a1608;
  text-decoration: none;
}
.size-chip:hover { border-color: #d4893a; }
.size-chip span { opacity: 0.7; font-size: 0.9rem; }
.check-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.55rem;
}
.check-list li {
  position: relative;
  padding-left: 1.2rem;
  line-height: 1.45;
}
.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.5em;
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 50%;
  background: #d4893a;
}
.faq details {
  background: #fffaf0;
  border: 1px solid rgba(42, 22, 8, 0.08);
  border-radius: 12px;
  padding: 0.85rem 1rem;
  margin-bottom: 0.55rem;
}
.faq summary {
  font-weight: 700;
  cursor: pointer;
}
.faq p { margin: 0.6rem 0 0; }
.home-cta {
  text-align: center;
  padding-bottom: 1rem;
}
.home-cta p { margin: 0 0 1rem; }

.catalog-intro {
  margin: 0 0 1rem;
  max-width: 62ch;
  line-height: 1.5;
  color: #2a1608;
}
.cat-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin: 0 0 1.15rem;
}
.cat-chip {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0.35rem 0.8rem;
  border-radius: 999px;
  border: 1px solid rgba(42, 22, 8, 0.14);
  background: #fffaf0;
  color: #2a1608 !important;
  text-decoration: none !important;
  font-weight: 700;
  font-size: 0.9rem;
}
.cat-chip.is-current,
.cat-chip:hover {
  background: #d4893a;
  border-color: #d4893a;
}

.card-badge {
  position: absolute;
  top: 1.05rem;
  left: 1.05rem;
  z-index: 2;
}
.card-note {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  color: rgba(42, 22, 8, 0.68);
  margin-top: 0.15rem;
}

.product-short {
  margin: 0 0 1rem;
  font-size: 1.05rem;
  line-height: 1.45;
  max-width: 42ch;
}
.spec-table {
  width: 100%;
  border-collapse: collapse;
  margin: 0 0 1rem;
  background: #fffaf0;
  border: 1px solid rgba(42, 22, 8, 0.08);
  border-radius: 12px;
  overflow: hidden;
}
.spec-table th,
.spec-table td {
  text-align: left;
  padding: 0.55rem 0.8rem;
  border-bottom: 1px solid rgba(42, 22, 8, 0.06);
  font-size: 0.95rem;
}
.spec-table th {
  width: 34%;
  font-weight: 700;
  color: rgba(42, 22, 8, 0.72);
}
.product-trust {
  list-style: none;
  margin: 0 0 0.5rem;
  padding: 0;
  display: grid;
  gap: 0.4rem;
  font-size: 0.92rem;
  font-weight: 600;
}
.product-trust li {
  position: relative;
  padding-left: 1.1rem;
}
.product-trust li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.45em;
  width: 0.4rem;
  height: 0.4rem;
  border-radius: 50%;
  background: #d4893a;
}
.product-story {
  grid-column: 1 / -1;
  background: #fffaf0;
  border: 1px solid rgba(42, 22, 8, 0.08);
  border-radius: 12px;
  padding: 1.25rem 1.35rem;
  margin-top: 0.5rem;
}
.product-story h2 {
  font-family: "Fraunces", Georgia, serif;
  font-size: 1.35rem;
  margin: 0 0 0.6rem;
}
.product-story h2:not(:first-child) { margin-top: 1.25rem; }
.product-story p { margin: 0 0 0.75rem; line-height: 1.55; }
.product-story p:last-of-type { margin-bottom: 0; }

.woocommerce-product-gallery__trigger {
  display: none !important;
}
.mishka-bc {
  margin: 0 0 1rem;
  font-size: 0.9rem;
  color: rgba(42, 22, 8, 0.7);
}
.mishka-bc a { color: #8a4e1a; text-decoration: none; }

.page-prose {
  max-width: 72ch;
}
.page-prose p,
.lead-p {
  margin: 0 0 1rem;
  line-height: 1.6;
}
.page-prose .info-grid,
.page-prose .btn {
  margin-top: 0.5rem;
}
.btn-ghost-dark {
  background: transparent;
  color: #2a1608;
  border: 1px solid rgba(42, 22, 8, 0.22);
}
.empty-state {
  background: #fffaf0;
  border: 1px solid rgba(42, 22, 8, 0.08);
  border-radius: 16px;
  padding: 2rem 1.5rem;
  text-align: center;
}
.empty-state .btn { margin: 0.25rem; }

.footer-grid {
  width: min(1240px, calc(100% - 2.5rem));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  text-align: left;
}
@media (min-width: 760px) {
  .footer-grid { grid-template-columns: 1.4fr 1fr 1fr 1fr; }
}
.footer-brand {
  font-family: "Fraunces", Georgia, serif;
  font-size: 1.35rem;
  font-weight: 700;
  margin: 0 0 0.4rem;
}
.footer-title {
  font-weight: 800;
  margin: 0 0 0.45rem;
}
.footer-grid a,
.footer-grid p {
  display: block;
  margin: 0 0 0.35rem;
  color: #fff4e4;
  text-decoration: none;
  opacity: 0.9;
}
.footer-grid a:hover { color: #e09a4d; opacity: 1; }

body.drawer-open #root { overflow: hidden; }

.woocommerce-ordering select {
  font-family: "Manrope", sans-serif;
  font-size: 0.95rem;
  min-height: 42px;
}
.woocommerce div.product .quantity .qty {
  text-align: center;
  font-family: inherit;
}
.woocommerce .product_meta {
  display: grid;
  gap: 0.35rem;
  margin-top: 1rem;
  font-size: 0.92rem;
  color: rgba(42, 22, 8, 0.7);
}
.woocommerce-products-header .page-description,
.term-description {
  margin: 0 0 1rem;
  max-width: 62ch;
  line-height: 1.5;
}
.footer-menu {
  list-style: none;
  margin: 0;
  padding: 0;
}
.footer-menu li { margin: 0; }

.woocommerce-cart .cart-collaterals,
.woocommerce-checkout .woocommerce,
.woocommerce-cart .woocommerce {
  color: #2a1608;
}
.woocommerce table.shop_table {
  width: 100%;
}
.woocommerce-form-coupon-toggle,
.wc-block-components-totals-coupon {
  display: none !important;
}
.woocommerce-cart-form,
.cart-collaterals,
.woocommerce-checkout .col2-set,
.woocommerce-checkout-review-order {
  background: #fffaf0;
  border: 1px solid rgba(42, 22, 8, 0.08);
  border-radius: 12px;
  padding: 1rem;
  margin-bottom: 1.25rem;
}
.woocommerce-cart .wc-proceed-to-checkout a.checkout-button,
.woocommerce #payment #place_order,
.woocommerce-page .woocommerce-button,
.wp-block-woocommerce-proceed-to-checkout-block a {
  background: #d4893a !important;
  color: #2a1608 !important;
  border-radius: 8px !important;
  font-weight: 800 !important;
  text-decoration: none !important;
  min-height: 48px;
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  width: 100%;
}
.woocommerce form .form-row input.input-text,
.woocommerce form .form-row textarea,
.woocommerce form .form-row select {
  border: 1px solid rgba(42, 22, 8, 0.18);
  border-radius: 8px;
  background: #fffaf0;
  min-height: 44px;
  padding: 0.5rem 0.7rem;
  font: inherit;
  color: #2a1608;
}
.woocommerce-message a.button {
  width: auto !important;
  min-width: 160px;
  margin-top: 0 !important;
}
.woocommerce-notices-wrapper .woocommerce-message {
  border-radius: 10px;
  padding: 0.9rem 1rem;
}
.wp-block-woocommerce-cart,
.wp-block-woocommerce-checkout {
  color: #2a1608;
}
.wc-block-cart__empty-cart__title,
.wp-block-woocommerce-empty-cart-block h2 {
  font-family: "Fraunces", Georgia, serif;
}

@media (max-width: 759px) {
  .hits {
    padding-bottom: 0.5rem;
    scroll-padding-inline: 1rem;
  }
  .hit { flex-basis: min(72vw, 240px); }
}

.woocommerce .mishka-country-ru {
  display: none;
}
