:root {
  --green: #14833a;
  --green-dark: #0f6b2e;
  --green-deep: #0b3d22;
  --forest: #24382c;
  --pill: #2a4030;
  --badge: #c45c26;
  --gold: #c9a227;
  --ink: #2f2c26;
  --muted: #6f6a62;
  --label: #8d877c;
  --line: #e6e1d8;
  --paper: #f6f7f4;
  --white: #ffffff;
  --shadow: 0 10px 28px -16px rgba(15, 61, 46, 0.35);
  --radius: 0;
  --page-pad: max(24px, env(safe-area-inset-left, 0px), env(safe-area-inset-right, 0px), clamp(24px, 4.5vw, 64px));
  --sora: "Sora", system-ui, sans-serif;
  --serif: "Fraunces", Georgia, serif;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html {
  scroll-padding-top: 168px;
  overflow-x: clip;
}
body.mez {
  font-family: var(--sora);
  color: var(--ink);
  background: var(--white);
  min-height: 100vh;
  overflow-x: clip;
}
.cart-count[hidden] { display: none !important; }
img, video, iframe, canvas { max-width: 100%; height: auto; }
img { display: block; }
a { color: inherit; }
button, input { font-family: inherit; }
.wp-site-blocks, .wp-block-group { display: contents; }

/* Ticker */
.ticker {
  background: var(--green);
  color: #fff;
  font-size: 13px;
  font-weight: 500;
  overflow: hidden;
  height: 36px;
  display: flex;
  align-items: center;
}
.ticker__track {
  display: flex;
  gap: 48px;
  white-space: nowrap;
  animation: marquee 28s linear infinite;
  padding-left: 100%;
}
@keyframes marquee {
  to { transform: translateX(-100%); }
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(0,0,0,.04);
}
.header-main {
  max-width: none;
  width: 100%;
  margin: 0;
  padding: 16px var(--page-pad);
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 20px 28px;
  align-items: center;
}
.logo {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
  perspective: 640px;
  min-width: 0;
}
.logo--lockup {
  flex-direction: column;
  align-items: center;
  gap: 4px;
}
.logo--mark {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  column-gap: 14px;
  row-gap: 2px;
}
.logo--mark .logo__badge { grid-column: 1; grid-row: 1; }
.logo--mark .logo__text { grid-column: 2; grid-row: 1; }
.logo--mark .logo__slogan { grid-column: 2; grid-row: 2; }
.logo__slogan {
  display: block;
  color: var(--green);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  line-height: 1.2;
  white-space: nowrap;
  text-align: center;
  width: 100%;
}
.logo--lockup .logo__slogan {
  text-align: center;
}
.logo__badge {
  position: relative;
  flex-shrink: 0;
  overflow: hidden;
  background: transparent;
  transform-style: preserve-3d;
  transition: transform .4s cubic-bezier(.22,1,.36,1), box-shadow .4s ease;
}
.logo--lockup .logo__badge {
  width: auto;
  height: 54px;
}
.logo--lockup .logo__badge svg,
.logo--lockup .logo__svg,
.logo--lockup .custom-logo {
  width: auto;
  height: 54px;
  max-width: min(240px, 46vw);
  display: block;
  object-fit: contain;
}
.logo--mark .logo__badge {
  width: 56px;
  height: 56px;
}
.logo--mark .logo__badge svg,
.logo--mark .logo__svg,
.logo--mark .custom-logo {
  width: 56px;
  height: 56px;
  display: block;
  object-fit: contain;
}
.logo__shine {
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg, transparent 32%, rgba(255,255,255,.3) 50%, transparent 68%);
  transform: translateX(-140%);
  pointer-events: none;
  z-index: 2;
}
.logo:hover .logo__shine,
.logo:focus-visible .logo__shine {
  transform: translateX(140%);
  transition: transform .7s ease;
}
.logo:hover .logo__badge,
.logo:focus-visible .logo__badge {
  transform: translateY(-3px);
}
.logo--mark:hover .logo__badge,
.logo--mark:focus-visible .logo__badge {
  box-shadow: 0 16px 28px -14px rgba(11, 61, 34, .55);
}
.logo__frame {
  stroke-dasharray: 280;
  stroke-dashoffset: 280;
  opacity: 0;
  transition: stroke-dashoffset .7s ease, opacity .3s ease;
}
.logo.is-ready .logo__frame,
.logo:hover .logo__frame,
.logo:focus-visible .logo__frame {
  stroke-dashoffset: 0;
  opacity: 1;
}
.logo__m,
.logo__leaf {
  transform-box: fill-box;
  transform-origin: center;
  transition: transform .45s cubic-bezier(.22,1,.36,1), fill .3s ease;
}
.logo:hover .logo__m,
.logo:focus-visible .logo__m {
  fill: #e0b93a;
}
.logo:hover .logo__leaf,
.logo:focus-visible .logo__leaf {
  transform: rotate(-12deg) scale(1.08);
}
.logo__text {
  display: flex;
  flex-direction: column;
  line-height: 1.05;
  position: relative;
  padding-bottom: 6px;
  min-width: 0;
}
.logo__text::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 2px;
  width: 0;
  background: var(--gold);
  transition: width .4s ease;
}
.logo:hover .logo__text::after,
.logo:focus-visible .logo__text::after {
  width: 100%;
}
.logo__text strong {
  font-family: var(--serif);
  font-size: 1.55rem;
  letter-spacing: .01em;
  transition: letter-spacing .35s ease;
}
.logo:hover .logo__text strong,
.logo:focus-visible .logo__text strong {
  letter-spacing: .06em;
}
.logo__text small {
  color: var(--green);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  margin-top: 4px;
}
.site-footer .logo__text small,
.site-footer .logo__slogan { color: #b7d4c3; }
.site-footer .logo--mark:hover .logo__badge {
  box-shadow: 0 16px 28px -14px rgba(0, 0, 0, .45);
}
@media (max-width: 720px) {
  .logo--lockup .logo__badge,
  .logo--lockup .logo__badge svg,
  .logo--lockup .logo__svg,
  .logo--lockup .custom-logo {
    height: 42px;
    max-width: min(188px, 52vw);
  }
  .logo--mark .logo__badge,
  .logo--mark .logo__badge svg,
  .logo--mark .logo__svg,
  .logo--mark .custom-logo {
    width: 48px;
    height: 48px;
  }
  .logo__text strong { font-size: 1.25rem; }
}
@media (prefers-reduced-motion: reduce) {
  .logo,
  .logo *,
  .logo__shine,
  .logo__frame,
  .logo__leaf,
  .logo__m,
  .logo__text strong,
  .logo__text::after {
    transition: none !important;
  }
  .logo__shine { display: none; }
  .logo__frame { stroke-dashoffset: 0; opacity: 1; }
  .page-loader__basket { animation: none; }
}
.page-loader {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: grid;
  place-items: center;
  background: #fff;
  transition: opacity .4s ease, visibility .4s ease;
}
.page-loader.is-done {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.page-loader__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}
.page-loader__basket {
  width: 88px;
  height: 88px;
  object-fit: contain;
  animation: mez-basket-load 1.05s ease-in-out infinite;
}
.page-loader__label {
  font-family: var(--serif);
  font-size: 1.05rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--green-deep);
}
@keyframes mez-basket-load {
  0%, 100% { transform: translateX(0) scale(1); }
  35% { transform: translateX(12px) scale(1.08); }
  70% { transform: translateX(-8px) scale(0.96); }
}
body.mez-loading { overflow: hidden; }
.search {
  display: flex;
  max-width: none;
  width: 100%;
  margin: 0;
  border: 1px solid #e4e7e2;
  border-radius: 0;
  overflow: hidden;
  background: #fff;
}
.search input {
  flex: 1;
  min-width: 0;
  border: 0;
  padding: 11px 16px;
  font-size: 14px;
  outline: none;
}
.search button {
  width: 48px;
  border: 0;
  background: var(--green);
  color: #fff;
  cursor: pointer;
}
.search button:hover { background: var(--green-dark); }
.header-actions {
  display: flex;
  gap: 8px;
  flex-shrink: 0;
  align-items: center;
}
.icon-btn {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  text-decoration: none;
  font-size: 11px;
  color: #445;
  padding: 4px 10px;
}
.icon-btn svg {
  display: block;
  width: 22px;
  height: 22px;
  max-width: none;
  flex-shrink: 0;
}
.cart-count {
  position: absolute;
  top: -2px;
  right: 6px;
  min-width: 16px;
  height: 16px;
  border-radius: 0;
  background: var(--green);
  color: #fff;
  font-size: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 4px;
}
.header-nav { border-top: 1px solid #eef1ed; }
.header-info {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 28px 56px;
  padding: 12px var(--page-pad);
  border-top: 1px solid var(--line);
  background: #fff;
}
.header-info__item {
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
}
.header-info__icon {
  width: 40px;
  height: 40px;
  color: #1d1d1d;
  flex-shrink: 0;
}
.header-info__icon svg {
  display: block;
  width: 40px;
  height: 40px;
}
.header-info__copy {
  margin: 0;
  font-size: 14px;
  line-height: 1.25;
  color: #222;
}
.header-info__copy span { display: block; }
.header-info__copy strong {
  display: block;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: .01em;
}

.story-section { background: #fff; }
.story {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 40px 64px;
  align-items: center;
}
.story__quote {
  font-family: var(--serif);
  font-size: clamp(1.45rem, 1.4vw + 1.1rem, 2.15rem);
  font-weight: 500;
  line-height: 1.38;
  color: #2b2b2b;
  margin: 0 0 22px;
}
.story__quote:last-child { margin-bottom: 0; }
.story__quote em {
  color: var(--green);
  font-style: normal;
  font-weight: 600;
}
.story__aside {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  min-width: 168px;
}
.story__photo {
  width: 148px;
  height: 148px;
  object-fit: cover;
  border-radius: 50%;
  box-shadow: 0 0 0 5px var(--green);
  background: #efece6;
}
.story__sign {
  font-family: "Great Vibes", "Segoe Script", cursive;
  font-size: 2.6rem;
  font-weight: 400;
  margin: 14px 0 0;
  line-height: 1;
  color: #222;
}
.story__sign-img {
  width: 180px;
  height: auto;
  margin-top: 14px;
}
.story__role {
  margin: 6px 0 0;
  font-size: 13px;
  color: var(--muted);
}
.nav-wrap {
  max-width: none;
  width: 100%;
  margin: 0;
  padding: 0 var(--page-pad);
  display: flex;
  align-items: center;
  gap: 4px;
  min-height: 48px;
}
.cats-wrap { position: relative; margin-right: 8px; }
.cats-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--green);
  color: #fff;
  border: 0;
  border-radius: 0;
  padding: 9px 14px;
  font-weight: 600;
  font-size: 13px;
  cursor: pointer;
}
.cats-panel {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  width: min(280px, calc(100vw - 2 * var(--page-pad)));
  max-height: min(70vh, 520px);
  overflow: auto;
  background: #fff;
  border-radius: 0;
  box-shadow: 0 18px 50px rgba(15,61,46,.18);
  padding: 8px;
  z-index: 20;
}
.cats-panel a {
  display: flex;
  gap: 10px;
  padding: 9px 10px;
  text-decoration: none;
  border-radius: 0;
  font-size: 14px;
}
.cats-panel a:hover { background: #f3f6f2; }
.nav-link {
  text-decoration: none;
  font-size: 13.5px;
  font-weight: 500;
  padding: 8px 10px;
  color: #334;
  white-space: nowrap;
}
.nav-link:hover { color: var(--green); }
.nav-link--deals { margin-left: auto; color: var(--gold); font-weight: 700; }

/* Hero */
.hero {
  position: relative;
  min-height: 520px;
  color: #fff;
  overflow: hidden;
  background: #0d3a22;
  width: 100%;
  max-width: 100%;
}
.hero__content {
  position: relative;
  z-index: 1;
  max-width: none;
  width: 100%;
  margin: 0;
  padding: 90px var(--page-pad) 110px;
  min-width: 0;
}
.hero__slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity .6s ease;
  background-size: cover;
  background-position: center;
}
.hero__slide.is-active { opacity: 1; }
.hero__slide::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(8,40,22,.88) 0%, rgba(8,40,22,.45) 48%, rgba(8,40,22,.15) 100%);
}
.hero .eyebrow {
  color: #f4c43d;
  letter-spacing: .18em;
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 700;
}
.hero h1 {
  font-family: var(--serif);
  font-size: clamp(1.55rem, 5vw, 4.1rem);
  font-weight: 700;
  line-height: 1.15;
  max-width: min(640px, 100%);
  margin: 10px 0 16px;
  overflow-wrap: anywhere;
  word-break: break-word;
  white-space: normal;
}
.hero p {
  max-width: min(520px, 100%);
  font-size: 1.05rem;
  opacity: .92;
  line-height: 1.55;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; max-width: 100%; }
.hero-nav {
  position: absolute;
  inset: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 12px;
  pointer-events: none;
  z-index: 2;
}
.hero-nav button {
  pointer-events: auto;
  width: 42px;
  height: 42px;
  border-radius: 0;
  border: 0;
  background: rgba(255,255,255,.18);
  color: #fff;
  cursor: pointer;
  backdrop-filter: blur(6px);
}
.hero-dots {
  position: absolute;
  left: 50%;
  bottom: 22px;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 2;
}
.hero-dots button {
  width: 22px;
  height: 4px;
  border: 0;
  border-radius: 0;
  background: rgba(255,255,255,.35);
  cursor: pointer;
}
.hero-dots button.is-active { background: #f4c43d; width: 36px; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 0;
  padding: 12px 18px;
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  border: 0;
  cursor: pointer;
}
.btn--gold { background: #e7b423; color: #1a2a12; }
.btn--gold:hover { background: #d4a31a; }
.btn--dark { background: #1e2a22; color: #fff; }
.btn--green { background: var(--green); color: #fff; }
.btn--green:hover { background: var(--green-dark); }
.btn--wa { background: #25d366; color: #fff; }
.btn--ghost {
  background: rgba(255,255,255,.14);
  color: #fff;
  border: 1px solid rgba(255,255,255,.2);
}
.btn--ghost-light {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255,255,255,.35);
}
.btn--outline {
  background: #fff;
  border: 1px solid var(--line);
  color: var(--ink);
}

/* Layout helpers */
.section { padding: 56px var(--page-pad); }
.section--paper { background: var(--paper); }
.wrap { max-width: none; width: 100%; margin: 0; }
.section-kicker {
  color: var(--green);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  margin: 0 0 6px;
}
.section h2 {
  font-family: var(--serif);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  margin: 0 0 8px;
}
.lede { color: var(--muted); margin: 0 0 28px; max-width: 560px; }

.cat-row {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 12px;
}
.cat-chip {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  font-size: 12px;
  font-weight: 500;
  text-align: center;
  color: #334;
}
.cat-chip span {
  width: 72px;
  height: 72px;
  border-radius: 0;
  background: #fff;
  box-shadow: 0 0 0 1px rgba(0,0,0,.05);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
}
.cat-chip:hover span { box-shadow: 0 0 0 2px var(--green); }

.promise-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.promise {
  background: #fff;
  border-radius: 0;
  padding: 22px;
  box-shadow: 0 0 0 1px rgba(0,0,0,.04);
}
.promise h3 { margin: 0 0 6px; font-size: 1.05rem; }
.promise p { margin: 0; color: var(--muted); font-size: 14px; }

.collection-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 16px;
}
.collection {
  position: relative;
  min-height: 220px;
  border-radius: 0;
  overflow: hidden;
  color: #fff;
  text-decoration: none;
  background-size: cover;
  background-position: center;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 22px;
}
.collection::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent, rgba(8,30,18,.78));
}
.collection > * { position: relative; z-index: 1; }
.collection h3 { margin: 0 0 4px; font-family: var(--serif); font-size: 1.5rem; }
.collection p { margin: 0 0 10px; opacity: .9; font-size: 14px; }
.collection.tall { min-height: 280px; }

/* Product cards â€” match the reference */
.product-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 28px 32px;
}
.product-card,
.woocommerce .product-card,
.product-card.product {
  background: #fff;
  display: flex;
  flex-direction: column;
  height: 100%;
  min-width: 0;
  float: none;
  width: auto;
  margin: 0;
}
.product-card__media {
  position: relative;
  border-radius: 0;
  overflow: hidden;
  aspect-ratio: 16 / 11.2;
  background: #efece6;
}
.product-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.product-card__badge {
  position: absolute;
  top: 14px;
  left: 14px;
  background: var(--badge);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 7px 12px;
  border-radius: 0;
  box-shadow: 0 6px 16px rgba(196,92,38,.28);
}
.wish-btn {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 36px;
  height: 36px;
  border: 0;
  border-radius: 0;
  background: rgba(255,255,255,.92);
  color: #666;
  cursor: pointer;
  display: grid;
  place-items: center;
}
.wish-btn.is-on { color: #c0392b; }
.product-card__body {
  padding: 16px 4px 4px;
  flex: 1;
  display: flex;
  flex-direction: column;
  min-height: 0;
}
.product-card__title {
  font-family: var(--serif);
  font-size: clamp(1.2rem, 1.2vw + 1rem, 1.55rem);
  font-weight: 600;
  margin: 0 0 8px;
  letter-spacing: -.01em;
  overflow-wrap: anywhere;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: 2.4em;
}
.product-card__title a { text-decoration: none; }
.product-card__desc {
  color: #7a7368;
  font-size: .92rem;
  line-height: 1.5;
  margin: 0 0 12px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.product-card .mez-cart-form {
  display: flex;
  flex-direction: column;
  flex: 1;
  margin: 0;
  gap: 0;
}
.product-card__options {
  display: flex;
  flex-direction: column;
}
.product-card__options .product-card__label:first-child {
  margin-top: 0;
}
.product-card__label {
  margin: 10px 0 6px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--label);
}
.pills {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  min-height: 36px;
  align-items: center;
}
.pill {
  appearance: none;
  border: 1px solid #ddd6cc;
  background: #fff;
  color: #3a372f;
  border-radius: 0;
  padding: 6px 12px;
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  line-height: 1.2;
  white-space: nowrap;
}
.pill.is-active {
  background: var(--pill);
  border-color: var(--pill);
  color: #fff;
}
.qty {
  display: inline-flex;
  align-items: center;
  border: 1px solid #ddd6cc;
  border-radius: 0;
  overflow: hidden;
  height: 40px;
}
.qty button {
  width: 40px;
  height: 40px;
  border: 0;
  background: transparent;
  font-size: 18px;
  cursor: pointer;
  color: #444;
}
.qty span, .qty .qty-input {
  min-width: 28px;
  text-align: center;
  font-weight: 600;
  border: 0;
  background: transparent;
  width: 36px;
  font-size: 15px;
}
.qty .qty-input::-webkit-outer-spin-button,
.qty .qty-input::-webkit-inner-spin-button { appearance: none; margin: 0; }
.qty .qty-input { -moz-appearance: textfield; }

.woocommerce table.shop_table { width: 100%; border-collapse: collapse; background: #fff; }
.woocommerce table.shop_table th {
  text-align: left;
  font-size: 12px;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--label);
  padding: 10px 8px;
  border-bottom: 1px solid var(--line);
}
.woocommerce table.shop_table td { padding: 16px 8px; border-bottom: 1px solid var(--line); vertical-align: middle; }
.woocommerce td.product-thumbnail { width: 88px; }
.woocommerce table.cart img,
.woocommerce-cart table.shop_table img,
.woocommerce-checkout .product-thumbnail img {
  width: 72px !important;
  height: 72px !important;
  max-width: 72px !important;
  object-fit: cover;
  border-radius: 0;
}
.woocommerce .button, .woocommerce button.button, .woocommerce a.button, .woocommerce #place_order, .woocommerce button.button.alt {
  background: var(--green) !important;
  color: #fff !important;
  border: 0 !important;
  border-radius: 0;
  font-weight: 600 !important;
}
.woocommerce-notices-wrapper,
.woocommerce-message,
.woocommerce-info,
.woocommerce-error,
.woocommerce-NoticeGroup {
  display: none !important;
}
.woocommerce form .form-row input.input-text,
.woocommerce form .form-row textarea,
.woocommerce form .form-row select,
.woocommerce-checkout input, .woocommerce-checkout textarea, .woocommerce-checkout select {
  border: 1px solid var(--line);
  border-radius: 0;
  padding: 12px 14px;
  width: 100%;
}
.woocommerce .cart_totals, .woocommerce-checkout-review-order {
  background: #fff;
  border-radius: 0;
  padding: 8px 4px;
}
.woocommerce-cart table.cart td.actions,
.woocommerce table.shop_table td.actions {
  display: table-cell !important;
  width: 100%;
}
.woocommerce-cart table.cart td.actions::before,
.woocommerce-cart table.cart td.actions::after {
  content: none !important;
  display: none !important;
}
.mez-cart-actions {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  width: 100%;
  column-gap: 16px;
}
.mez-cart-actions .coupon {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin: 0;
  justify-self: start;
}
.mez-cart-actions .coupon input.input-text {
  width: 180px;
  max-width: 100%;
  float: none;
}
.woocommerce-cart .mez-cart-actions button[name="update_cart"],
.woocommerce-cart table.cart td.actions .mez-cart-actions .button[name="update_cart"] {
  justify-self: end;
  margin: 0 !important;
  float: none;
}
.product-card img.wp-post-image, .pdp__media img.wp-post-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.product-card__buy {
  margin-top: auto;
  padding-top: 12px;
}
.product-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 14px;
  flex-wrap: nowrap;
}
.product-card__price {
  margin: 0;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--forest);
  white-space: nowrap;
}
.add-btn {
  background: var(--pill);
  color: #fff;
  border: 0;
  border-radius: 0;
  padding: 10px 16px;
  font-weight: 600;
  cursor: pointer;
  min-width: 118px;
  flex-shrink: 0;
  white-space: nowrap;
  position: relative;
}
.add-btn:hover { background: #1c2e22; }
.add-btn:disabled { cursor: wait; }
.add-btn.is-loading {
  opacity: .88;
  pointer-events: none;
}
.add-btn.is-added { background: var(--green); }

/* Shop */
.shop-layout {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 32px;
  align-items: start;
}
.shop-main { min-width: 0; }
.shop-main .page-head { padding: 0 0 20px; }
.woocommerce-breadcrumb {
  font-size: 13px;
  color: var(--muted);
  margin: 0 0 16px;
}
.woocommerce-breadcrumb a { text-decoration: none; }
.woocommerce-result-count { font-size: 14px; color: var(--muted); margin: 0; }
.woocommerce-ordering { margin: 0 0 20px; }
.woocommerce-ordering select {
  border: 1px solid var(--line);
  border-radius: 0;
  padding: 8px 12px;
  font-family: inherit;
}
.woocommerce-pagination { margin-top: 28px; }
.woocommerce-pagination ul {
  display: flex;
  gap: 8px;
  list-style: none;
  padding: 0;
  margin: 0;
}
.woocommerce-pagination a,
.woocommerce-pagination span {
  display: inline-flex;
  min-width: 40px;
  min-height: 40px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  text-decoration: none;
}
.woocommerce-pagination .current { background: var(--green); color: #fff; border-color: var(--green); }
.shop-layout .product-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.filters {
  background: #fff;
  border-radius: 0;
  padding: 18px;
  box-shadow: 0 0 0 1px rgba(0,0,0,.04);
  position: sticky;
  top: 120px;
}
.filters h3 { margin: 0 0 12px; font-size: 1rem; }
.filters .filter-widget + .filter-widget { margin-top: 22px; }
.filters ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.filters ul li { padding: 6px 0; font-size: 14px; }
.filters ul ul { padding-left: 14px; }
.filters a { color: inherit; text-decoration: none; }
.filters .count { color: var(--label); }
.filters .price_slider_wrapper { margin-top: 8px; }
.filters .price_slider_amount { display: flex; flex-wrap: wrap; gap: 8px; align-items: center; }
.product-card__media .onsale {
  position: absolute;
  top: 10px;
  right: 10px;
  left: auto;
  background: var(--badge);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  padding: 4px 8px;
  z-index: 2;
}
.filters label {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px 0;
  font-size: 14px;
  cursor: pointer;
}
.page-head { padding: 28px var(--page-pad) 0; }
.page-head h1 {
  font-family: var(--serif);
  font-size: 2.2rem;
  margin: 0 0 8px;
}

/* Product page */
.pdp {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 40px;
  padding: 32px 0 64px;
}
.pdp__media {
  border-radius: 0;
  overflow: hidden;
  background: #efece6;
}
.pdp__media img { width: 100%; height: 100%; object-fit: cover; min-height: 420px; }
.pdp .product-card__media, .pdp .product-card__title { display: none; }
.pdp .product-card__desc { font-size: 1.05rem; min-height: 0; }
.pdp h2.pdp-title { font-family: var(--serif); font-size: 2.4rem; margin: 0 0 12px; }

.woocommerce div.product.mez-product {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 32px 40px;
  align-items: start;
}
.woocommerce div.product .woocommerce-product-gallery { grid-column: 1; }
.woocommerce div.product .summary { grid-column: 2; }
.woocommerce div.product .woocommerce-tabs,
.woocommerce div.product .upsells,
.woocommerce div.product .related {
  grid-column: 1 / -1;
}
.woocommerce div.product .product_title {
  font-family: var(--serif);
  font-size: clamp(1.8rem, 2vw + 1rem, 2.4rem);
  margin: 0 0 12px;
}
.woocommerce div.product .price { font-size: 1.4rem; font-weight: 700; color: var(--forest); }
.woocommerce div.product .cart { margin-top: 16px; }
.woocommerce div.product .variations select,
.woocommerce div.product .quantity .qty {
  border: 1px solid var(--line);
  border-radius: 0;
  padding: 10px 12px;
  font-family: inherit;
}
.woocommerce-tabs ul.tabs {
  display: flex;
  gap: 0;
  list-style: none;
  margin: 0;
  padding: 0;
  border-bottom: 1px solid var(--line);
}
.woocommerce-tabs ul.tabs li a {
  display: block;
  padding: 12px 18px;
  text-decoration: none;
  font-weight: 600;
}
.woocommerce-tabs ul.tabs li.active a { color: var(--green); }
.woocommerce-tabs .panel { padding: 20px 0; }
.woocommerce .related ul.products,
.woocommerce .upsells ul.products,
.related .product-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px 32px;
  list-style: none;
  padding: 0;
  margin: 24px 0 0;
}

/* Cart */
.cart-table { width: 100%; border-collapse: collapse; }
.cart-table th {
  text-align: left;
  font-size: 12px;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--label);
  padding: 10px 8px;
  border-bottom: 1px solid var(--line);
}
.cart-table td {
  padding: 16px 8px;
  border-bottom: 1px solid var(--line);
  vertical-align: middle;
}
.cart-item {
  display: flex;
  gap: 12px;
  align-items: center;
}
.cart-item img {
  width: 72px;
  height: 56px;
  object-fit: cover;
  border-radius: 0;
}
.cart-summary {
  background: #fff;
  border-radius: 0;
  padding: 22px;
  box-shadow: 0 0 0 1px rgba(0,0,0,.05);
}
.cart-layout {
  display: grid;
  grid-template-columns: 1.5fr .7fr;
  gap: 28px;
  align-items: start;
}
.summary-row {
  display: flex;
  justify-content: space-between;
  margin: 8px 0;
}
.checkout-form {
  display: grid;
  gap: 12px;
}
.checkout-form input, .checkout-form select, .checkout-form textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 0;
  font-size: 14px;
}

/* Why / numbered */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.why-card {
  background: #fff;
  border-radius: 0;
  padding: 24px;
}
.why-card .num {
  font-family: var(--serif);
  color: var(--green);
  font-size: 1.4rem;
  font-weight: 700;
}

.site-footer { background: #10261a; color: #dce7df; margin-top: 24px; }
.whatsapp-banner {
  max-width: none;
  width: 100%;
  margin: 0;
  padding: 28px var(--page-pad) 8px;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
}
.whatsapp-banner__actions { display: flex; flex-wrap: wrap; gap: 10px; }
.footer-grid {
  max-width: none;
  width: 100%;
  margin: 0;
  padding: 28px var(--page-pad) 12px;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 28px;
}
.footer-grid h3 { color: #fff; font-size: 15px; margin: 0 0 12px; }
.footer-grid ul { list-style: none; margin: 0; padding: 0; }
.footer-grid li, .footer-grid p { font-size: 14px; line-height: 1.7; color: #b7c6bb; }
.footer-grid a { text-decoration: none; }
.footer-grid a:hover { color: #fff; }
.footer-blurb { margin-top: 12px; }
.subscribe { display: flex; gap: 8px; margin: 10px 0; }
.subscribe input {
  flex: 1;
  border: 0;
  border-radius: 0;
  padding: 10px 12px;
}
.subscribe button {
  background: var(--green);
  color: #fff;
  border: 0;
  border-radius: 0;
  padding: 10px 14px;
  font-weight: 600;
  cursor: pointer;
}
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 16px var(--page-pad);
  text-align: center;
  font-size: 13px;
  color: #8ea394;
}
.logo--footer { color: #fff; }

.wa-float {
  position: fixed;
  left: 18px;
  bottom: 18px;
  width: 56px;
  height: 56px;
  border-radius: 0;
  background: #25d366;
  display: grid;
  place-items: center;
  box-shadow: 0 8px 20px rgba(37,211,102,.4);
  z-index: 80;
  pointer-events: auto;
}
.mez-toasts {
  position: fixed;
  top: calc(18px + env(safe-area-inset-top, 0px));
  left: 50%;
  transform: translateX(-50%);
  z-index: 30000;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 10px;
  width: min(520px, calc(100vw - 32px));
  pointer-events: none;
}
body.admin-bar .mez-toasts { top: 50px; }
.mez-toast {
  pointer-events: auto;
  position: relative;
  display: grid;
  grid-template-columns: 28px minmax(0, 1fr);
  gap: 12px;
  align-items: start;
  width: 100%;
  background: #12382c;
  color: #fff;
  padding: 16px 18px 18px;
  border-radius: 0;
  box-shadow: 0 18px 48px rgba(15, 61, 46, .32);
  opacity: 0;
  transform: translateY(-14px);
  transition: opacity .28s ease, transform .28s ease;
  overflow: hidden;
}
.mez-toast.is-on {
  opacity: 1;
  transform: translateY(0);
}
.mez-toast--error { background: #7a2418; box-shadow: 0 18px 48px rgba(122, 36, 24, .28); }
.mez-toast--info { background: #1f3d4d; }
.mez-toast__icon {
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  background: rgba(255,255,255,.12);
  flex-shrink: 0;
}
.mez-toast__icon svg { display: block; }
.mez-toast__msg {
  margin: 2px 0 0;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.45;
  letter-spacing: -.01em;
}
.mez-toast__bar {
  position: absolute;
  left: 0;
  bottom: 0;
  height: 3px;
  width: 100%;
  background: rgba(255,255,255,.55);
  transform-origin: left center;
  animation: mez-toast-bar 7s linear forwards;
}
@keyframes mez-toast-bar {
  from { transform: scaleX(1); }
  to { transform: scaleX(0); }
}
.woocommerce-cart-form.is-updating {
  opacity: .72;
  pointer-events: none;
  transition: opacity .2s ease;
}
.cart-count.is-pop,
.icon-btn.is-pop {
  animation: mez-cart-pop .45s ease;
}
@keyframes mez-cart-pop {
  0% { transform: scale(1); }
  40% { transform: scale(1.28); }
  100% { transform: scale(1); }
}

.empty {
  text-align: center;
  padding: 48px 16px;
  color: var(--muted);
}

.logo__mark { color: var(--green); display: grid; }
.logo__mark svg { display: block; }
.primary-menu {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
  margin: 0;
  padding: 0;
  flex: 1;
}
.primary-menu li { position: relative; }
.primary-menu .sub-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 220px;
  background: #fff;
  border-radius: 0;
  box-shadow: 0 18px 50px rgba(15,61,46,.18);
  padding: 8px;
  list-style: none;
  margin: 0;
  z-index: 30;
}
.primary-menu li:hover > .sub-menu,
.primary-menu li:focus-within > .sub-menu { display: block; }
.primary-menu .sub-menu a { display: block; }
.footer-menu,
.footer-widget ul,
.site-footer ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.footer-menu a,
.site-footer li a { text-decoration: none; }
.site-footer .logo { color: #fff; }
.site-footer .logo__text small { color: #b7d4c3; }
.entry-content {
  font-size: 1.05rem;
  line-height: 1.7;
  color: #3a372f;
  max-width: none;
}
.entry-content h2,
.entry-content h3 { font-family: var(--serif); }
.entry-content p { margin: 0 0 1em; }
.entry-content img { border-radius: 0; }
body.admin-bar .site-header { top: 32px; }

.help-wa {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  background: #e7f6ec;
  padding: 22px 24px;
  margin: 22px 0 18px;
}
.help-wa__copy { min-width: 0; flex: 1; }
.help-wa__copy strong {
  display: block;
  font-size: 15px;
  color: var(--ink);
  margin-bottom: 4px;
}
.help-wa__copy p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}
.help-wa__copy a { color: var(--green); font-weight: 600; text-decoration: none; }
.help-wa__actions { display: flex; flex-wrap: wrap; gap: 10px; flex-shrink: 0; }
.help-cards--grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}
.help-cards--stack {
  display: grid;
  gap: 12px;
}
.help-card {
  background: #fff;
  border-radius: 0;
  padding: 20px;
  box-shadow: 0 0 0 1px rgba(0,0,0,.06);
  display: flex;
  gap: 14px;
  align-items: flex-start;
  min-width: 0;
}
.help-card__icon {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  display: grid;
  place-items: center;
  background: #e7f6ec;
  color: var(--green);
}
.help-card__icon--wa {
  background: #25d366;
  color: #fff;
}
.help-card h3 {
  margin: 0 0 6px;
  font-size: 15px;
  color: var(--ink);
}
.help-card p {
  margin: 6px 0 0;
  font-size: 13px;
  color: var(--muted);
  line-height: 1.45;
}
.help-card__value {
  display: block;
  color: var(--ink);
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  line-height: 1.5;
}
a.help-card__value:hover { color: var(--green); }
.contact-layout {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 24px;
  align-items: start;
}
.contact-card {
  background: #fff;
  border-radius: 0;
  padding: 28px;
  box-shadow: 0 0 0 1px rgba(0,0,0,.04);
}
.contact-aside {
  background: transparent;
  padding: 0;
  box-shadow: none;
}
.mez-form__row label { display: block; font-weight: 600; font-size: 13px; }
.mez-form__row input,
.mez-form__row textarea {
  width: 100%;
  margin-top: 6px;
  margin-bottom: 12px;
  border: 1px solid var(--line);
  border-radius: 0;
  padding: 12px 14px;
  font-family: inherit;
}
.mez-form__actions { display: flex; flex-wrap: wrap; gap: 10px; align-items: center; }
.mez-form__note { color: var(--green); font-weight: 600; }
.mez-form__note.is-error { color: #a33; }
.mez-form__alt { color: var(--muted); font-size: 14px; }
.btn--wa {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #25d366 !important;
  color: #fff !important;
  border-radius: 0;
  padding: 12px 18px;
  font-weight: 600;
  text-decoration: none;
}

/* Square corners — no rounding on storefront pages */
body.mez {
  --wc-form-border-radius: 0;
  --wc-card-border-radius: 0;
}
body.mez,
body.mez *,
body.mez *::before,
body.mez *::after {
  border-radius: 0 !important;
}
body.mez input[type="radio"],
body.mez input[type="checkbox"] {
  appearance: none;
  -webkit-appearance: none;
  width: 16px;
  height: 16px;
  margin: 0;
  border: 1px solid #c8c4bb;
  background: #fff;
  vertical-align: middle;
  border-radius: 0 !important;
}
body.mez input[type="radio"]:checked,
body.mez input[type="checkbox"]:checked {
  background: var(--green);
  box-shadow: inset 0 0 0 3px #fff;
}

@media (min-width: 1600px) {
  .product-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .shop-layout .product-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

@media (max-width: 1399px) {
  .product-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .shop-layout .product-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 1199px) {
  .cat-row { grid-template-columns: repeat(6, minmax(0, 1fr)); }
}

@media (max-width: 1024px) {
  html { scroll-padding-top: 210px; }
  .header-main {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 12px 16px;
  }
  .logo { order: 1; flex: 0 1 auto; min-width: 0; }
  .header-actions {
    order: 2;
    flex: 0 0 auto;
    display: flex !important;
    margin-left: auto;
  }
  .search {
    order: 3;
    flex: 1 1 100%;
    max-width: none;
  }
  .nav-link { display: none; }
  .nav-link--deals,
  .cats-wrap { display: block; }
  .primary-menu { display: none; }
  .product-grid,
  .shop-layout .product-grid,
  .collection-grid,
  .promise-row,
  .why-grid,
  .footer-grid,
  .cart-layout {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .shop-layout,
  .pdp,
  .woocommerce div.product.mez-product,
  .contact-layout,
  .story {
    grid-template-columns: 1fr;
  }
  .filters { position: static; }
  .pdp__media img { min-height: 280px; }
  .hero-nav { display: none; }
  .wa-float {
    left: auto;
    right: max(16px, env(safe-area-inset-right, 0px));
  }
  .cat-row { padding-right: 64px; }
}

@media screen and (max-width: 782px) {
  body.admin-bar .site-header { top: 46px; }
}

@media (max-width: 720px) {
  :root {
    --page-pad: max(20px, env(safe-area-inset-left, 0px), env(safe-area-inset-right, 0px));
  }
  .header-main {
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) auto;
    grid-template-areas:
      "logo tools"
      "search search";
    align-items: center;
    column-gap: 8px;
  }
  .logo { grid-area: logo; order: 0; margin: 0; flex: none; }
  .header-actions {
    grid-area: tools;
    display: flex !important;
    flex: none;
    margin-left: 0;
  }
  .header-actions .icon-btn:first-child { grid-area: auto; }
  .header-actions .icon-btn:last-child { grid-area: auto; }
  .search { grid-area: search; order: 0; flex: none; width: 100%; }
  html { scroll-padding-top: 230px; }
  .header-info {
    gap: 16px 28px;
    padding: 10px var(--page-pad);
  }
  .header-info__icon,
  .header-info__icon svg {
    width: 32px;
    height: 32px;
  }
  .header-info__copy { font-size: 13px; }
  .header-info__copy strong { font-size: 14px; }
  .story { gap: 28px; }
  .product-grid,
  .shop-layout .product-grid,
  .collection-grid,
  .promise-row,
  .why-grid,
  .footer-grid,
  .cart-layout,
  .shop-layout,
  .pdp,
  .woocommerce div.product.mez-product,
  .contact-layout,
  .story {
    grid-template-columns: 1fr;
  }
  .help-cards--grid {
    grid-template-columns: 1fr;
  }
  .help-wa {
    flex-direction: column;
    align-items: stretch;
  }
  .help-wa__actions .btn { flex: 1; text-align: center; }
  .cat-row { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .logo__text small { display: none; }
  .header-actions span { display: none; }
  .hero-nav { display: none; }
  .hero__content { padding: 48px var(--page-pad) 72px; }
  .icon-btn {
    min-width: 44px;
    min-height: 44px;
    padding: 8px;
  }
  .cats-btn { min-height: 44px; }
  .hero { min-height: 380px; }
  .hero h1 {
    font-size: 1.45rem;
    width: 100%;
    white-space: normal;
    word-break: break-word;
  }
  .hero p { font-size: .95rem; width: 100%; }
  .hero__content,
  .hero h1,
  .hero p { max-width: 100%; }
  .hero-actions {
    flex-direction: column;
    align-items: stretch;
    max-width: 100%;
  }
  .hero-actions .btn { width: 100%; flex: none; }
  .section { padding: 36px var(--page-pad); }
  .page-head { padding: 20px var(--page-pad) 0; }
  .page-head h1 { font-size: 1.8rem; }
  .pdp-title,
  .pdp h2.pdp-title { font-size: 1.8rem; }
  .pdp__media img { min-height: 220px; }
  .whatsapp-banner {
    flex-direction: column;
    align-items: stretch;
  }
  .subscribe { flex-direction: column; align-items: stretch; }
  .subscribe button { width: 100%; }
  .contact-card,
  .contact-aside { padding: 18px; }
  .product-card__footer { flex-wrap: wrap; }
  .add-btn { width: 100%; }
  .pill { min-height: 40px; padding: 8px 12px; }
  .qty button { min-width: 44px; }
  .search input,
  .subscribe input,
  .mez-form__row input,
  .mez-form__row textarea,
  .woocommerce form .form-row input.input-text,
  .woocommerce form .form-row textarea,
  .woocommerce-checkout input,
  .woocommerce-checkout textarea,
  .checkout-form input,
  .checkout-form select,
  .checkout-form textarea {
    font-size: 16px;
  }
  .mez-cart-actions {
    grid-template-columns: minmax(0, 1fr) auto;
  }
  .woocommerce-cart .mez-cart-actions button[name="update_cart"] {
    justify-self: end;
    margin: 0 !important;
    width: auto;
  }
  .woocommerce table.shop_table,
  .cart-table {
    display: block;
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
  .woocommerce .col2-set .col-1,
  .woocommerce .col2-set .col-2 {
    float: none;
    width: 100%;
  }
  .wa-float {
    width: 52px;
    height: 52px;
    left: auto;
    right: max(12px, env(safe-area-inset-right, 0px));
    bottom: max(12px, env(safe-area-inset-bottom, 0px));
  }
  body.admin-bar .mez-toasts { top: 60px; }
  .mez-toasts {
    width: calc(100vw - 24px);
  }
}

@media (max-width: 480px) {
  .logo { gap: 8px; }
  .logo__text small { display: none; }
  .logo__text strong { font-size: 1.15rem; }
  .logo--lockup .logo__badge,
  .logo--lockup .logo__badge svg,
  .logo--lockup .logo__svg,
  .logo--lockup .custom-logo {
    height: 36px;
    max-width: min(156px, 54vw);
  }
  .logo--mark .logo__badge,
  .logo--mark .logo__badge svg,
  .logo--mark .logo__svg,
  .logo--mark .custom-logo {
    width: 44px;
    height: 44px;
  }
  .header-main { padding: 12px var(--page-pad); gap: 10px; }
  .cat-row { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .cat-chip { font-size: 11px; }
  .cat-chip span { width: 60px; height: 60px; font-size: 24px; }
  .nav-wrap { padding: 0 var(--page-pad); overflow-x: auto; }
}

@media (max-width: 360px) {
  .logo__text strong { font-size: 1.05rem; }
  .logo__slogan { font-size: 10px; letter-spacing: .08em; white-space: normal; }
  .cat-row { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 8px; }
}
