:root {
  --ivory: #f7f3ee;
  --surface: #ffffff;
  --line: #e9e2da;
  --text: #161616;
  --muted: #5a5a5a;
  --teal: #000000;
  --teal-deep: #000000;
  --champagne: #c8b6a6;
  --hero-grad: linear-gradient(145deg, rgba(0, 0, 0, 0.08), rgba(200, 182, 166, 0.06));
  --shadow-soft: 0 10px 30px rgba(0, 0, 0, 0.05);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: "Inter", sans-serif;
  font-size: 16px;
  line-height: 1.7;
  color: var(--text);
  background: var(--ivory);
}

img {
  max-width: 100%;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

.container {
  width: min(1240px, 100% - 56px);
  margin: 0 auto;
}

.section {
  padding: 56px 0;
}

.section-caption {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--muted);
  margin-bottom: 12px;
}

.section-subtitle {
  font-size: 15px;
  color: var(--muted);
  margin-top: 8px;
  line-height: 1.5;
}

.thin-divider {
  width: 100%;
  border: 0;
  border-top: 1px solid var(--line);
  margin: 0;
}

h1,
h2,
h3,
h4 {
  font-family: "Cormorant Garamond", serif;
  margin: 0 0 14px;
  color: var(--text);
  font-weight: 700;
}

h1 {
  font-size: 58px;
  line-height: 1.05;
}

h2 {
  font-size: 40px;
  line-height: 1.15;
}

h3 {
  font-size: 28px;
  line-height: 1.2;
}

p {
  margin: 0 0 12px;
  color: var(--muted);
}

.small-label {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--muted);
}

/* ── Announcement Strip ────────────────────── */
.announcement-strip {
  width: 100%;
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.announcement-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 16px;
  width: min(1240px, 100% - 56px);
  margin: 0 auto;
  padding: 9px 0;
}

.ann-social {
  display: flex;
  align-items: center;
  gap: 12px;
}

.ann-social a {
  display: inline-flex;
  align-items: center;
  opacity: 0.85;
  transition: opacity 0.2s;
}

.ann-social a:hover {
  opacity: 1;
}

.ann-social svg {
  display: block;
}

.ann-text {
  text-align: center;
  line-height: 1.4;
  white-space: nowrap;
}

.ann-text a:hover {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.ann-spacer {
  /* mirrors .ann-social width to keep text centred */
}

@media (max-width: 768px) {
  .announcement-inner {
    display: block;
    padding: 8px 0;
    overflow: hidden;
    width: 100%;
  }
  .ann-social,
  .ann-spacer {
    display: none;
  }
  .ann-text {
    display: inline-block;
    white-space: nowrap;
    animation: ann-marquee 14s linear infinite;
    padding-left: 100%;
  }
}

@keyframes ann-marquee {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-100%); }
}

@media (max-width: 375px) {
  .announcement-strip {
    font-size: 11px;
  }
}

/* ── Site Header ───────────────────────────── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  height: 84px;
  backdrop-filter: blur(10px);
  background: rgba(247, 243, 238, 0.82);
  border-bottom: 1px solid var(--line);
}

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

.brand {
  justify-self: start;
}

.nav-actions {
  justify-self: end;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand-mark {
  width: 34px;
  height: 34px;
  border: 1px solid var(--teal-deep);
  border-radius: 50%;
  position: relative;
}

.brand-mark::after {
  content: "";
  position: absolute;
  inset: 8px;
  border: 1px solid var(--teal);
  border-radius: 50%;
}

.brand-text {
  font-family: "Cormorant Garamond", serif;
  letter-spacing: 0.08em;
  font-size: 28px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 26px;
}

/* Safety net: if wp_nav_menu outputs a <ul> wrapper, flatten it */
.nav-links ul {
  display: contents;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-links ul li {
  display: contents;
}

.nav-links a {
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--muted);
  position: relative;
  padding-bottom: 2px;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 100%;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s ease;
  border-bottom: 1px solid var(--champagne);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  transform: scaleX(1);
}

.nav-links a.active,
.nav-links a:hover {
  color: var(--text);
}

/* ── Nav Dropdown ─────────────────── */
.nav-item.has-dropdown {
  position: relative;
  display: flex;
  align-items: center;
}

.nav-parent {
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.dropdown-arrow {
  transition: transform 0.2s ease;
}

.has-dropdown:hover .dropdown-arrow {
  transform: rotate(180deg);
}

/* Invisible bridge so mouse can travel from link to dropdown */
.nav-item.has-dropdown::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  height: 16px;
  pointer-events: none;
}
.nav-item.has-dropdown:hover::after {
  pointer-events: auto;
}

.nav-dropdown {
  position: absolute;
  top: calc(100% + 14px);
  left: 50%;
  transform: translateX(-50%);
  min-width: 200px;
  background: var(--surface);
  border: 1px solid var(--line);
  padding: 12px 0;
  box-shadow: var(--shadow-soft);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s ease, visibility 0.2s ease;
  z-index: 65;
  display: flex;
  flex-direction: column;
}

.nav-dropdown::before {
  content: "";
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-bottom: 10px solid var(--surface);
}

.has-dropdown:hover .nav-dropdown {
  opacity: 1;
  visibility: visible;
}

.nav-dropdown a {
  padding: 8px 20px;
  font-size: 13px;
  text-transform: none;
  letter-spacing: 0.04em;
  white-space: nowrap;
  color: var(--muted);
  transition: background 0.15s ease, color 0.15s ease;
}

.nav-dropdown a:hover {
  background: var(--bg);
  color: var(--text);
}

/* Remove underline animation for dropdown items */
.nav-dropdown a::after {
  display: none;
}

.nav-shop {
  position: relative;
}

.mega-menu {
  position: absolute;
  top: calc(100% + 18px);
  left: 50%;
  transform: translateX(-50%);
  width: min(860px, 88vw);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  background: var(--surface);
  border: 1px solid var(--line);
  padding: 16px;
  box-shadow: var(--shadow-soft);
  opacity: 0;
  visibility: hidden;
  transition: 0.2s ease;
  z-index: 65;
}

.mega-menu::before {
  content: "";
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-bottom: 10px solid var(--surface);
}

.nav-shop:hover .mega-menu,
.nav-shop.open .mega-menu {
  opacity: 1;
  visibility: visible;
}

.mega-col h5 {
  margin: 0 0 8px;
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-family: "Inter", sans-serif;
}

.mega-col a {
  display: block;
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 6px;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.icon-btn {
  width: 38px;
  height: 38px;
  border: 1px solid var(--line);
  background: var(--surface);
  border-radius: 50%;
  color: var(--teal-deep);
  cursor: pointer;
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.cart-badge {
  position: absolute;
  top: -4px;
  right: -4px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--teal);
  color: #f7f3ee;
  font-size: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.menu-toggle {
  display: none;
}

.mobile-drawer {
  display: none;
  background: var(--surface);
  border-top: 1px solid var(--line);
  padding: 16px 28px 22px;
}

.mobile-drawer.open {
  display: grid;
  gap: 10px;
}

.mobile-drawer a {
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

/* ── Mobile Drawer Accordion ── */
.drawer-item.has-children {
  display: flex;
  flex-direction: column;
}

.drawer-item__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.drawer-item__link {
  flex: 1;
}

.drawer-item__toggle {
  background: none;
  border: none;
  padding: 6px 4px;
  cursor: pointer;
  color: var(--muted);
  display: flex;
  align-items: center;
  transition: color 0.2s ease;
}

.drawer-item__toggle:hover {
  color: var(--text);
}

.drawer-toggle-arrow {
  transition: transform 0.3s ease;
}

.drawer-item.has-children.open .drawer-toggle-arrow {
  transform: rotate(180deg);
}

.drawer-submenu {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding-left: 16px;
}

.drawer-item.has-children.open .drawer-submenu {
  max-height: 300px;
  padding-top: 8px;
  padding-bottom: 4px;
}

.drawer-submenu a {
  font-size: 12px !important;
  text-transform: none !important;
  letter-spacing: 0.06em !important;
  color: var(--muted);
}

.drawer-submenu a:hover {
  color: var(--teal);
}

/* ── Drawer Social Icons ── */
.drawer-social {
  display: flex;
  align-items: center;
  gap: 16px;
  padding-top: 4px;
}

.drawer-social__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--muted);
  transition: color 0.2s ease, border-color 0.2s ease;
}

.drawer-social__icon:hover {
  color: var(--teal);
  border-color: var(--teal);
}

.drawer-divider {
  height: 1px;
  background: var(--line);
  margin: 8px 0;
}

.quick-overlay {
  position: fixed;
  inset: 0;
  background: rgba(18, 24, 24, 0.25);
  z-index: 70;
  opacity: 0;
  visibility: hidden;
  transition: 0.25s ease;
}

.quick-overlay.open {
  opacity: 1;
  visibility: visible;
}

.quick-panel {
  position: fixed;
  top: 98px;
  right: 22px;
  width: min(360px, calc(100% - 44px));
  background: var(--surface);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
  padding: 18px;
  z-index: 71;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: 0.25s ease;
}

.quick-panel.open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.quick-panel h4 {
  margin: 0 0 10px;
  font-size: 22px;
}

.quick-panel .btn {
  margin-top: 8px;
}

.quick-close {
  width: 30px;
  height: 30px;
  border: 1px solid var(--line);
  background: var(--surface);
  color: var(--muted);
  border-radius: 50%;
  cursor: pointer;
  margin-left: auto;
  display: block;
}

.icon-btn.active {
  border-color: var(--teal-deep);
}

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.btn {
  height: 46px;
  padding: 0 20px;
  border-radius: 10px;
  border: 1px solid transparent;
  font-size: 14px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.25s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.btn-primary {
  background: var(--teal);
  color: #f7f3ee;
}

.btn-primary:hover {
  background: var(--teal-deep);
  transform: translateY(-1px);
}

.btn-secondary {
  border-color: var(--teal-deep);
  color: var(--teal-deep);
  background: transparent;
}

.btn-secondary:hover {
  background: rgba(0, 0, 0, 0.06);
}

.text-cta {
  display: inline-block;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  position: relative;
  color: var(--teal-deep);
}

.text-cta::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -3px;
  width: 100%;
  border-bottom: 1px solid var(--champagne);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s ease;
}

.text-cta:hover::after {
  transform: scaleX(1);
}

.hero {
  min-height: 680px;
  border-bottom: 1px solid var(--line);
  position: relative;
  overflow: hidden;
}

.hero-slider {
  background: #d9e7e6;
}

.hero-slides {
  position: absolute;
  inset: 0;
}

.hero-slide {
  position: absolute;
  inset: 0;
  margin: 0;
  opacity: 0;
  transition: opacity 0.6s ease;
}

.hero-slide.active {
  opacity: 1;
}

.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(6, 34, 34, 0.35), rgba(6, 34, 34, 0.15));
}

.hero-grid {
  position: relative;
  z-index: 2;
  min-height: 680px;
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 34px;
  align-items: center;
}

.hero-side-label {
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #f2ece5;
}

.hero-copy {
  max-width: 520px;
}

.hero-copy .section-caption,
.hero-copy p,
.hero-copy h1 {
  color: #f4efea;
}

.hero-dots {
  position: absolute;
  z-index: 3;
  left: 50%;
  bottom: 24px;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
}

.hero-dot {
  width: 28px;
  height: 4px;
  border: 0;
  border-radius: 999px;
  background: rgba(247, 243, 238, 0.4);
  cursor: pointer;
}

.hero-dot.active {
  background: rgba(247, 243, 238, 0.95);
}

.hero-slide-cta {
  position: absolute;
  z-index: 3;
  right: 30px;
  bottom: 24px;
  display: none;
  gap: 10px;
}
.hero-slide-cta.active {
  display: flex;
}

.btn-hero-white {
  background: #ffffff;
  color: #161616;
  border: 1px solid #ffffff;
}

.btn-hero-white:hover {
  background: #f4f1ec;
  border-color: #f4f1ec;
  transform: translateY(-1px);
}

/* ── Category Slider ───────────────────────── */
.cat-slider-section {
  position: relative;
}

.cat-slider-section .section-head {
  align-items: center;
}

.cat-slider-nav {
  display: flex;
  gap: 8px;
  align-items: center;
  flex-shrink: 0;
}

.cat-slider-section--shop .cat-slider-nav {
  margin-bottom: 14px;
  justify-content: flex-end;
}

.cat-slider-track {
  display: flex;
  gap: 14px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding-bottom: 4px;
  align-items: flex-start;   /* cards keep their own aspect ratio, no stretch */
}

.cat-slider-track::-webkit-scrollbar {
  display: none;
}

.cat-slide {
  flex: 0 0 calc(25% - 11px);
  min-width: 200px;
  scroll-snap-align: start;
}

@media (max-width: 1024px) {
  .cat-slide { flex: 0 0 calc(33.33% - 10px); }
}

@media (max-width: 768px) {
  .cat-slide { flex: 0 0 calc(50% - 7px); }
}

@media (max-width: 480px) {
  .cat-slide { flex: 0 0 80%; }
}

/* ── Legacy category grid (keep for any other usage) ── */
.category-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.category-image-card {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 16px;
  /* Rectangular (4:3 landscape) card. The category image is set as a
     background-image (cover) so it ALWAYS fills the card cleanly in every
     browser — no grey bands, no white gaps, no empty headroom. */
  background-color: var(--surface);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  /* Fixed rectangular height matching the (cropped) image's ~1.6 landscape ratio.
     (Do NOT use padding-bottom % here — these are flex items, so % padding
     resolves against the container width, not the card width.) */
  height: 185px;
}

@media (max-width: 768px) {
  .category-image-card { height: 150px; }
}

.category-image-card::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 45%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0));
}

.category-image-card span {
  position: absolute;
  z-index: 2;
  left: 16px;
  bottom: 14px;
  color: #ffffff;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.category-image-card {
  transition: background-size 0.4s ease, box-shadow 0.3s ease;
}
.category-image-card:hover {
  background-size: 112%;
  box-shadow: var(--shadow-soft);
}

.category-tile {
  border: 1px solid var(--line);
  background: var(--surface);
  padding: 20px;
  min-height: 86px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.category-tile span {
  font-family: "Cormorant Garamond", serif;
  font-size: 26px;
}

.category-tile b {
  color: var(--champagne);
  font-weight: 500;
}

.section-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 28px;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

/* ── Product Slider (Featured / Bestsellers on Homepage) ── */
.product-slider-section .section-head {
  align-items: center;
}

.product-slider-controls {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
}

.product-slider-nav {
  display: flex;
  gap: 8px;
}

.product-slider-track {
  display: flex;
  gap: 18px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}

.product-slider-track::-webkit-scrollbar {
  display: none;
}

.product-slider-track .product-card {
  flex: 0 0 calc(25% - 14px);
  min-width: 240px;
}

@media (max-width: 1024px) {
  .product-slider-track .product-card {
    flex: 0 0 calc(33.33% - 12px);
    min-width: 220px;
  }
}

@media (max-width: 768px) {
  .product-slider-track .product-card {
    flex: 0 0 calc(50% - 9px);
    min-width: 200px;
  }
}

@media (max-width: 480px) {
  .product-slider-track .product-card {
    flex: 0 0 75%;
    min-width: 0;
  }
}

.product-card {
  border: 1px solid var(--line);
  background: var(--surface);
  padding: 12px;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.product-card .price-line {
  margin-top: auto;
}

.product-badge,
.woocommerce span.onsale {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 2;
  background: var(--teal);
  color: #fff;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 4px 10px;
  line-height: 1.3;
  border-radius: 0;
  min-height: auto;
  min-width: auto;
}

.product-media {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 12px;
  margin-bottom: 12px;
  position: relative;
  height: 200px;            /* fixed box — image fills it, no white bands */
  background-color: var(--surface);
}

.product-media img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center center;
  transition: transform 0.3s ease;
}

@media (max-width: 768px) {
  .product-media { height: 200px; }
}

.product-card:hover .product-media img {
  transform: scale(1.03);
}

.product-category {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--muted);
  margin-bottom: 8px;
}

.product-name {
  font-family: "Cormorant Garamond", serif;
  font-size: 18px;
  margin-bottom: 8px;
}

.price-line {
  display: flex;
  gap: 8px;
  align-items: center;
}

.price {
  font-weight: 600;
  font-size: 16px;
  color: var(--text);
}

.compare {
  font-size: 13px;
  color: #8c8c8c;
  text-decoration: line-through;
}

.product-card-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px;
  margin-top: 12px;
}

.product-card-actions .btn {
  text-align: center;
  font-size: 11px;
  height: 36px;
  padding: 0 6px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

.product-card-actions .btn-secondary {
  background: transparent;
  border: 1px solid var(--line);
  color: var(--text);
}

.product-card-actions .btn-secondary:hover {
  border-color: var(--teal);
  color: var(--teal);
}

/* Hide WC "View cart" link injected after AJAX add-to-cart */
.product-card .added_to_cart,
.product-card-actions .added_to_cart,
.product-card .wc-forward {
  display: none !important;
}

/* If only one button, span full width */
.product-card-actions .btn:only-child {
  grid-column: 1 / -1;
}

.editorial-story {
  border: 1px solid var(--line);
  background: var(--surface);
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 34px;
  padding: 40px;
}

.editorial-quote {
  font-family: "Cormorant Garamond", serif;
  font-size: 42px;
  line-height: 1.1;
  color: var(--text);
}

.banner-minimal {
  border: 1px solid var(--line);
  background: var(--surface);
  padding: 44px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: center;
}

.story-banner-section {
  width: 100%;
  margin: 0;
  padding: 0;
}

.story-banner {
  position: relative;
  min-height: 420px;
  overflow: hidden;
  width: 100%;
}

.story-banner img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.story-banner-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(8, 25, 25, 0.65), rgba(8, 25, 25, 0.18));
}

.story-banner-content {
  position: relative;
  z-index: 2;
  max-width: 600px;
  padding: 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 420px;
}

.story-banner-content .section-caption,
.story-banner-content h2,
.story-banner-content p {
  color: #f6f2ec;
}

.story-banner-content .btn-secondary {
  border-color: #f6f2ec;
  color: #f6f2ec;
}

.story-banner-content .btn-secondary:hover {
  background: rgba(246, 242, 236, 0.14);
}

/* ── Testimonial Slider ── */
.testimonial-section .section-head {
  margin-bottom: 32px;
}

.testimonial-slider {
  overflow: hidden;
  position: relative;
}

.testimonial-track {
  display: flex;
  gap: 20px;
  transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}

.testimonial-card {
  flex: 0 0 calc(33.333% - 14px);
  border: 1px solid var(--line);
  background: var(--surface);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.testimonial-text {
  font-size: 15px;
  line-height: 1.7;
  color: var(--text);
  flex: 1;
  font-style: italic;
}

.testimonial-author {
  margin: 0;
}

.testimonial-nav {
  display: flex;
  gap: 8px;
}

.testimonial-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 28px;
}

.testimonial-dot {
  width: 28px;
  height: 4px;
  border: 0;
  border-radius: 999px;
  background: var(--line);
  cursor: pointer;
  padding: 0;
  transition: background 0.25s;
}

.testimonial-dot.active {
  background: var(--teal);
}

.newsletter-line {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 28px 0;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 16px;
  align-items: center;
}

.newsletter-form {
  display: flex;
  gap: 10px;
  width: min(620px, 100%);
}

input,
select,
textarea {
  width: 100%;
  font: inherit;
  color: var(--text);
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--surface);
}

input[type="checkbox"],
input[type="radio"] {
  width: 16px;
  height: 16px;
  min-width: 16px;
  margin: 0;
  padding: 0;
  accent-color: var(--teal);
  box-shadow: none;
}

input,
select {
  height: 46px;
  padding: 0 12px;
}

textarea {
  padding: 12px;
}

input:focus,
select:focus,
textarea:focus {
  outline: none;
  border-color: var(--teal);
  box-shadow: 0 0 0 4px rgba(0, 0, 0, 0.10);
}

label {
  display: block;
  margin-bottom: 12px;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}

.site-footer {
  border-top: 1px solid var(--line);
  padding: 54px 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(4, 1fr);
  gap: 22px;
}

.footer-brand p {
  max-width: 300px;
}

.footer-col h4 {
  font-size: 14px;
  font-family: "Inter", sans-serif;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin: 0 0 12px;
}

.footer-col a {
  display: block;
  margin: 0 0 8px;
  color: var(--muted);
}

.social-row {
  display: flex;
  gap: 8px;
}

.social-row a {
  width: 26px;
  height: 26px;
  border: 1px solid var(--line);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
}

/* ═══════════════════════════════════════════
   SHOP PAGE
═══════════════════════════════════════════ */

.shop-page {
  padding: 40px 0 80px;
}

/* Breadcrumb */
.page-head {
  margin-bottom: 24px;
}

.page-head h1 {
  font-family: var(--serif);
  font-size: 36px;
  margin: 0;
}

.breadcrumb {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--muted);
  margin: 0 0 20px;
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
}

.breadcrumb a:hover { color: var(--teal); }

.breadcrumb-sep { opacity: 0.4; }

/* Page heading */
.shop-heading {
  margin-bottom: 32px;
}

.shop-heading h1 {
  margin: 0 0 6px;
}

.shop-heading__desc {
  color: var(--muted);
  font-size: 14px;
  margin: 0;
}

/* Category strip – full width band above layout */
.shop-cat-strip {
  background: var(--surface);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 20px 0;
  margin-bottom: 36px;
}

/* ← [track] → all in one flex row */
.shop-cat-strip .cat-slider-section--shop {
  display: flex;
  align-items: center;
  gap: 10px;
}

.shop-cat-strip .cat-slider-track {
  flex: 1;
  min-width: 0;
}

.shop-cat-strip .cat-slide {
  flex: 0 0 calc(25% - 11px);
  min-width: 200px;
  min-height: 220px;
}

/* Highlight active category card */
.cat-slide--active span {
  color: var(--teal);
  font-weight: 600;
}

.cat-slide--active::after {
  background: linear-gradient(to top, rgba(0,0,0,0.45), rgba(0,0,0,0.06));
}

/* Shop layout: sidebar + main */
.shop-layout {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 36px;
  align-items: start;
}

/* ── Filter Sidebar ── */
.filter-sidebar__inner {
  position: sticky;
  top: 100px; /* clears the sticky header */
}

.filter-toggle {
  display: none;
  width: 100%;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  background: var(--surface);
  border: 1px solid var(--line);
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  color: var(--text);
  margin-bottom: 12px;
}

.filter-group {
  border-bottom: 1px solid var(--line);
}

.filter-group__label {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  list-style: none;
  padding: 14px 0;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--text);
  user-select: none;
}

.filter-group__label::-webkit-details-marker { display: none; }

.filter-chevron {
  transition: transform 0.2s ease;
  flex-shrink: 0;
}

details[open] .filter-chevron {
  transform: rotate(180deg);
}

.filter-body {
  padding: 4px 0 14px;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.filter-link {
  font-size: 13px;
  color: var(--muted);
  padding: 5px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  transition: color 0.2s;
}

.filter-link:hover,
.filter-link--active {
  color: var(--teal);
}

.filter-link--active {
  font-weight: 500;
}

.filter-link--child {
  padding-left: 14px;
  font-size: 12px;
}

.filter-count {
  font-size: 11px;
  color: var(--muted);
  opacity: 0.7;
}

.filter-clear {
  font-size: 11px;
  color: var(--muted);
  opacity: 0.6;
  margin-top: 4px;
}

.filter-clear:hover { color: var(--teal); opacity: 1; }

/* ── Shop Main (right column) ── */
.shop-main {
  min-width: 0; /* prevent overflow in grid */
}

/* Shop grid: always 2 columns */
.shop-main .product-grid {
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

/* Shop pagination */
.shop-pagination {
  margin-top: 40px;
  text-align: center;
}

.shop-pagination .woocommerce-pagination {
  display: inline-flex;
  gap: 4px;
  align-items: center;
}

.shop-pagination .woocommerce-pagination ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 4px;
}

.shop-pagination .woocommerce-pagination ul li a,
.shop-pagination .woocommerce-pagination ul li span {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  height: 40px;
  padding: 0 12px;
  font-size: 14px;
  border: 1px solid var(--line);
  color: var(--text);
  background: var(--surface);
  transition: all 0.2s;
}

.shop-pagination .woocommerce-pagination ul li a:hover {
  border-color: var(--teal);
  color: var(--teal);
}

.shop-pagination .woocommerce-pagination ul li span.current {
  background: var(--teal);
  border-color: var(--teal);
  color: #fff;
  font-weight: 600;
}

/* Toolbar: product count + sort */
.shop-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--line);
  margin-bottom: 24px;
}

.shop-count {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--muted);
  margin: 0;
}

.sort-form {
  display: flex;
  align-items: center;
}

.sort-select {
  font-size: 13px;
  letter-spacing: 0.06em;
  border: 1px solid var(--line);
  background: var(--surface);
  padding: 8px 12px;
  color: var(--text);
  cursor: pointer;
  outline: none;
  min-width: 180px;
}

.sort-select:focus { border-color: var(--teal); }

/* Pagination */
.shop-pagination {
  margin-top: 48px;
  display: flex;
  justify-content: center;
}

/* Empty state */
.shop-empty {
  padding: 60px 0;
  text-align: center;
  color: var(--muted);
}

.subgroup-links {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.subgroup-links a {
  border: 1px solid var(--line);
  padding: 4px 8px;
  font-size: 12px;
  color: var(--muted);
}

.sort-minimal {
  width: 220px;
}

.pagination {
  margin-top: 34px;
  display: flex;
  justify-content: center;
  gap: 14px;
  align-items: center;
}

.pagination a {
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}

.pagination .line {
  width: 80px;
  border-top: 1px solid var(--line);
}

.product-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 34px;
}

.gallery-main,
.thumb-btn {
  border: 1px solid var(--line);
  background: var(--surface);
}

.gallery-main {
  position: relative;
}

.gallery-main {
  padding: 14px;
}

.thumb-row {
  margin-top: 10px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}

.thumb-btn {
  padding: 4px;
  cursor: pointer;
}

.thumb-btn.active {
  border-color: var(--teal-deep);
}

.rating-line {
  color: #8f7d62;
  margin-bottom: 12px;
}

.size-pills {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 18px;
}

.pill {
  border: 1px solid var(--line);
  background: transparent;
  height: 38px;
  padding: 0 12px;
  border-radius: 999px;
}

.pill.active {
  border-color: var(--teal-deep);
  color: var(--teal-deep);
}

.qty-stepper {
  width: 130px;
  height: 40px;
  border: 1px solid var(--line);
  border-radius: 10px;
  overflow: hidden;
  display: grid;
  grid-template-columns: 38px 1fr 38px;
  margin-bottom: 18px;
}

.qty-stepper button {
  border: 0;
  background: #fbfaf8;
  cursor: pointer;
}

.qty-stepper input {
  border: 0;
  border-radius: 0;
  text-align: center;
  height: 40px;
  color: var(--dark);
  font-size: 15px;
  font-weight: 500;
  font-family: inherit;
  background: #fff;
  -moz-appearance: textfield;
}
.qty-stepper input::-webkit-outer-spin-button,
.qty-stepper input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.tabs {
  margin-top: 38px;
}

.tab-head {
  display: flex;
  gap: 18px;
  border-bottom: 1px solid var(--line);
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.tab-head::-webkit-scrollbar { display: none; }

.tab-btn {
  background: none;
  border: 0;
  padding: 12px 8px;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--muted);
  border-bottom: 1px solid transparent;
  margin-bottom: -1px;
  cursor: pointer;
  white-space: nowrap;
  flex-shrink: 0;
  text-align: center;
}

.tab-btn.active {
  color: var(--text);
  border-bottom-color: var(--champagne);
}

.tab-panel {
  display: none;
  padding-top: 16px;
}

.tab-panel.active {
  display: block;
}


.cart-layout {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 40px;
  align-items: start;
}

/* ══════════════════════════════════════════════════════
   SITE POPUP
══════════════════════════════════════════════════════ */
.framy-popup-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(0, 0, 0, 0.55);
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.framy-popup-overlay.active {
  display: flex;
  opacity: 1;
}

.framy-popup {
  position: relative;
  background: var(--surface);
  max-width: 480px;
  width: 100%;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
  animation: popupSlideIn 0.35s ease;
}

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

.framy-popup__close {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 2;
  background: var(--surface);
  border: 1px solid var(--line);
  width: 32px;
  height: 32px;
  border-radius: 50%;
  font-size: 20px;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  transition: color 0.2s ease, border-color 0.2s ease;
}

.framy-popup__close:hover {
  color: var(--text);
  border-color: var(--text);
}

.framy-popup__image {
  width: 100%;
  overflow: hidden;
}

.framy-popup__image img {
  width: 100%;
  height: auto;
  display: block;
}

.framy-popup__body {
  padding: 28px 32px 32px;
  text-align: center;
}

.framy-popup__heading {
  font-size: clamp(20px, 3vw, 26px);
  font-weight: 400;
  letter-spacing: -0.01em;
  margin: 0 0 12px;
}

.framy-popup__desc {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.7;
  margin: 0 0 24px;
}

.framy-popup__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 180px;
}

/* ── Popup WhatsApp Form ── */
.framy-popup__wa-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
}

.framy-popup__input-row {
  width: 100%;
}

.framy-popup__phone-input {
  width: 100%;
  padding: 12px 16px;
  font-size: 15px;
  border: 1px solid var(--line);
  background: var(--ivory);
  color: var(--text);
  font-family: inherit;
  outline: none;
  transition: border-color 0.2s ease;
}

.framy-popup__phone-input:focus {
  border-color: var(--teal);
}

.framy-popup__phone-input.error {
  border-color: #c0392b;
}

.framy-popup__wa-btn {
  width: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: #25D366;
  border: none;
  color: #fff;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.04em;
  padding: 13px 24px;
  cursor: pointer;
  transition: background 0.2s ease;
}

.framy-popup__wa-btn:hover {
  background: #1DA851;
}

.framy-popup__wa-btn svg {
  flex-shrink: 0;
}

.framy-popup__wa-error {
  font-size: 12px;
  color: #c0392b;
  margin: 0;
  min-height: 16px;
  display: none;
}

.framy-popup__wa-error.visible {
  display: block;
}

@media (max-width: 480px) {
  .framy-popup {
    max-width: 100%;
  }
  .framy-popup__body {
    padding: 24px 20px 28px;
  }
}

/* ── WhatsApp Order Confirmation ── */
.framy-wa-confirm {
  margin: 28px 0;
  text-align: center;
}

.framy-wa-confirm__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: #25D366;
  border-color: #25D366;
  color: #fff;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.04em;
  padding: 14px 32px;
  transition: background 0.2s ease, transform 0.2s ease;
}

.framy-wa-confirm__btn:hover {
  background: #1DA851;
  border-color: #1DA851;
  color: #fff;
  transform: translateY(-1px);
}

.framy-wa-confirm__btn svg {
  flex-shrink: 0;
}

/* ── Add-to-Cart Toast ── */
.framy-toast {
  position: fixed;
  bottom: 28px;
  right: 28px;
  background: var(--teal, #2e7d78);
  color: #fff;
  padding: 12px 22px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.02em;
  z-index: 99999;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.25s ease, transform 0.25s ease;
  pointer-events: none;
  box-shadow: 0 4px 16px rgba(0,0,0,0.18);
}
.framy-toast--visible {
  opacity: 1;
  transform: translateY(0);
}
@media (max-width: 600px) {
  .framy-toast {
    bottom: 16px;
    right: 16px;
    left: 16px;
    text-align: center;
  }
}

.checkout-layout {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 30px;
  align-items: start;
}

.cart-table {
  border: 1px solid var(--line);
  background: var(--surface);
  overflow: hidden;
}

.cart-row {
  display: grid;
  grid-template-columns: 2.5fr 1fr 140px 1fr 80px;
  gap: 16px;
  align-items: center;
  padding: 18px 20px;
  border-bottom: 1px solid var(--line);
}

.cart-row:last-child {
  border-bottom: none;
}

.cart-row.head {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--muted);
  padding: 14px 20px;
  background: var(--surface);
}

.cart-product {
  display: flex;
  gap: 14px;
  align-items: center;
}

.cart-product img {
  width: 72px;
  height: 72px;
  object-fit: cover;
  border: 1px solid var(--line);
  border-radius: 4px;
  flex-shrink: 0;
}

.cart-product .product-name {
  font-size: 15px;
  margin: 0 0 2px;
}

.cart-product .small-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
  margin: 0;
}

/* Qty stepper inside cart rows — no bottom margin */
.cart-row .qty-stepper {
  margin-bottom: 0;
  width: 120px;
  height: 38px;
}

/* Remove link — override WooCommerce red styling */
.cart-row a.remove,
.cart-row .text-cta.remove {
  color: var(--muted) !important;
  font-size: 12px !important;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  text-decoration: none;
  transition: color 0.2s;
}
.cart-row a.remove:hover,
.cart-row .text-cta.remove:hover {
  color: var(--dark) !important;
}
.cart-row a.remove::before,
.cart-row .text-cta.remove::before {
  content: none !important;
}
.cart-row .text-cta.remove::after {
  content: none;
}

/* Coupon + Update row — flex layout, not grid */
.cart-row.cart-actions-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  padding: 18px 20px;
  border-top: 1px solid var(--line);
  border-bottom: none;
}
.cart-actions-row .coupon-group {
  display: flex;
  gap: 8px;
  flex: 1;
  min-width: 220px;
}
.cart-actions-row .coupon-group input {
  flex: 1;
  padding: 10px 14px;
  border: 1px solid var(--line);
  border-radius: 6px;
  font-size: 14px;
  font-family: inherit;
  background: #fff;
}
.cart-actions-row .coupon-group input:focus {
  outline: none;
  border-color: var(--teal);
}

.summary,
.checkout-form {
  border: 1px solid var(--line);
  background: var(--surface);
  padding: 28px 24px;
  position: sticky;
  top: 24px;
}

.summary h3 {
  font-family: var(--serif);
  font-size: 22px;
  margin: 0 0 20px;
}

.summary-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
  font-size: 14px;
}

.summary-row span {
  color: var(--muted);
}

.summary-row strong {
  color: var(--dark);
}

.summary-total {
  border-top: 1px solid var(--line);
  margin-top: 16px;
  padding-top: 16px;
  font-size: 15px;
}

.summary-total span,
.summary-total strong {
  color: var(--dark);
}

.secure-line {
  margin-top: 14px;
  padding-top: 12px;
  border-top: 1px solid var(--line);
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-bottom: 24px;
}

.contact-card,
.minimal-card {
  border: 1px solid var(--line);
  background: var(--surface);
  padding: 20px;
}

.map-placeholder {
  border: 1px solid var(--line);
  background: var(--surface);
  min-height: 320px;
  display: grid;
  place-items: center;
  color: var(--muted);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 12px;
}

.form-error {
  font-size: 12px;
  color: #b03b3b;
  display: block;
  margin-top: 4px;
  text-transform: none;
  letter-spacing: 0;
}

.invalid {
  border-color: #b03b3b;
}

@media (max-width: 1180px) {
  .product-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 992px) {
  .section {
    padding: 44px 0;
  }
  .about-process-layout {
    grid-template-columns: 1fr 240px;
    gap: 36px;
  }

  h1 {
    font-size: 44px;
  }

  h2 {
    font-size: 32px;
  }

  .nav {
    grid-template-columns: 1fr auto;
  }

  .nav-links {
    display: none;
  }

  .nav-desktop-only {
    display: none;
  }

  .nav-actions {
    justify-self: end;
  }

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

  .mega-menu {
    left: 0;
    transform: none;
    width: min(620px, 92vw);
    grid-template-columns: repeat(2, 1fr);
  }

  .hero,
  .hero-grid {
    min-height: 580px;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    padding: 44px 0;
  }

  .hero-side-label {
    writing-mode: horizontal-tb;
    transform: none;
  }

  .product-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .testimonial-card {
    flex: 0 0 calc(50% - 10px);
  }

  .category-row,
  .contact-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .editorial-story,
  .product-layout,
  .cart-layout,
  .checkout-layout,
  .newsletter-line {
    grid-template-columns: 1fr;
  }

  /* Shop: sidebar collapses above products on tablet */
  .shop-layout {
    grid-template-columns: 1fr;
  }

  .filter-sidebar__inner,
  .summary,
  .checkout-form {
    position: static;
  }

  .filter-toggle {
    display: flex;
  }

  .filter-panels {
    display: none;
  }

  .filter-panels.open {
    display: block;
  }

  .sort-minimal,
  .sort-select {
    width: 100%;
  }

  .story-banner,
  .story-banner-content {
    min-height: 320px;
  }
}

@media (max-width: 640px) {
  .hero-slide-cta.active {
    right: 16px;
    bottom: 16px;
    flex-direction: column;
    gap: 8px;
  }

  .hero-slide-cta.active .btn {
    width: 100%;
    text-align: center;
  }

  .container {
    width: min(1240px, 100% - 32px);
  }

  .section {
    padding: 28px 0;
  }

  h1 { font-size: 36px; }
  h2 { font-size: 26px; }
  h3 { font-size: 20px; }
  body { font-size: 16px; }

  /* Section head stacks on mobile */
  .section-head {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .hero,
  .hero-grid {
    min-height: 480px;
  }

  /* Hero dots shift up on small screens */
  .hero-dots {
    bottom: 16px;
  }

  .quick-panel {
    top: 88px;
    right: 16px;
    width: calc(100% - 32px);
  }

  /* Story banner */
  .story-banner,
  .story-banner-content {
    min-height: 280px;
  }
  .story-banner-content {
    padding: 32px 20px;
    max-width: none;
  }
  .story-banner-content h2 { font-size: 24px; }

  /* Grids */
  .product-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
  }
  .category-row,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  /* Compact product card for phone */
  .product-card { padding: 8px; }
  .product-media { margin-bottom: 8px; }
  .product-category { font-size: 10px; margin-bottom: 4px; }
  .product-name { font-size: 13px; margin-bottom: 6px; line-height: 1.4; }
  .product-card .price-line {
    flex-wrap: wrap;
    row-gap: 4px;
    font-size: 12px;
  }
  .product-card .price-save-badge {
    font-size: 9px;
    padding: 2px 6px;
    letter-spacing: 0;
  }
  .product-card-actions {
    grid-template-columns: 1fr;
    gap: 5px;
    margin-top: 8px;
  }
  .product-card-actions .btn {
    font-size: 11px;
    height: 34px;
    padding: 0 8px;
    width: 100%;
  }
  .product-card-actions .btn:only-child {
    grid-column: 1;
  }

  /* Testimonial slider */
  .testimonial-card {
    flex: 0 0 100%;
  }

  /* Newsletter */
  .newsletter-form {
    flex-direction: column;
  }
  .newsletter-line {
    grid-template-columns: 1fr;
  }

  /* Forms */
  .form-grid {
    grid-template-columns: 1fr;
  }

  /* Cart */
  .cart-row {
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 16px;
  }
  .cart-row.head {
    display: none;
  }
  .cart-row .qty-stepper {
    width: 110px;
  }
  .cart-product img {
    width: 60px;
    height: 60px;
  }

  /* Page banner text sizing */
  .page-banner-caption { font-size: 11px; }
  .page-banner-title   { font-size: 28px; }

  /* Contact page */
  .contact-layout {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .map-container,
  .map-placeholder {
    min-height: 240px;
  }

  /* Trust bar wraps nicely */
  .trust-badges-row {
    gap: 16px;
  }

  /* Footer – 2 columns on mobile */
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px 24px;
  }
  .footer-brand {
    grid-column: 1 / -1;
  }

  /* Promo bar text wraps */
  .promo-bar {
    flex-wrap: wrap;
    text-align: center;
    gap: 6px;
    padding: 8px 16px;
  }
}




.brand-logo {
  height: 48px;
  max-height: 48px;
  width: auto;
  max-width: 230px;
  display: block;
  object-fit: contain;
  object-position: left center;
  /* The Eyeloo Optic logo is white/silver; the header & footer are light ivory.
     A black backing chip keeps the brand mark visible on the light theme. */
  background: var(--teal);
  padding: 6px 16px;
  border-radius: 10px;
}

.site-footer .brand-logo {
  height: 48px;
}

/* ═══════════════════════════════════════════════
   WOOCOMMERCE INTEGRATION STYLES
═══════════════════════════════════════════════ */

/* WC page wrapper */
.wc-page { padding: 64px 0 96px; }
.woocommerce,
.woocommerce-page { background: var(--ivory); }

/* ── My Account Layout ── */
/* Reset WooCommerce default float-based account layout */
.woocommerce-account .woocommerce-MyAccount-navigation,
.woocommerce-account .woocommerce-MyAccount-content {
  float: none !important;
  width: auto !important;
  padding: 0 !important;
}
/* Override WooCommerce clearing pseudo-elements that break grid */
.woocommerce-account .woocommerce-MyAccount-navigation::after,
.woocommerce-account .woocommerce-MyAccount-content::after {
  content: none;
}

.myaccount-layout {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 40px;
  margin-top: 32px;
  align-items: start;
  width: 100%;
  box-sizing: border-box;
}

.woocommerce-MyAccount-navigation,
.woocommerce-MyAccount-navigation ul {
  list-style: none;
  margin: 0;
  padding: 0;
  float: none !important;
  width: auto !important;
}

.woocommerce-MyAccount-navigation ul {
  display: flex;
  flex-direction: column;
  border: 1px solid var(--line);
  background: var(--surface);
}

.woocommerce-MyAccount-navigation ul li {
  border-bottom: 1px solid var(--line);
}

.woocommerce-MyAccount-navigation ul li:last-child {
  border-bottom: none;
}

.woocommerce-MyAccount-navigation ul li a {
  display: block;
  padding: 14px 20px;
  font-size: 14px;
  letter-spacing: 0.04em;
  color: var(--text);
  transition: all 0.2s;
}

.woocommerce-MyAccount-navigation ul li a:hover {
  background: var(--ivory);
  color: var(--teal);
}

.woocommerce-MyAccount-navigation ul li.is-active a {
  background: var(--teal);
  color: #fff !important;
  font-weight: 600;
}

.myaccount-content {
  min-width: 0;
  width: 100%;
  overflow-x: auto;
}

/* WC renders content inside an extra div — ensure it fills the cell */
.myaccount-content .woocommerce-MyAccount-content {
  width: 100%;
  box-sizing: border-box;
}

/* Dashboard welcome box */
.myaccount-content .woocommerce-MyAccount-content .woocommerce-message,
.myaccount-content .woocommerce-MyAccount-content .woocommerce-info {
  width: 100%;
  box-sizing: border-box;
}

/* Hide WC default dashboard "Hello..." greeting + description paragraphs */
.myaccount-content > p,
.woocommerce-MyAccount-content > p {
  display: none;
}

/* WC account content tables — wrap in scrollable container via CSS */
.myaccount-content table {
  width: 100%;
  border-collapse: collapse;
  display: table;
}

/* Wrap overflowing tables on smaller desktops */
.myaccount-content .woocommerce-orders-table,
.myaccount-content .woocommerce-table {
  display: block;
  overflow-x: auto;
  width: 100%;
}

.myaccount-content table th,
.myaccount-content table td {
  padding: 12px 16px;
  border-bottom: 1px solid var(--line);
  font-size: 14px;
  text-align: left;
}

.myaccount-content table th {
  font-weight: 600;
  background: var(--surface);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 12px;
}

/* WC forms inside account */
.myaccount-content .woocommerce-EditAccountForm p,
.myaccount-content .woocommerce-address-fields p {
  margin-bottom: 16px;
}

.myaccount-content .woocommerce-EditAccountForm label,
.myaccount-content .woocommerce-address-fields label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 6px;
}

/* WC login/register forms (when logged out) */
.woocommerce-form-login,
.woocommerce-form-register {
  max-width: 440px;
  margin: 32px auto;
  padding: 40px;
  border: 1px solid var(--line);
  background: var(--surface);
}

.woocommerce-form-login .form-row,
.woocommerce-form-register .form-row {
  margin-bottom: 20px;
}

.woocommerce-form-login label,
.woocommerce-form-register label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 6px;
}

.woocommerce-form-login .woocommerce-form-login__submit,
.woocommerce-form-register .woocommerce-form-register__submit {
  width: 100%;
  margin-top: 8px;
}

@media (max-width: 768px) {
  .myaccount-layout {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .myaccount-nav .woocommerce-MyAccount-navigation ul {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 6px;
  }
  .myaccount-nav .woocommerce-MyAccount-navigation ul li a {
    padding: 8px 14px;
    font-size: 12px;
  }
  .woocommerce-form-login,
  .woocommerce-form-register {
    padding: 24px;
  }
}

/* WC breadcrumb */
.woocommerce-breadcrumb { font-size: 13px; color: var(--muted); margin-bottom: 24px; }
.woocommerce-breadcrumb a { color: var(--muted); }
.woocommerce-breadcrumb a:hover { color: var(--teal); }

/* WC buttons → FRAMY style */
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button,
.woocommerce #respond input#submit,
.woocommerce .button.alt,
.woocommerce a.button.alt {
  background: var(--teal);
  color: #fff;
  border: none;
  border-radius: 0;
  font-family: "Inter", sans-serif;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 13px 28px;
  cursor: pointer;
  transition: background 0.2s;
  display: inline-block;
}
.woocommerce a.button:hover,
.woocommerce button.button:hover,
.woocommerce input.button:hover,
.woocommerce #respond input#submit:hover,
.woocommerce .button.alt:hover {
  background: var(--teal-deep);
  color: #fff;
}

/* Single product add-to-cart button */
.woocommerce div.product form.cart .button {
  background: var(--teal);
  color: #fff;
  border: none;
  border-radius: 0;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 14px 32px;
  width: 100%;
  cursor: pointer;
  margin-top: 16px;
}
.woocommerce div.product form.cart .button:hover {
  background: var(--teal-deep);
}

/* Single product quantity input */
.woocommerce div.product form.cart .quantity input.qty {
  width: 60px;
  text-align: center;
  border: 1px solid var(--line);
  padding: 10px;
  font-size: 16px;
}

/* Hide WC default sale flash globally — we use .product-badge instead */
.woocommerce span.onsale {
  display: none;
}

/* Kill WooCommerce default red X remove button */
.woocommerce a.remove {
  color: var(--muted) !important;
  font-size: 12px !important;
  font-weight: 500 !important;
  text-decoration: none !important;
  width: auto !important;
  height: auto !important;
  line-height: normal !important;
  display: inline-block !important;
}
.woocommerce a.remove:hover {
  color: var(--dark) !important;
  background: transparent !important;
}

/* WC notices */
.woocommerce-message,
.woocommerce-info,
.woocommerce-error {
  padding: 14px 20px;
  margin-bottom: 20px;
  border: 1px solid var(--line);
  background: var(--surface);
  font-size: 14px;
  list-style: none;
}
.woocommerce-message,
.woocommerce-info {
  border-left: 4px solid var(--teal);
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}
.woocommerce-message::before,
.woocommerce-info::before {
  flex-shrink: 0;
  line-height: 1;
  font-size: 18px;
  position: static !important;
  float: none !important;
  margin: 0 !important;
  top: auto !important;
  left: auto !important;
}
.woocommerce-message .button,
.woocommerce-message a {
  margin-left: auto;
}
.woocommerce-error {
  border-left: 4px solid #c33;
}
.woocommerce-error li {
  list-style: none;
}

/* Add to cart button on product card */
.add_to_cart_button.ajax_add_to_cart.added { background: var(--teal-deep); }
.add_to_cart_button.ajax_add_to_cart.loading { opacity: 0.7; }

/* WC price */
.woocommerce .price,
.woocommerce .price-line .amount,
.price-line ins .amount { color: var(--text); font-weight: 600; }
.woocommerce .price del,
.price-line del .amount { color: var(--muted); font-weight: 400; }
.woocommerce span.onsale { background: var(--teal); }

/* WC notices */
.woocommerce-message,
.woocommerce-info { border-top-color: var(--teal); }
.woocommerce-error { border-top-color: #b03b3b; }

/* WC form fields */
.woocommerce form .form-row input.input-text,
.woocommerce form .form-row textarea,
.woocommerce form .form-row select {
  border: 1px solid var(--line);
  border-radius: 0;
  background: var(--surface);
  font-family: "Inter", sans-serif;
  padding: 12px 14px;
  font-size: 14px;
  color: var(--text);
  outline: none;
  width: 100%;
}
.woocommerce form .form-row input.input-text:focus,
.woocommerce form .form-row textarea:focus,
.woocommerce form .form-row select:focus {
  border-color: var(--teal);
}
.woocommerce form .form-row label { font-size: 13px; color: var(--text); font-weight: 500; }

/* WC Cart table */
.woocommerce table.cart th { font-size: 12px; text-transform: uppercase; letter-spacing: 0.1em; color: var(--muted); border-bottom: 1px solid var(--line); padding: 12px 16px; }
.woocommerce table.cart td { padding: 16px; border-bottom: 1px solid var(--line); }
.woocommerce table.cart td.product-name a { color: var(--text); font-weight: 500; }
.woocommerce table.cart td.product-name a:hover { color: var(--teal); }
.woocommerce #cart_totals h2,
.woocommerce-cart .cart-collaterals h2 { font-family: "Cormorant Garamond", serif; font-size: 28px; }
.woocommerce table.shop_table { border: 1px solid var(--line); border-radius: 0; }
.woocommerce table.shop_table th { background: var(--ivory); }

/* WC Checkout */
.woocommerce-checkout #customer_details h3,
.woocommerce-checkout #order_review_heading,
.woocommerce-checkout #payment h3 { font-family: "Cormorant Garamond", serif; font-size: 24px; margin-bottom: 20px; }
.woocommerce #payment { background: var(--surface); border: 1px solid var(--line); border-radius: 0; }
.woocommerce #payment ul.payment_methods { border-bottom: 1px solid var(--line); padding: 16px; }
.woocommerce #payment ul.payment_methods li label { font-size: 14px; }
.woocommerce #payment div.payment_box { background: var(--ivory); color: var(--muted); font-size: 13px; }

/* WC Order review */
.woocommerce-checkout-review-order table { width: 100%; }
.woocommerce-checkout-review-order table tfoot tr:last-child td { font-weight: 700; font-size: 17px; }

/* WC My Account */
.woocommerce-account .woocommerce-MyAccount-navigation { background: var(--surface); border: 1px solid var(--line); padding: 16px 0; }
/* WC account nav handled by .woocommerce-MyAccount-navigation rules above */
.woocommerce-account .woocommerce-MyAccount-content h2 { font-family: "Cormorant Garamond", serif; font-size: 32px; }

/* Razorpay */
.razorpay-payment-button { background: var(--teal) !important; border: none !important; }

/* WC star ratings */
.woocommerce .star-rating span::before,
.woocommerce .star-rating::before { color: var(--champagne); }
.woocommerce .star-rating span::before { color: var(--teal); }

/* WC product tabs */
.woocommerce div.product .woocommerce-tabs ul.tabs { border-bottom: 1px solid var(--line); }
.woocommerce div.product .woocommerce-tabs ul.tabs li { border: 1px solid var(--line); background: var(--ivory); }
.woocommerce div.product .woocommerce-tabs ul.tabs li.active { border-bottom-color: var(--surface); background: var(--surface); }
.woocommerce div.product .woocommerce-tabs ul.tabs li a { font-family: "Inter", sans-serif; font-size: 13px; color: var(--text); }

/* WC single product quantity + add to cart */
.woocommerce div.product form.cart { display: flex; flex-direction: column; gap: 14px; }
.woocommerce div.product form.cart .qty { border: 1px solid var(--line); width: 64px; text-align: center; padding: 12px 8px; font-size: 15px; }
.woocommerce div.product form.cart .single_add_to_cart_button { background: var(--teal); color: #fff; border: none; padding: 14px 36px; font-size: 13px; letter-spacing: 0.06em; text-transform: uppercase; cursor: pointer; transition: background 0.2s; border-radius: 0; margin-top: 16px; }
.woocommerce div.product form.cart .single_add_to_cart_button:hover { background: var(--teal-deep); }

/* Active sidebar filter link */
.filter-body a.active-filter { color: var(--teal); font-weight: 500; }
.filter-body a { color: var(--muted); font-size: 14px; display: block; padding: 3px 0; }
.filter-body a:hover { color: var(--teal); }

/* Sort form */
.sort-form { display: contents; }

/* WC page heading */
.woocommerce-products-header__title.page-title {
  font-family: "Cormorant Garamond", serif;
  font-size: 48px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 8px;
}

/* WC pagination */
.woocommerce nav.woocommerce-pagination ul li a,
.woocommerce nav.woocommerce-pagination ul li span { border: 1px solid var(--line); color: var(--muted); padding: 6px 14px; }
.woocommerce nav.woocommerce-pagination ul li span.current { background: var(--teal); border-color: var(--teal); color: #fff; }
.woocommerce nav.woocommerce-pagination ul li a:hover { background: var(--ivory); color: var(--teal); }

/* Responsive WC */
@media (max-width: 768px) {
  .woocommerce-cart .woocommerce,
  .woocommerce-checkout .woocommerce { padding: 0 16px; }
}

/* Footer bottom bar */
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.12);
  margin-top: 40px;
  padding: 20px 0 0;
}
.footer-bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom-inner .small-label { margin: 0; }
.footer-legal-links { display: flex; gap: 20px; }
.footer-legal-links a { font-size: 12px; color: var(--muted); letter-spacing: 0.08em; }
.footer-legal-links a:hover { color: var(--teal); }
.social-row { display: flex; gap: 14px; align-items: center; }
.social-icon { color: var(--muted); transition: color 0.2s; display: flex; }
.social-icon:hover { color: var(--teal); }

/* Promo bar */
.promo-bar {
  background: var(--charcoal, #161616);
  color: #fff;
  text-align: center;
  font-size: 13px;
  letter-spacing: 0.06em;
  padding: 10px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  width: 100%;
  box-sizing: border-box;
}
.promo-bar a { color: var(--champagne); text-decoration: underline; font-weight: 600; }
.promo-bar a:hover { opacity: 0.8; }

/* Trust badges bar */
.trust-bar {
  background: var(--ivory, #f7f3ee);
  border-top: 1px solid var(--line, #e9e2da);
  border-bottom: 1px solid var(--line, #e9e2da);
  padding: 20px 0;
}
.trust-badges-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 32px;
}
.trust-badge-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--charcoal, #161616);
}
.trust-icon { width: 28px; height: 28px; object-fit: contain; }
.trust-badge-dup { display: none; }
@media (max-width: 640px) {
  .trust-bar {
    overflow: hidden;
    padding: 14px 0;
  }
  .trust-badges-row {
    flex-wrap: nowrap;
    justify-content: flex-start;
    gap: 40px;
    animation: trust-marquee 12s linear infinite;
    width: max-content;
    padding-left: 100%;
  }
  .trust-badge-item {
    flex-shrink: 0;
    font-size: 12px;
    white-space: nowrap;
  }
  .trust-badge-dup {
    display: flex;
  }
}

@keyframes trust-marquee {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* Hero slide placeholder (shown when no hero images) */
.hero-slide--empty { background: var(--charcoal, #161616); }
.hero-slide-placeholder {
  width: 100%;
  height: 100%;
  min-height: 480px;
  background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
}

/* Contact page layout */
.contact-intro { color: var(--muted); margin-bottom: 32px; max-width: 620px; }
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  margin-top: 40px;
  align-items: start;
}
@media (max-width: 768px) {
  .contact-layout { grid-template-columns: 1fr; gap: 32px; }
}

/* Map container */
.map-container {
  border-radius: 4px;
  overflow: hidden;
  height: 100%;
  min-height: 340px;
}
.map-container iframe {
  width: 100%;
  height: 100%;
  min-height: 340px;
  border: 0;
  display: block;
}
.map-placeholder {
  background: var(--ivory, #f7f3ee);
  border: 1px dashed var(--line, #e9e2da);
  border-radius: 4px;
  padding: 40px 24px;
  min-height: 280px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

/* Contact info grid */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 24px;
  margin: 28px 0;
}
.contact-card {
  background: var(--ivory, #f7f3ee);
  border: 1px solid var(--line, #e9e2da);
  padding: 20px 24px;
  border-radius: 4px;
}
.contact-card .small-label { margin-bottom: 8px; }
.contact-card h3 { font-size: 16px; font-weight: 500; margin: 0; font-family: "Inter", sans-serif; }
.contact-card a { color: var(--charcoal); font-family: "Inter", sans-serif; }
.contact-card a:hover { color: var(--teal); }

/* WhatsApp badge inside phone card label */
.contact-wa-badge {
  display: inline-block;
  background: #25D366;
  color: #fff;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.05em;
  padding: 2px 7px;
  border-radius: 20px;
  margin-left: 6px;
  vertical-align: middle;
  text-transform: uppercase;
}

/* Contact page social links row */
.contact-social-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 28px;
}
.contact-social-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--surface);
  color: var(--text);
  font-size: 13px;
  font-family: "Inter", sans-serif;
  font-weight: 500;
  text-decoration: none;
  transition: border-color 0.2s, color 0.2s, background 0.2s;
}
.contact-social-btn:hover { border-color: var(--teal); color: var(--teal); }
.contact-social-whatsapp { border-color: #25D366; color: #25D366; }
.contact-social-whatsapp:hover { background: #25D366; color: #fff; }
.contact-social-instagram:hover { border-color: #e1306c; color: #e1306c; }
.contact-social-facebook:hover  { border-color: #1877f2; color: #1877f2; }
.contact-social-youtube:hover   { border-color: #ff0000; color: #ff0000; }

/* Contact form: Send Message button — WhatsApp green */
#framy-contact-form button[type=submit] {
  background: #25D366;
  border-color: #25D366;
  color: #fff;
}
#framy-contact-form button[type=submit]:hover {
  background: #1ebe5d;
  border-color: #1ebe5d;
  color: #fff;
  transform: translateY(-1px);
}

/* ─────────────────────────────────────────
   WC SINGLE PRODUCT PAGE (woocommerce/single-product.php)
───────────────────────────────────────── */
.product-page { padding-top: 40px; }

.product-detail-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-bottom: 48px;
}

.product-gallery {}

.gallery-thumbs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  margin-top: 10px;
}

.gallery-thumb {
  border: 1px solid var(--line);
  background: var(--surface);
  padding: 4px;
  cursor: pointer;
  overflow: hidden;
}

.gallery-thumb.active {
  border-color: var(--teal-deep);
}

.gallery-thumb img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  display: block;
}

.product-badge--detail {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 2;
  background: var(--teal);
  color: #fff;
  font-size: 11px;
  padding: 4px 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.product-info {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.product-price { margin-bottom: 4px; }
.product-short-desc { color: var(--muted); line-height: 1.65; }
.product-sizes { margin-bottom: 12px; }

/* Save badge — inline inside .price-line, sits right after the sale price */
.price-save-badge {
  display: inline-flex;
  align-items: center;
  background: #e6f4f1;
  color: var(--teal-deep);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 20px;
  border: 1px solid var(--teal);
  vertical-align: middle;
  white-space: nowrap;
}

/* Buy Now button on single product */
.framy-buy-now-btn {
  display: flex;
  width: 100%;
  justify-content: center;
  margin-top: 10px;
  font-size: 13px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  height: 46px;
  align-items: center;
  text-decoration: none;
  background: var(--teal);
  color: #fff !important;
  border-color: var(--teal);
}
.framy-buy-now-btn:hover {
  background: var(--teal-deep);
  border-color: var(--teal-deep);
  color: #fff !important;
}

.product-tabs {
  border-top: 1px solid var(--line);
  padding-top: 40px;
  margin-bottom: 48px;
}

.tab-body { margin-top: 0; }

.related-products {}

@media (max-width: 768px) {
  .product-detail-layout {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .gallery-thumbs {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* Phone: shrink add-to-cart + buy-now buttons so text never overflows */
@media (max-width: 480px) {
  .woocommerce div.product form.cart .single_add_to_cart_button {
    font-size: 11px;
    padding: 10px 16px;
    letter-spacing: 0.04em;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  .woocommerce div.product form.cart .button {
    font-size: 11px;
    padding: 10px 16px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  .woocommerce div.product form.cart .qty {
    width: 50px;
    font-size: 14px;
    padding: 10px 6px;
  }
  .framy-buy-now-btn {
    font-size: 11px;
    letter-spacing: 0.04em;
    height: 40px;
    padding: 0 12px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  .price-save-badge {
    font-size: 11px;
    padding: 3px 10px;
  }
}

/* ─────────────────────────────────────────
   SMALL PHONE (375px)
───────────────────────────────────────── */
@media (max-width: 375px) {
  h1 { font-size: 30px; }
  h2 { font-size: 24px; }
  .hero, .hero-grid { min-height: 460px; }
  .hero-slide-cta.active { right: 12px; bottom: 12px; gap: 8px; }
  .btn { height: 42px; padding: 0 16px; font-size: 13px; }
  .product-grid { grid-template-columns: repeat(2, 1fr); gap: 6px; }
  .newsletter-form { flex-direction: column; }
  input, select { font-size: 16px; }
  textarea { font-size: 16px; }
  .container { width: min(1240px, 100% - 24px); }
}

/* Ensure inputs never trigger iOS zoom (font-size 16px minimum) */
input[type="text"],
input[type="email"],
input[type="search"],
input[type="number"],
input[type="tel"],
input[type="password"],
select,
textarea {
  font-size: max(16px, 1em);
}

/* ─────────────────────────────────────────────
   Search Results Page
───────────────────────────────────────────── */
.search-results-form { margin-bottom: 40px; }

.search-input-row {
  display: flex;
  gap: 8px;
  max-width: 520px;
}

.search-input {
  flex: 1;
  padding: 10px 16px;
  border: 1px solid var(--line);
  font-family: inherit;
  outline: none;
}

.product-card--post {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.search-result-excerpt { line-height: 1.5; }
.search-result-view { margin-top: auto; }

.search-pagination { margin-top: 48px; }

.search-no-results {
  text-align: center;
  padding: 80px 0 120px;
}
.search-no-results h2 { margin-bottom: 12px; }
.search-no-results-text {
  margin-bottom: 32px;
  max-width: 420px;
  margin-left: auto;
  margin-right: auto;
}

.search-suggestions { padding-top: 0; }
.search-suggestions-head { margin-bottom: 24px; }

/* ─────────────────────────────────────────────
   404 Page
───────────────────────────────────────────── */
.not-found-wrap {
  text-align: center;
  padding: 100px 24px 60px;
}

.not-found-caption {
  font-size: 13px;
  letter-spacing: .18em;
}

.not-found-heading { margin-bottom: 16px; }

.not-found-text {
  margin-bottom: 40px;
  max-width: 460px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

.not-found-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 80px;
}

.not-found-products { text-align: left; }
.not-found-products-head { margin-bottom: 24px; }

/* ═══════════════════════════════════════════════
   PAGE BANNER  (Shop / About / Contact)
═══════════════════════════════════════════════ */
.page-banner {
  position: relative;
  min-height: 400px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

.page-banner-media {
  position: absolute;
  inset: 0;
}

.page-banner-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.page-banner-placeholder {
  background: linear-gradient(135deg, var(--teal-deep) 0%, #0a3d3d 60%, rgba(200, 182, 166, 0.25) 100%);
}

.page-banner-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(10, 18, 18, 0.80) 0%,
    rgba(10, 18, 18, 0.40) 50%,
    rgba(10, 18, 18, 0.10) 100%
  );
  pointer-events: none;
}

.page-banner-content {
  position: relative;
  z-index: 2;
  width: 100%;
  padding-bottom: 48px;
  padding-top: 32px;
}

.page-banner-caption {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--champagne);
  margin-bottom: 10px;
}

.page-banner-title {
  color: #f6f2ec;
  font-size: 64px;
  line-height: 1.0;
  margin: 0;
  max-width: 700px;
}

.page-banner-desc {
  color: rgba(246, 242, 236, 0.75);
  font-size: 15px;
  margin: 12px 0 0;
  max-width: 500px;
  line-height: 1.6;
}

@media (max-width: 992px) {
  .page-banner         { min-height: 300px; }
  .page-banner-title   { font-size: 46px; }
}

@media (max-width: 640px) {
  .page-banner         { min-height: 220px; }
  .page-banner-title   { font-size: 34px; }
  .page-banner-content { padding-bottom: 32px; }
}

/* ═══════════════════════════════════════════════
   ABOUT PAGE
═══════════════════════════════════════════════ */

/* ── Intro Strip (subtext below banner) ── */
.about-intro-strip {
  padding: 56px 0;
  background: var(--surface);
  border-bottom: 1px solid var(--line);
  text-align: center;
}

.about-intro-strip .container {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.about-intro-strip::before {
  content: "";
  display: block;
  width: 48px;
  height: 1px;
  background: var(--champagne, #c9a96e);
  margin: 0 auto 28px;
}

.about-intro-text {
  font-family: "Cormorant Garamond", serif;
  font-size: 26px;
  font-style: italic;
  font-weight: 400;
  color: var(--text);
  max-width: 700px;
  line-height: 1.6;
  margin: 0;
  letter-spacing: 0.01em;
}

.about-intro-strip::after {
  content: "";
  display: block;
  width: 48px;
  height: 1px;
  background: var(--champagne, #c9a96e);
  margin: 28px auto 0;
}

@media (max-width: 640px) {
  .about-intro-strip { padding: 36px 0; }
  .about-intro-text { font-size: 20px; }
  .about-intro-strip::before,
  .about-intro-strip::after { width: 32px; margin-top: 20px; margin-bottom: 20px; }
}

/* ── Hero ── */
.about-hero {
  padding: 80px 0 0;
}

.about-hero-inner {
  padding-bottom: 48px;
}

.about-hero-caption {
  color: var(--teal);
}

.about-hero-heading {
  font-size: 72px;
  line-height: 1.0;
  max-width: 760px;
  margin-bottom: 20px;
}

.about-hero-sub {
  font-size: 18px;
  color: var(--muted);
  max-width: 520px;
  margin-bottom: 0;
  line-height: 1.6;
}

.about-hero-image-wrap {
  position: relative;
  width: 100%;
  height: 480px;
  overflow: hidden;
  border-top: 1px solid var(--line);
}

.about-hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.about-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(22, 22, 22, 0.08), rgba(22, 22, 22, 0.28));
  pointer-events: none;
}

.about-hero-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(145deg, var(--teal-deep), #0a3d3d);
  display: grid;
  place-items: center;
}

.about-hero-placeholder-label {
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(246, 242, 236, 0.5);
  max-width: 420px;
  text-align: center;
  line-height: 1.8;
  padding: 0 24px;
}

/* ── Story ── */
.about-story-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 56px;
  align-items: start;
}

.about-story-text h2 {
  margin-bottom: 24px;
}

.about-story-text p {
  line-height: 1.8;
  margin-bottom: 16px;
}

.about-pull-quote {
  font-family: "Cormorant Garamond", serif;
  font-size: 28px;
  font-style: italic;
  line-height: 1.3;
  color: var(--teal-deep);
  margin: 32px 0 0;
  padding-left: 20px;
  border-left: 2px solid var(--champagne);
}

.about-story-image-col {
  position: sticky;
  top: 120px;
}

.about-story-img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  border: 1px solid var(--line);
}

.about-img-placeholder {
  width: 100%;
  aspect-ratio: 3 / 4;
  border: 1px solid var(--line);
  background: var(--surface);
  display: grid;
  place-items: center;
}

.about-img-placeholder-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  padding: 32px;
  text-align: center;
}

.about-img-placeholder-inner span {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--muted);
  line-height: 1.8;
  max-width: 200px;
}

/* ── Stats Bar ── */
.about-stats-bar {
  background: var(--teal-deep);
  padding: 64px 0;
}

.about-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

.about-stat {
  text-align: center;
  padding: 16px 24px;
  border-right: 1px solid rgba(246, 242, 236, 0.15);
}

.about-stat:last-child {
  border-right: none;
}

.about-stat-number {
  font-family: "Cormorant Garamond", serif;
  font-size: 64px;
  font-weight: 700;
  line-height: 1;
  color: #f6f2ec;
  margin-bottom: 10px;
  letter-spacing: -1px;
}

.about-counter {
  display: inline;
}

.about-stat-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: rgba(246, 242, 236, 0.65);
  margin: 0;
}

/* ── Gallery ── */
/* ── Process Steps Timeline ── */
.about-process-layout {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 64px;
  align-items: start;
}

.about-process-steps {
  min-width: 0;
}

.about-process-row {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 0 32px;
  align-items: start;
  padding: 32px 0;
  border-top: 1px solid var(--line);
}

.about-process-row:last-child {
  border-bottom: 1px solid var(--line);
}

.about-process-number {
  font-family: "Cormorant Garamond", serif;
  font-size: 48px;
  font-weight: 300;
  color: var(--champagne, #c9a96e);
  line-height: 1;
  letter-spacing: -0.02em;
  padding-top: 4px;
}

.about-process-content {
  padding-top: 4px;
}

.about-process-title {
  font-size: 22px;
  margin-bottom: 6px;
}

.about-process-sub {
  margin: 0 0 12px;
  color: var(--teal, #000000);
  letter-spacing: 0.08em;
}

.about-process-desc {
  color: var(--muted);
  line-height: 1.75;
  margin: 0;
}

/* Right image column */
.about-process-image-col {
  position: sticky;
  top: 104px;
}

.about-process-image-col img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  display: block;
}

.about-process-img-placeholder {
  width: 100%;
  aspect-ratio: 3 / 4;
  background: var(--surface);
  border: 1px dashed var(--line);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  color: var(--muted);
  font-size: 13px;
  text-align: center;
  padding: 24px;
}

/* ── Brand Values ── */
.about-values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.about-value-card {
  background: var(--surface);
  padding: 32px 28px;
  position: relative;
}

.about-value-card::before {
  content: '';
  display: block;
  width: 32px;
  height: 2px;
  background: var(--teal);
  margin-bottom: 24px;
}

.about-value-number {
  display: block;
  font-family: "Cormorant Garamond", serif;
  font-size: 52px;
  font-weight: 700;
  color: var(--champagne);
  line-height: 1;
  margin-bottom: 12px;
}

.about-value-title {
  font-size: 20px;
  margin-bottom: 12px;
  color: var(--text);
}

.about-value-desc {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.7;
  margin: 0;
}

/* ── CTA Section ── */
.about-cta-section {
  padding: 96px 0;
  background: var(--text);
}

.about-cta-inner {
  text-align: center;
}

.about-cta-caption {
  color: var(--champagne);
  margin-bottom: 16px;
}

.about-cta-quote {
  font-family: "Cormorant Garamond", serif;
  font-size: 52px;
  font-weight: 700;
  font-style: italic;
  line-height: 1.1;
  color: #f6f2ec;
  max-width: 680px;
  margin: 0 auto 40px;
}

.about-cta-btn {
  background: transparent;
  border: 1px solid rgba(246, 242, 236, 0.6);
  color: #f6f2ec;
}

.about-cta-btn:hover {
  background: rgba(246, 242, 236, 0.1);
  border-color: #f6f2ec;
}

/* ── About Page Responsive ── */
@media (max-width: 992px) {
  .about-hero-heading { font-size: 52px; }
  .about-hero-image-wrap { height: 360px; }
  .about-story-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-story-image-col { position: static; }
  .about-story-img,
  .about-img-placeholder { aspect-ratio: 16 / 9; }
  .about-stats-grid { grid-template-columns: repeat(2, 1fr); }
  .about-stat { border-right: none; border-bottom: none; }
  .about-values-grid { grid-template-columns: repeat(2, 1fr); }
  .about-cta-quote { font-size: 38px; }
}

@media (max-width: 640px) {
  .about-hero { padding: 48px 0 0; }
  .about-hero-heading { font-size: 38px; }
  .about-hero-image-wrap { height: 260px; }

  /* Process section — stack vertically, image above steps, no cropping */
  .about-process-layout {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .about-process-image-col {
    display: block;
    position: static;
    order: -1;
  }
  .about-process-image-col img {
    width: 100%;
    height: auto;
    aspect-ratio: unset;
    object-fit: unset;
    display: block;
  }
  .about-process-img-placeholder {
    width: 100%;
    aspect-ratio: 4 / 3;
  }
  .about-process-row {
    grid-template-columns: 40px 1fr;
    gap: 0 16px;
    padding: 24px 0;
  }
  .about-process-number { font-size: 32px; }
  .about-process-title { font-size: 18px; }

  /* Stats — all 4 in one row on mobile */
  .about-stats-bar { padding: 36px 0; }
  .about-stats-grid { grid-template-columns: repeat(4, 1fr); gap: 0; }
  .about-stat { padding: 8px 4px; border-right: 1px solid rgba(246, 242, 236, 0.15); border-bottom: none; }
  .about-stat:last-child { border-right: none; }
  .about-stat-number { font-size: 26px; letter-spacing: -0.5px; margin-bottom: 6px; }
  .about-stat-label { font-size: 9px; letter-spacing: 0.1em; }

  /* Values */
  .about-values-grid { grid-template-columns: 1fr; }

  /* CTA */
  .about-cta-quote { font-size: 30px; }
  .about-cta-section { padding: 64px 0; }

  /* Story section image natural ratio on mobile */
  .about-story-img,
  .about-img-placeholder { aspect-ratio: 4 / 3; }
}

/* ══════════════════════════════════════════════════════
   BLOG LISTING PAGE
══════════════════════════════════════════════════════ */

.blog-header-section {
  padding-bottom: 0;
}

.section-head--center {
  text-align: center;
}

.section-head--center > div {
  margin: 0 auto;
}

.blog-page-title {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 300;
  letter-spacing: -0.01em;
  margin: 0;
}

/* ── Blog Grid ── */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}

.blog-grid--3 {
  grid-template-columns: repeat(3, 1fr);
}

/* ── Blog Card ── */
.blog-card {
  background: var(--surface);
  border: 1px solid var(--line);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.25s ease, transform 0.25s ease;
}

.blog-card:hover {
  box-shadow: var(--shadow-soft);
  transform: translateY(-3px);
}

.blog-card__image-link {
  display: block;
  overflow: hidden;
  aspect-ratio: 16 / 10;
  background: var(--ivory);
}

.blog-card__image-link img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.blog-card:hover .blog-card__image-link img {
  transform: scale(1.04);
}

.blog-card__placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--ivory) 0%, var(--line) 100%);
}

.blog-card__body {
  padding: 20px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.blog-card__category {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--teal);
  font-weight: 500;
  margin-bottom: 8px;
}

.blog-card__category:hover {
  color: var(--teal-deep);
}

.blog-card__title {
  font-size: 16px;
  font-weight: 500;
  line-height: 1.4;
  margin: 0 0 8px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.blog-card__title a:hover {
  color: var(--teal);
}

.blog-card__excerpt {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.6;
  margin: 0 0 12px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  flex: 1;
}

.blog-card__meta {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 12px;
  color: var(--muted);
  margin-bottom: 12px;
}

.blog-card__read-time {
  opacity: 0.7;
}

.blog-card__read-more {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: var(--teal);
  transition: color 0.2s ease;
  margin-top: auto;
}

.blog-card__read-more:hover {
  color: var(--teal-deep);
}

/* ── Blog Pagination ── */
.blog-pagination {
  margin-top: 48px;
  display: flex;
  justify-content: center;
}

.blog-pagination ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 6px;
}

.blog-pagination li {
  display: inline-flex;
}

.blog-pagination a,
.blog-pagination span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  height: 40px;
  padding: 0 12px;
  font-size: 13px;
  letter-spacing: 0.04em;
  border: 1px solid var(--line);
  background: var(--surface);
  color: var(--muted);
  transition: all 0.2s ease;
}

.blog-pagination a:hover {
  border-color: var(--teal);
  color: var(--teal);
}

.blog-pagination .current {
  background: var(--teal);
  border-color: var(--teal);
  color: #fff;
}

.blog-pagination .prev,
.blog-pagination .next {
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 500;
}

.blog-pagination .dots {
  border: none;
  background: none;
}

.blog-empty {
  text-align: center;
  padding: 80px 0;
  color: var(--muted);
}

/* ══════════════════════════════════════════════════════
   SINGLE BLOG POST
══════════════════════════════════════════════════════ */

/* ── Breadcrumb ── */
.blog-single-breadcrumb {
  padding: 24px 0 0;
}

.breadcrumb {
  font-size: 12px;
  letter-spacing: 0.06em;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.breadcrumb a:hover {
  color: var(--teal);
}

.breadcrumb-sep {
  opacity: 0.4;
}

.breadcrumb-current {
  color: var(--text);
}

/* ── Post Header ── */
.blog-single-header {
  padding: 32px 0 24px;
}

.blog-single-header__inner {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}

.blog-single__category {
  display: inline-block;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--teal);
  font-weight: 500;
  padding: 4px 14px;
  border: 1px solid var(--teal);
  margin-bottom: 16px;
}

.blog-single__category:hover {
  background: var(--teal);
  color: #fff;
}

.blog-single__title {
  font-size: clamp(26px, 4vw, 40px);
  font-weight: 300;
  letter-spacing: -0.01em;
  line-height: 1.25;
  margin: 0 0 16px;
}

.blog-single__meta {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: var(--muted);
}

.meta-dot {
  opacity: 0.4;
}

/* ── Featured Image ── */
.blog-single-hero {
  padding-bottom: 32px;
}

.blog-single__featured-img {
  width: 100%;
  height: auto;
  border: 1px solid var(--line);
}

/* ── Post Content ── */
.blog-single-content__inner {
  max-width: 760px;
  margin: 0 auto;
}

.blog-single-content__inner h2,
.blog-single-content__inner h3,
.blog-single-content__inner h4 {
  margin-top: 32px;
  margin-bottom: 12px;
  font-weight: 500;
}

.blog-single-content__inner p {
  margin-bottom: 18px;
  line-height: 1.8;
  color: var(--text);
}

.blog-single-content__inner img {
  margin: 24px 0;
  border: 1px solid var(--line);
}

.blog-single-content__inner blockquote {
  margin: 28px 0;
  padding: 20px 28px;
  border-left: 3px solid var(--teal);
  background: var(--ivory);
  font-style: italic;
  color: var(--muted);
}

.blog-single-content__inner ul,
.blog-single-content__inner ol {
  padding-left: 24px;
  margin-bottom: 18px;
}

.blog-single-content__inner li {
  margin-bottom: 6px;
  line-height: 1.7;
}

/* ── Tags ── */
.blog-single-tags {
  padding: 12px 0 32px;
}

.blog-tags-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.blog-tag {
  font-size: 12px;
  letter-spacing: 0.04em;
  padding: 5px 14px;
  border: 1px solid var(--line);
  color: var(--muted);
  transition: all 0.2s ease;
}

.blog-tag:hover {
  border-color: var(--teal);
  color: var(--teal);
}

/* ── Post Navigation ── */
.blog-single-nav {
  padding: 24px 0;
  border-top: 1px solid var(--line);
}

.post-nav-links {
  display: flex;
  justify-content: space-between;
  gap: 24px;
}

.post-nav-link {
  display: flex;
  flex-direction: column;
  gap: 4px;
  max-width: 45%;
  transition: color 0.2s ease;
}

.post-nav-link:hover {
  color: var(--teal);
}

.post-nav-link--next {
  text-align: right;
  margin-left: auto;
}

.post-nav-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--muted);
}

.post-nav-title {
  font-size: 14px;
  font-weight: 500;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* ── Related Posts ── */
.blog-related-section {
  border-top: 1px solid var(--line);
}

/* ══════════════════════════════════════════════════════
   BLOG RESPONSIVE
══════════════════════════════════════════════════════ */

@media (max-width: 1024px) {
  .blog-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }
}

@media (max-width: 768px) {
  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  .blog-grid--3 {
    grid-template-columns: repeat(2, 1fr);
  }
  .blog-single__title {
    font-size: 24px;
  }
  .blog-single__meta {
    flex-wrap: wrap;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .blog-grid,
  .blog-grid--3 {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .blog-card__body {
    padding: 16px;
  }
  .blog-pagination a,
  .blog-pagination span {
    min-width: 36px;
    height: 36px;
    font-size: 12px;
    padding: 0 8px;
  }
  .post-nav-links {
    flex-direction: column;
    gap: 20px;
  }
  .post-nav-link,
  .post-nav-link--next {
    max-width: 100%;
    text-align: left;
  }
  .blog-single__featured-img {
    height: auto;
  }
  .blog-single-content__inner blockquote {
    padding: 16px 20px;
  }
}

/* Shipping address toggle - hide by default, show when checkbox checked */
.woocommerce-shipping-fields .shipping_address {
  display: none;
}
.woocommerce-shipping-fields .shipping_address.active {
  display: block;
}
