/* Base */
:root {
  --bg: #fcf7f1;
  --surface: #ffffff;
  --text: #1f1a16;
  --muted: #6e6258;
  --gold: #d6b36a;
  --terracotta: #b75a3a;
  --terracotta-2: #8e3f2b;
  --line: rgba(31, 26, 22, 0.12);
  --radius-lg: 22px;
  --radius-md: 18px;
  --radius-sm: 8px;
  --shadow: 0 12px 30px rgba(80, 52, 36, 0.12);
  --container: 1200px;
  --accent: #7a3b1e;
  --accent-light: #f3e8de;
  --text-muted: #888;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Nunito", "Segoe UI", system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--text);
  background: radial-gradient(circle at 20% 0%, #fff4e8 0%, var(--bg) 55%), var(--bg);
}

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

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

button,
input,
select,
textarea {
  font: inherit;
}

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

.container {
  width: min(var(--container), 100% - 40px);
  margin-inline: auto;
}

@media (min-width: 992px) {
  .container {
    width: min(var(--container), 100% - 96px);
  }
}

h1,
h2,
h3,
h4 {
  margin: 0 0 14px;
  font-family: "Nunito", "Segoe UI", system-ui, sans-serif;
  line-height: 1.15;
}

h1 { font-size: clamp(34px, 5vw, 48px); }
h2 { font-size: clamp(24px, 4vw, 32px); }

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

.small {
  font-size: 14px;
  line-height: 1.57;
}

.section {
  padding: 64px 0;
}

.grid {
  display: grid;
  gap: 20px;
}

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

.section-head-titles {
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 0;
  width: fit-content;
}

.section-head-titles h2 {
  margin-bottom: 0;
}

.section-head > .btn {
  flex-shrink: 0;
  white-space: nowrap;
}

.section-subheading {
  margin: 0;
  font-size: 14px;
  color: var(--muted);
  max-width: 52ch;
}

.section-title-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 16px;
}

.section-title-group h2 {
  margin-bottom: 0;
}

.section-title-group .section-subheading {
  font-size: 15px;
}

.slider-block {
  display: grid;
  grid-template-columns: 42px 1fr 42px;
  gap: 10px;
  align-items: center;
}

.slider-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(260px, 1fr);
  gap: 14px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

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

.slider-track > * {
  scroll-snap-align: start;
}

.card {
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.95), rgba(253, 247, 240, 0.95));
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow);
}

.placeholder,
.img-fill {
  width: 100%;
  aspect-ratio: 4 / 5;
  border-radius: 14px;
  background: linear-gradient(145deg, #f3d8c6 0%, #e8bfa5 45%, #d99a78 100%);
}

.product-thumb-img,
.product-gallery-img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  display: block;
  border-radius: inherit;
}

.product-thumb-link {
  position: relative;
  overflow: hidden;
}

.product-thumb-primary,
.product-thumb-secondary {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 0.55s cubic-bezier(0.4, 0, 0.2, 1),
              transform 0.55s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: opacity, transform;
}

/* Primary sits on top, secondary sits below slightly zoomed-in */
.product-thumb-primary {
  z-index: 2;
  opacity: 1;
  transform: scale(1);
}

.product-thumb-secondary {
  z-index: 1;
  opacity: 1;
  transform: scale(1.08); /* starts zoomed, pulls to normal on hover */
}

@media (hover: hover) and (pointer: fine) {
  /* Primary fades out and scales up as it leaves */
  .product-thumb-link:hover .product-thumb-primary,
  .product-thumb-link:focus-visible .product-thumb-primary {
    opacity: 0;
    transform: scale(1.05);
  }
  /* Secondary zooms in to fill — creates a smooth bloom reveal */
  .product-thumb-link:hover .product-thumb-secondary,
  .product-thumb-link:focus-visible .product-thumb-secondary {
    transform: scale(1);
  }
}

/* Touch devices — JS adds .is-touched on touchstart, removes on touchend */
.product-thumb-link.is-touched .product-thumb-primary {
  opacity: 0;
  transform: scale(1.05);
}
.product-thumb-link.is-touched .product-thumb-secondary {
  transform: scale(1);
}

.badge {
  display: inline-flex;
  align-items: center;
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 12px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border: 1px solid var(--line);
  background: rgba(183, 90, 58, 0.08);
  margin-right: 6px;
}

.badge-out-of-stock {
  background: rgba(120, 120, 120, 0.1);
  border-color: rgba(120, 120, 120, 0.3);
  color: #888;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 999px;
  border: 1px solid transparent;
  padding: 12px 20px;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease;
}

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

.btn:disabled,
.btn[aria-disabled="true"] {
  opacity: 0.5;
  cursor: not-allowed;
  transform: none;
  pointer-events: none;
}

.btn-primary {
  color: #17120c;
  background: linear-gradient(120deg, #e2c179, var(--gold));
}

.btn-secondary {
  color: var(--text);
  border-color: var(--line);
  background: transparent;
}

.btn-tertiary {
  color: var(--gold);
  padding: 0;
  border: 0;
  background: transparent;
}
.btn-tertiary:hover {
  opacity: 0.75;
}

.btn-outline {
  color: var(--gold);
  border: 1.5px solid var(--gold);
  background: transparent;
}

.btn-outline:hover {
  background: rgba(214, 179, 106, 0.1);
}

.input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fffaf5;
  color: var(--text);
  padding: 12px 14px;
}

/* Header */
.topbar {
  background: #f3f1ee;
  border-bottom: 1px solid rgba(40, 28, 21, 0.1);
  padding: 8px 0;
}

.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  position: relative;
}

.topbar-text {
  font-size: 13px;
  color: #65574b;
  letter-spacing: 0.02em;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
  pointer-events: none;
}

.topbar-social {
  display: flex;
  align-items: center;
  gap: 0px;
}

.topbar-social-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  color: #65574b;
  transition: color 0.18s, background 0.18s;
}

.topbar-social-btn:hover {
  color: var(--terracotta);
  background: rgba(183, 90, 58, 0.08);
}

.topbar-social-btn svg {
  width: 22px;
  height: 22px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  backdrop-filter: blur(8px);
  background: rgba(11, 11, 12, 0.95);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 88px;
}

.logo {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
}

.logo-img {
  height: 90px !important;
  width: auto !important;
  display: block;
}

@media (max-width: 991px) {
  .logo-img {
    height: 64px !important;
  }
}

.nav-toggle {
  display: inline-flex;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 10px;
  background: transparent;
  color: #f5f2ee;
  padding: 8px;
}

.main-nav {
  display: none;
}

.main-nav ul,
.icon-nav {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.main-nav {
  margin-inline: auto;
}

.main-nav a,
.mobile-menu a {
  color: #f5f2ee;
}

.dropdown {
  position: relative;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 220px;
  background: #121214;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 12px;
  padding: 8px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: 0.2s;
}

.dropdown:hover .dropdown-menu,
.dropdown:focus-within .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-menu a {
  display: block;
  padding: 8px 10px;
  border-radius: 8px;
}

.dropdown-menu a:hover {
  background: rgba(255, 255, 255, 0.12);
}

.icon-btn {
  width: 36px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 999px;
  color: #f5f2ee;
  background: transparent;
}

.cart-count {
  min-width: 18px;
  height: 18px;
  padding-inline: 5px;
  font-size: 11px;
  border-radius: 999px;
  background: var(--terracotta);
  color: #fff;
  margin-left: -10px;
  margin-top: -16px;
  border: 1px solid rgba(31, 26, 22, 0.12);
}

/* Mobile slide-in drawer */
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  height: 100%;
  width: 280px;
  background: #0b0b0c;
  z-index: 9999;
  padding: 24px 20px;
  overflow-y: auto;
  transform: translateX(-100%);
  transition: transform 0.3s ease;
}

.mobile-menu.open {
  transform: translateX(0);
}

.mobile-menu a {
  display: block;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  color: #f5f2ee;
  font-size: 16px;
  text-decoration: none;
}

.nav-backdrop {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 9998;
}

.nav-backdrop.open {
  display: block;
}

@media (min-width: 992px) {
  .main-nav {
    display: block;
  }
  .main-nav ul {
    gap: 20px;
  }
  .nav-toggle {
    display: none !important;
  }
}

@media (max-width: 1199px) {
  .main-nav ul {
    gap: 12px;
  }
}

/* Hero */
.hero {
  padding: 56px 0 24px;
}

.hero-grid {
  display: grid;
  gap: 24px;
  align-items: center;
}

.hero-copy p {
  max-width: 54ch;
}

.hero-banner {
  padding: 0;
  overflow: hidden;
  background: transparent;
  box-shadow: none;
  border: 0;
}

.hero-banner-media {
  position: relative;
  border-radius: 0;
  overflow: hidden;
  border: 0;
  box-shadow: none;
  background: transparent;
}

.hero-slider {
  position: relative;
  height: clamp(380px, 58vw, 620px);
  overflow: hidden;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  z-index: 0;
  transition: opacity 1s ease;
}

.hero-slide.is-active {
  opacity: 1;
  z-index: 1;
}

.hero-slide picture {
  display: block;
  width: 100%;
  height: 100%;
}

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

.hero-banner-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  background: linear-gradient(90deg, rgba(255, 249, 241, 0.78) 0%, rgba(255, 249, 241, 0.38) 52%, rgba(255, 249, 241, 0.12) 100%);
}

.hero-banner-overlay .hero-copy {
  max-width: 680px;
}

/* ── Hero Text Animations — Clip Reveal ── */
@keyframes hero-clip-reveal {
  from {
    clip-path: inset(100% 0 0 0);
    transform: translateY(18px);
  }
  to {
    clip-path: inset(0% 0 0 0);
    transform: translateY(0);
  }
}

.hero-slide.is-active .hero-copy h1,
.hero-slide.is-active .hero-copy h2,
.hero-slide.is-active .hero-copy p,
.hero-slide.is-active .hero-actions {
  clip-path: inset(100% 0 0 0);
  animation-name: hero-clip-reveal;
  animation-fill-mode: forwards;
  animation-duration: 0.75s;
  animation-timing-function: cubic-bezier(0.16, 1, 0.3, 1);
}

.hero-slide.is-active .hero-copy h1,
.hero-slide.is-active .hero-copy h2 {
  animation-delay: 0.65s;
}

.hero-slide.is-active .hero-copy p {
  animation-delay: 0.85s;
}

.hero-slide.is-active .hero-actions {
  animation-delay: 1.05s;
}

.hero-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  width: 40px;
  height: 40px;
  min-width: 40px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  background: rgba(11, 11, 12, 0.38);
  color: #fff;
  font-size: 22px;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.hero-prev {
  left: 14px;
}

.hero-next {
  right: 14px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.hero-media {
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  padding: 18px;
  background: linear-gradient(120deg, rgba(214, 179, 106, 0.12), rgba(183, 90, 58, 0.12));
}

.wave-divider {
  display: block;
  width: 100%;
  height: 80px;
  margin-top: 18px;
}

@media (min-width: 992px) {
  .hero-grid {
    grid-template-columns: 1.1fr 0.9fr;
  }
}

.page-banner {
  padding: 0;
}

.page-banner-media {
  position: relative;
  border-radius: 0;
  overflow: hidden;
  border: 0;
  box-shadow: none;
}

.page-banner img {
  width: 100%;
  height: clamp(260px, 42vw, 420px);
  object-fit: cover;
}

.page-banner-content {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  background: linear-gradient(90deg, rgba(255, 249, 241, 0.82) 0%, rgba(255, 249, 241, 0.42) 60%, rgba(255, 249, 241, 0.12) 100%);
}

.page-banner-content-terracotta {
  background: linear-gradient(90deg, rgba(142, 63, 43, 0.72) 0%, rgba(183, 90, 58, 0.52) 58%, rgba(183, 90, 58, 0.2) 100%);
}

.page-banner-content-terracotta .hero-copy h1,
.page-banner-content-terracotta .hero-copy p {
  color: #fdf5ef;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.22);
}

/* Components */
.collections {
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.collections-slider-wrap {
  display: grid;
  grid-template-columns: 42px 1fr 42px;
  gap: 10px;
  align-items: center;
}

.collections-slider {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: 350px;
  column-gap: 20px;
  padding: 6px 0;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  background: transparent;
}

.collections-slider::-webkit-scrollbar {
  display: none;
}

.collection-slide {
  position: relative;
  display: block;
  border-radius: 10px;
  overflow: hidden;
  width: 350px;
  height: 240px;
  border: 0;
  outline: 2px solid rgba(255, 255, 255, 0.45);
  outline-offset: -1px;
  scroll-snap-align: start;
}


.collection-slide img {
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: cover;
  display: block;
}

.collection-slide-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
}

.collection-slide h3 {
  position: absolute;
  left: 18px;
  right: auto;
  width: min(80%, 420px);
  bottom: 16px;
  margin: 0;
  color: #fff;
  font-size: 24px;
  text-align: left;
  z-index: 2;
}

.slider-arrow {
  width: 42px;
  height: 42px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: #fff;
  color: #34261d;
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
}

.collection-card {
  padding: 16px;
}

.collection-card .placeholder {
  aspect-ratio: 1 / 1;
  margin-bottom: 12px;
}

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

.products-grid.slider-track {
  grid-template-columns: none;
  grid-auto-flow: column;
  grid-auto-columns: minmax(250px, 300px);
  overflow-x: auto;
  overflow-y: visible;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior-x: contain;
  scrollbar-width: none;
  gap: 14px;
}

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

.products-grid.slider-track > * {
  scroll-snap-align: start;
}

@media (min-width: 768px) {
  .products-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (min-width: 1200px) {
  .products-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

.product-card {
  padding: 14px;
}

.product-card h3 {
  font-size: 18px;
  margin-top: 10px;
}

.price {
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 10px;
}

.price-wrap {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
  gap: 6px;
  margin-bottom: 10px;
}

.price-wrap .price,
.price-original,
.price-sale {
  margin: 0;
  padding: 0;
  line-height: 1;
  align-self: center;
  display: inline-flex;
  align-items: center;
  font-size: inherit;
  white-space: nowrap;
}

.price-original {
  color: #999;
  font-weight: 400;
  font-size: inherit;
  padding-inline: 0 !important;
  text-decoration: line-through;
}

.price-original s,
.price-original del {
  display: inline;
  line-height: 1;
  text-decoration: inherit;
}

.price-sale {
  color: var(--terracotta);
  font-size: inherit;
  padding-inline: 0 !important;
}

.price-save-badge {
  flex-shrink: 0;
}

.price-save-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  align-self: center;
  background: var(--terracotta);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 6px;
  line-height: 1;
  margin: 0;
  white-space: nowrap;
  overflow: hidden;
}

.card-actions {
  display: flex;
  gap: 8px;
  flex-wrap: nowrap;
}

.card-actions .btn {
  white-space: nowrap;
  flex: 1 1 0;
  min-width: 0;
}

.strip {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
}

.strip .card {
  padding: 18px;
}

.testimonials,
.gallery-strip,
.footer-cols {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.gallery-strip.slider-track {
  grid-template-columns: none;
  grid-auto-columns: minmax(220px, 1fr);
  gap: 14px;
}

/* Gallery full page grid */
.gallery-page-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

/* Testimonials slider */
.testimonials.slider-track {
  grid-template-columns: none;
  grid-auto-columns: minmax(280px, 380px);
  gap: 16px;
  align-items: stretch;
}

.testimonial-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 24px;
  min-height: 140px;
}

.testimonial-quote {
  font-style: italic;
  line-height: 1.6;
  margin: 0 0 12px;
}

.testimonial-footer {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 4px;
}

.testimonial-photo {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  border: 2px solid var(--line);
}

.testimonial-author {
  margin: 0;
  color: var(--muted);
}

.gallery-thumb {
  aspect-ratio: 1 / 1;
}

.newsletter {
  padding: 28px;
}

.newsletter-banner {
  width: 100%;
}

.newsletter-banner img {
  width: 100%;
  height: auto;
  display: block;
}

.newsletter-banner-link {
  display: block;
  width: 100%;
  height: 100%;
}

/* Shop */
.shop-layout {
  display: grid;
  gap: 18px;
}

.filters {
  padding: 16px;
}

.filter-group {
  margin-bottom: 14px;
}

.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.chip {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 8px 12px;
  font-size: 14px;
  background: transparent;
  color: var(--text);
}

.chip.active,
.chip:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.pagination {
  display: flex;
  gap: 8px;
  justify-content: center;
  margin-top: 20px;
}

@media (min-width: 992px) {
  .shop-layout {
    grid-template-columns: 280px 1fr;
  }
}

/* Product page */
.product-layout {
  display: grid;
  gap: 20px;
  align-items: start;
}

.product-gallery,
.product-details,
.summary-box {
  padding: 16px;
}

.product-details h1 {
  font-size: clamp(24px, 3vw, 36px);
  line-height: 1.3;
}

.product-tabs-card {
  margin-top: 20px;
  padding: 28px 32px;
  width: 100%;
}

.thumb-row {
  display: flex;
  gap: 8px;
  margin-top: 10px;
}

.thumb {
  width: 64px;
  height: 64px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #efe2d7;
  padding: 0;
  overflow: hidden;
}

.thumb.active {
  border-color: var(--terracotta);
  box-shadow: inset 0 0 0 1px var(--terracotta);
}

/* Product Gallery Slider */
.pg-main-wrap {
  position: relative;
  overflow: hidden;
}

.pg-slides {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
}

.pg-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.35s ease;
  pointer-events: none;
}

.pg-slide.active {
  opacity: 1;
  pointer-events: auto;
}

.pg-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 6px;
}

.pg-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.85);
  border: 1px solid rgba(40,28,21,0.15);
  color: #2c1a0e;
  font-size: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  line-height: 1;
  padding: 0;
  transition: background 0.18s;
}

.pg-arrow:hover {
  background: #fff;
}

.pg-arrow-prev { left: 8px; }
.pg-arrow-next { right: 8px; }

.tabs {
  display: flex;
  gap: 6px;
  margin-bottom: 10px;
}

.tab-btn {
  border: 1px solid var(--line);
  background: transparent;
  color: var(--text);
  border-radius: 999px;
  padding: 8px 12px;
}

.tab-btn.active {
  border-color: var(--gold);
  color: var(--gold);
}

.mobile-sticky-cart {
  position: sticky;
  bottom: 0;
  background: rgba(255, 250, 244, 0.96);
  backdrop-filter: blur(5px);
  border-top: 1px solid var(--line);
  padding: 10px 12px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}

.mobile-sticky-cart .price {
  color: #2c1a0e;
  font-weight: 700;
}

@media (min-width: 992px) {
  .product-layout {
    grid-template-columns: 1fr 1fr;
  }
  .mobile-sticky-cart {
    display: none;
  }
}

.related-products-section .products-grid {
  gap: 16px;
  align-items: start;
}

.related-products-section .product-card {
  background: transparent;
  border: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.related-products-section .product-card .placeholder {
  margin-bottom: 0;
  border-radius: 6px;
}

.related-products-section .product-card h3 {
  font-family: "Nunito", "Segoe UI", system-ui, sans-serif;
  font-size: 15px;
  font-weight: 500;
  margin: 10px 0 6px;
  padding-inline: 14px;
  line-height: 1.35;
  min-height: 40px;
}

.related-products-section .product-card h3 a {
  display: block;
}

.related-products-section .product-card .small {
  margin: 0 0 8px;
  padding-inline: 14px;
  font-size: 13px;
  line-height: 1.45;
}

.related-products-section .badge {
  align-self: flex-start;
  margin-top: 8px;
  margin-left: 14px;
  margin-bottom: 0;
  background: #ebe7df;
  border-color: rgba(40, 28, 21, 0.1);
  color: #6d5c4f;
  font-size: 10px;
}

.related-products-section .price {
  margin: 0;
  padding-inline: 14px;
  color: #31271f;
  font-weight: 700;
  line-height: 1.35;
}

.related-products-section .price-wrap,
.related-products-section .product-card .product-stock-status {
  padding-inline: 14px;
}

.related-products-section .price-wrap .price {
  padding-inline: 0 !important;
}

.related-products-section .card-actions {
  margin-top: auto;
  padding: 12px 14px 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  align-items: stretch;
}

.related-products-section .card-actions .btn {
  width: 100%;
  justify-content: center;
  min-height: 48px;
}

/* Cart, Checkout, Forms */
.cart-layout,
.checkout-layout,
.account-layout,
.contact-layout,
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.cart-item {
  display: grid;
  grid-template-columns: 84px 1fr auto;
  gap: 12px;
  align-items: center;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 14px;
}

.qty {
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 999px;
}

.qty button {
  background: transparent;
  border: 0;
  color: var(--text);
  width: 30px;
  height: 30px;
}

.qty span {
  min-width: 30px;
  text-align: center;
}

.accordion-item {
  border: 1px solid var(--line);
  border-radius: 14px;
  margin-bottom: 10px;
  overflow: hidden;
}

.accordion-btn {
  width: 100%;
  text-align: left;
  border: 0;
  background: #fffaf5;
  color: var(--text);
  padding: 14px;
}

.accordion-content {
  display: none;
  padding: 14px;
  border-top: 1px solid var(--line);
}

.accordion-item.open .accordion-content {
  display: block;
}

@media (min-width: 992px) {
  .cart-layout,
  .checkout-layout,
  .account-layout,
  .contact-layout,
  .about-grid {
    grid-template-columns: 1fr 360px;
  }
}

/* Keep 2-column on all screen sizes — phone matches desktop layout */

/* ── Skeleton Loaders ── */
@keyframes skeleton-shimmer {
  0%   { background-position: -400px 0; }
  100% { background-position:  400px 0; }
}

.skeleton-card {
  background: #f0ebe4;
  border-radius: 10px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.skeleton-block {
  background: linear-gradient(90deg, #e8e0d6 25%, #f0ebe4 50%, #e8e0d6 75%);
  background-size: 800px 100%;
  animation: skeleton-shimmer 1.4s infinite linear;
  border-radius: 6px;
}

.skeleton-img {
  width: 100%;
  aspect-ratio: 3 / 4;
  border-radius: 0;
}

.skeleton-body {
  padding: 12px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.skeleton-title {
  height: 14px;
  width: 70%;
}

.skeleton-sub {
  height: 11px;
  width: 45%;
}

.skeleton-price {
  height: 16px;
  width: 35%;
  margin-top: 4px;
}

.skeleton-btn {
  height: 36px;
  width: 100%;
  margin-top: 8px;
  border-radius: 6px;
}

/* ── Thank You Page ── */
.seraphaire-thankyou {
  max-width: 560px;
  margin: 48px auto;
  padding: 0 16px 48px;
  text-align: center;
}

.seraphaire-thankyou-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: #e8f5e9;
  color: #2e7d32;
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 20px;
}

.seraphaire-thankyou-icon--fail {
  background: #fdecea;
  color: #c62828;
}

.seraphaire-thankyou-title {
  font-size: clamp(22px, 3vw, 28px);
  margin-bottom: 10px;
  color: #2c1a0e;
}

.seraphaire-thankyou-sub {
  font-size: 15px;
  color: #6b5744;
  margin-bottom: 28px;
  line-height: 1.6;
}

.seraphaire-thankyou-box {
  background: #f8f6f2;
  border: 1px solid rgba(40,28,21,0.1);
  border-radius: 12px;
  padding: 20px 24px;
  margin-bottom: 24px;
  text-align: left;
}

.seraphaire-thankyou-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 0;
  border-bottom: 1px solid rgba(40,28,21,0.07);
  font-size: 14px;
  color: #5a4535;
}

.seraphaire-thankyou-row:last-child {
  border-bottom: 0;
}

.seraphaire-thankyou-items {
  background: #f8f6f2;
  border: 1px solid rgba(40,28,21,0.1);
  border-radius: 12px;
  padding: 16px 20px;
  margin-bottom: 28px;
  text-align: left;
}

.seraphaire-thankyou-items h3 {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #957457;
  margin-bottom: 14px;
}

.seraphaire-thankyou-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(40,28,21,0.07);
}

.seraphaire-thankyou-item:last-child {
  border-bottom: 0;
}

.seraphaire-thankyou-item img {
  width: 52px;
  height: 52px;
  object-fit: cover;
  border-radius: 8px;
  flex-shrink: 0;
}

.seraphaire-thankyou-item-info {
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 3px;
}

.seraphaire-thankyou-item-name {
  font-size: 14px;
  font-weight: 500;
  color: #2c1a0e;
}

.seraphaire-thankyou-item-qty {
  font-size: 12px;
  color: #957457;
}

.seraphaire-thankyou-item-total {
  font-size: 14px;
  font-weight: 600;
  color: #2c1a0e;
  flex-shrink: 0;
}

.seraphaire-thankyou-wa-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: #25d366;
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  padding: 14px 28px;
  border-radius: 50px;
  text-decoration: none;
  margin-bottom: 16px;
  transition: background 0.2s ease;
  width: 100%;
}

.seraphaire-thankyou-wa-btn:hover {
  background: #1ebe5d;
  color: #fff;
}

.seraphaire-thankyou-continue {
  display: block;
  font-size: 14px;
  color: #957457;
  text-decoration: underline;
  margin-top: 4px;
}

/* Footer */
.site-footer {
  border-top: 1px solid var(--line);
  margin-top: 50px;
  padding-top: 40px;
  padding-bottom: 26px;
}

.footer-cols h4 {
  margin-bottom: 8px;
}

.footer-cols p {
  margin: 0 0 4px;
}

.footer-cols a {
  color: var(--muted);
}

.social-icons {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 12px;
}

.social-icon-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  min-width: 42px;
  border: 1px solid var(--line);
  color: var(--text);
  line-height: 1;
  transition: color 0.2s, border-color 0.2s;
}

.social-icon-btn svg {
  display: block;
  flex-shrink: 0;
}

.social-icon-btn:hover {
  color: var(--terracotta);
  border-color: var(--terracotta);
}

/* ── Homepage Contact Form ── */
.section-contact-home {
  background: var(--surface);
}

.contact-home-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 48px;
  align-items: start;
}

.contact-home-copy h2 {
  margin-bottom: 12px;
}

.contact-home-copy p {
  color: var(--muted);
  max-width: 38ch;
}

.contact-home-fields {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 14px;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.contact-home-form .form-field:not(:first-child):not(.contact-home-fields .form-field) {
  margin-bottom: 14px;
}

.contact-home-submit {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 4px;
  background: #25d366 !important;
  border-color: #25d366 !important;
  color: #fff !important;
}

.contact-home-submit:hover {
  background: #1ebe5d !important;
  border-color: #1ebe5d !important;
}

.contact-home-note {
  color: var(--muted);
  margin-top: 10px;
}

@media (max-width: 767px) {
  .contact-home-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .contact-home-fields {
    grid-template-columns: 1fr;
  }
}

.footer-bottom {
  margin-top: 18px;
  padding-top: 14px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 14px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

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

.section-marketplaces {
  padding-top: 24px;
  padding-bottom: 24px;
}

.marketplaces-panel {
  padding: 28px;
  border: 1px solid rgba(40, 28, 21, 0.1);
  background: linear-gradient(180deg, #f8f5f0 0%, #f2ede6 100%);
}

.marketplaces-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
  align-items: center;
}

.marketplace-box {
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
  border: none;
  padding: 0;
}

.marketplace-logo-slot {
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  background: none;
  padding: 0;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #6a5a4e;
}

.marketplace-logo-slot img {
  max-height: 48px;
  width: auto;
  object-fit: contain;
}

.marketplace-box img {
  max-height: 48px;
  width: auto;
  object-fit: contain;
}

/* Modal + search */
.overlay {
  position: fixed;
  inset: 0;
  background: rgba(17, 12, 8, 0.35);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
  z-index: 60;
}

.overlay.open {
  display: flex;
}

.modal {
  width: min(680px, 100%);
  background: #fffaf5;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 18px;
}

.modal-close {
  float: right;
  background: transparent;
  border: 0;
  color: var(--text);
  font-size: 24px;
}

.search-results {
  margin-top: 10px;
  max-height: 240px;
  overflow: auto;
}

.tone-1 { background: linear-gradient(140deg,#f3d7c4,#e9c2a8,#d89472); }
.tone-2 { background: linear-gradient(140deg,#f5e2d2,#efc8af,#de9c79); }
.tone-3 { background: linear-gradient(140deg,#f2dccd,#e8bea3,#cf8968); }
.square { aspect-ratio: 1 / 1; }
.map-placeholder { margin-top: 10px; aspect-ratio: 16 / 10; }
.quick-view-grid { grid-template-columns: 120px 1fr; gap: 14px; }
.search-result-item { display: block; padding: 10px; margin-bottom: 8px; }

.filter-toggle { margin-bottom: 12px; }
@media (max-width: 991px) {
  .filters { display: none; }
  .filters.open { display: block; }
}

/* Home Theme: cozy premium reference styling */
.home-theme {
  background: #6b4430;
  color: #27211c;
}

body:not(.home-theme) {
  background: #6b4430;
  color: #27211c;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

body:not(.home-theme) main {
  flex: 1;
}

body:not(.home-theme) .announcement,
body:not(.home-theme) .site-header,
body:not(.home-theme) main,
body:not(.home-theme) .site-footer {
  width: 100%;
  margin-inline: auto;
}

body:not(.home-theme) .announcement {
  background: #f9f4ed;
  border-bottom: 1px solid rgba(40, 28, 21, 0.12);
  color: #56473b;
  font-size: 12px;
}

body:not(.home-theme) .site-header {
  background: rgba(11, 11, 12, 0.95);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

body:not(.home-theme) main,
body:not(.home-theme) .site-footer {
  background: #f3f1ee;
}

body:not(.home-theme) .main-nav a,
body:not(.home-theme) .mobile-menu a {
  color: #f5f2ee;
  font-size: 14px;
}

body:not(.home-theme) .icon-btn {
  border-color: rgba(255, 255, 255, 0.28);
  color: #f5f2ee;
  background: transparent;
}

body:not(.home-theme) .btn-primary {
  background: #5f3a26;
  color: #fff;
}

body:not(.home-theme) .btn-secondary {
  border-color: rgba(40, 28, 21, 0.2);
  color: #4f4034;
  background: #f8f4ee;
}

body:not(.home-theme) .card {
  background: #f8f6f2;
  border: 1px solid rgba(40, 28, 21, 0.08);
  box-shadow: none;
}

body:not(.home-theme) .site-footer {
  margin-top: 0;
  border-top: 1px solid rgba(40, 28, 21, 0.1);
}

body:not(.home-theme) .footer-cols a,
body:not(.home-theme) .footer-bottom {
  color: #65574b;
}

.about-page .page-banner-content-terracotta,
.contact-page .page-banner-content-terracotta {
  background: linear-gradient(90deg, rgba(95, 58, 38, 0.78) 0%, rgba(95, 58, 38, 0.52) 58%, rgba(95, 58, 38, 0.2) 100%);
}

.about-eyebrow {
  display: inline-flex;
  margin-bottom: 10px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #8a6b4f;
}

.about-story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  align-items: center;
}

.about-story-copy {
  padding: 8px 0;
}

.about-story-copy h2,
.about-process-copy h2,
.about-founder-card h2 {
  margin-bottom: 12px;
}

.about-media-stack {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 14px;
  align-items: end;
}

.about-media-large,
.about-media-small,
.about-process-media,
.about-value-thumb {
  overflow: hidden;
  border: 1px solid rgba(40, 28, 21, 0.08);
  background: #e9ddd1;
}

.about-media-large {
  min-height: 340px;
}

.about-media-small {
  min-height: 240px;
}

.about-media-large img,
.about-media-small img,
.about-process-media img,
.about-value-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-process-card {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 24px;
  padding: 24px;
  align-items: center;
  border: 1px solid rgba(40, 28, 21, 0.1);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.88), rgba(245, 239, 231, 0.96));
}

.about-process-media {
  min-height: 320px;
}

.about-process-list {
  display: grid;
  gap: 16px;
  margin-top: 12px;
}

.about-step {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 14px;
  align-items: start;
  padding-top: 14px;
  border-top: 1px solid rgba(40, 28, 21, 0.08);
}

.about-step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: #5f3a26;
  color: #fff;
  font-size: 13px;
  font-weight: 600;
}

.about-step h3 {
  margin-bottom: 6px;
}

.about-founder-card,
.about-founder-image,
.about-value-card {
  padding: 22px;
}

.about-founder-card {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(246, 238, 229, 0.94));
}

.about-founder-image {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 260px;
}

.about-founder-image img {
  width: min(220px, 100%);
  height: auto;
}

.about-values-strip {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.about-value-card {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.about-value-thumb {
  aspect-ratio: 4 / 3;
}

/* about-story-grid and about-process-card columns now set at base — always 2-column */

.home-theme .announcement,
.home-theme .site-header,
.home-theme main,
.home-theme .site-footer {
  width: 100%;
  margin-inline: auto;
}

.home-theme .announcement {
  background: #f9f4ed;
  border-bottom: 1px solid rgba(40, 28, 21, 0.12);
  color: #56473b;
  font-size: 12px;
}

.home-theme .site-header {
  background: rgba(11, 11, 12, 0.95);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.home-theme main,
.home-theme .site-footer {
  background: #f3f1ee;
}

.home-theme .logo-img {
  height: 90px;
}

.home-theme .main-nav a,
.home-theme .mobile-menu a {
  color: #f5f2ee;
  font-size: 14px;
}

.home-theme .icon-btn {
  border-color: rgba(255, 255, 255, 0.28);
  color: #f5f2ee;
  background: transparent;
}

.home-theme .btn-primary {
  background: #5f3a26;
  color: #fff;
}

.home-theme .btn-secondary {
  border-color: rgba(40, 28, 21, 0.2);
  color: #4f4034;
  background: #f8f4ee;
}

.home-theme .hero {
  padding-top: 0;
}

.home-theme .hero-banner {
  padding: 0;
}

.home-theme .hero-banner-media {
  border-radius: 0;
  border: 0;
  box-shadow: none;
}

.home-theme .hero-banner-img {
  height: 100%;
}

.home-theme .hero-banner-overlay {
  background: linear-gradient(90deg, rgba(34, 20, 12, 0.54) 0%, rgba(34, 20, 12, 0.3) 45%, rgba(34, 20, 12, 0.08) 100%);
}

.home-theme .hero-copy h1,
.home-theme .hero-copy p {
  color: #f6efe7;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.home-theme .wave-divider path {
  fill: #f3f1ee;
}

.home-theme h2 {
  font-size: clamp(28px, 3.3vw, 36px);
  letter-spacing: -0.01em;
  color: #2c241d;
}

.home-theme .section {
  padding: 56px 0;
}

.home-theme .card {
  background: #f8f6f2;
  border: 1px solid rgba(40, 28, 21, 0.08);
  box-shadow: none;
}

.home-theme .collection-card {
  padding: 14px;
}

.home-theme .collections-slider-wrap {
  grid-template-columns: 38px 1fr 38px;
}

.home-theme .slider-arrow {
  background: #f3ede6;
  border-color: rgba(40, 28, 21, 0.18);
}

.home-theme .collection-card .placeholder,
.home-theme .product-card .placeholder,
.home-theme .gallery-thumb {
  border-radius: 6px;
}

.home-theme .products-grid {
  gap: 16px;
  align-items: start;
}

.home-theme .product-card {
  background: transparent;
  border: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.home-theme .product-card h3 {
  font-family: "Nunito", "Segoe UI", system-ui, sans-serif;
  font-size: 15px;
  font-weight: 500;
  margin: 10px 0 6px;
  line-height: 1.35;
  min-height: 40px;
}

.home-theme .card-actions {
  margin-top: auto;
  padding-top: 12px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  align-items: stretch;
}

.home-theme .card-actions .btn {
  width: 100%;
  justify-content: center;
  min-height: 48px;
}

.home-theme .section-best-sellers .products-grid {
  margin-bottom: 28px;
}

.home-theme .section-testimonials {
  padding-top: 84px;
}

@media (max-width: 767px) {
  .home-theme .section-testimonials {
    padding-top: 20px !important;
  }
}

.home-theme .badge {
  background: #ebe7df;
  border-color: rgba(40, 28, 21, 0.1);
  color: #6d5c4f;
  font-size: 10px;
  margin-top: 8px;
}

.home-theme .price {
  color: #31271f;
  font-weight: 700;
  margin-bottom: 8px;
}

.home-theme .strip .card,
.home-theme .testimonials .card,
.home-theme .newsletter {
  background: #f8f4ef;
}

.home-theme .section-artisanal-strip {
  background: #5f3a26;
  padding: 28px 0;
}

.home-theme .section-artisanal-strip .strip .card {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.28);
}

.home-theme .section-artisanal-strip h3,
.home-theme .section-artisanal-strip p {
  color: #fff8f2;
}

/* Artisanal strip — 3 cards in a row on mobile */
@media (max-width: 767px) {
  .section-artisanal-strip .strip {
    display: grid !important;
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    gap: 8px !important;
  }

  .section-artisanal-strip .strip .card {
    padding: 10px !important;
  }

  .section-artisanal-strip .strip .card h3 {
    font-size: 11px !important;
    margin-bottom: 4px !important;
    line-height: 1.3 !important;
  }

  .section-artisanal-strip .strip .card p {
    font-size: 10px !important;
    line-height: 1.4 !important;
  }
}

.home-theme .site-footer {
  margin-top: 0;
  border-top: 1px solid rgba(40, 28, 21, 0.1);
}

.home-theme .footer-cols a,
.home-theme .footer-bottom {
  color: #65574b;
}

.shop-page {
  background: #6b4430;
}

.shop-main {
  padding-top: 40px;
}

.shop-hero {
  padding: 30px;
  border: 1px solid rgba(40, 28, 21, 0.1);
  background: linear-gradient(135deg, #f8f1e8 0%, #efe4d7 55%, #f7f3ec 100%);
  margin-bottom: 22px;
}

.shop-eyebrow {
  display: inline-flex;
  margin-bottom: 10px;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #8a6b4f;
}

.shop-hero-copy {
  display: grid;
  gap: 16px;
}

.shop-hero-copy p {
  max-width: 56ch;
}

.shop-hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-content: start;
}

.shop-meta-pill {
  display: inline-flex;
  align-items: center;
  padding: 10px 14px;
  border: 1px solid rgba(40, 28, 21, 0.12);
  background: rgba(255, 255, 255, 0.75);
  font-size: 13px;
  color: #58493d;
}

.shop-category-band {
  margin-bottom: 28px;
}

.shop-category-slider-wrap {
  display: grid;
  grid-template-columns: 42px 1fr 42px;
  gap: 10px;
  align-items: center;
}

.shop-category-grid {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(260px, 320px);
  column-gap: 18px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  padding: 6px 2px;
}

.shop-category-grid::-webkit-scrollbar {
  display: none;
}

.shop-category-card {
  scroll-snap-align: start;
}

.shop-category-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  border: 1px solid rgba(40, 28, 21, 0.1);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(247, 240, 231, 0.96));
  overflow: hidden;
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.shop-category-card:hover,
.shop-category-card:focus-visible {
  transform: translateY(-3px);
  border-color: rgba(183, 90, 58, 0.24);
  box-shadow: 0 16px 30px rgba(80, 52, 36, 0.08);
}

.shop-category-media {
  display: block;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: #ead9ca;
}

.shop-category-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.shop-category-content {
  display: flex;
  flex: 1 1 auto;
  flex-direction: column;
  padding: 18px 18px 20px;
}

.shop-category-kicker {
  display: inline-flex;
  margin-bottom: 14px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #957457;
}

.shop-category-card h2 {
  font-size: clamp(22px, 2vw, 28px);
  margin-bottom: 10px;
}

.shop-category-card p {
  margin: 0;
}

.shop-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 18px;
}

.shop-toolbar h2 {
  margin-bottom: 0;
}

.shop-toolbar-right {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

/* Grid / List view toggle */
.view-toggle {
  display: flex;
  border: 1px solid var(--line);
  border-radius: 4px;
  overflow: hidden;
}

.view-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  background: transparent;
  border: 0;
  color: var(--muted);
  cursor: pointer;
  transition: background 0.15s, color 0.15s;
}

.view-btn + .view-btn {
  border-left: 1px solid var(--line);
}

.view-btn.active {
  background: var(--surface);
  color: var(--text);
}

.view-btn:hover:not(.active) {
  color: var(--terracotta);
  background: rgba(183, 90, 58, 0.06);
}

.shop-page .filter-toggle {
  margin-bottom: 0;
}

/* ── Product card body wrapper ── */
.product-card-body {
  display: flex;
  flex-direction: column;
  flex: 1 1 auto;
  min-width: 0;
}

/* ── List view ── */
.shop-page .products-grid.list-view {
  grid-template-columns: 1fr !important;
  gap: 12px;
}

.shop-page .products-grid.list-view .product-card {
  flex-direction: row !important;
  border: 1px solid var(--line) !important;
  background: linear-gradient(160deg, rgba(255,255,255,0.95), rgba(253,247,240,0.95)) !important;
  min-height: 130px;
  overflow: hidden;
  align-items: stretch;
  padding-left: 12px;
}

.shop-page .products-grid.list-view .product-card .placeholder {
  width: 150px;
  min-width: 150px;
  max-width: 150px;
  height: 150px;
  flex-shrink: 0;
  aspect-ratio: 1 / 1 !important;
  align-self: center;
  margin-bottom: 0;
  border-radius: 0;
  position: relative;
  overflow: hidden;
}

.shop-page .products-grid.list-view .product-card .placeholder .product-thumb-img {
  position: absolute !important;
  inset: 0;
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  border-radius: 0 !important;
}

.shop-page .products-grid.list-view .product-card-body {
  padding: 14px 14px 14px 14px;
  justify-content: space-between;
}

.shop-page .products-grid.list-view .product-card h3 {
  font-size: 16px !important;
  min-height: 0 !important;
  margin: 0 0 4px !important;
  padding-inline: 0 !important;
  line-height: 1.35 !important;
}

.shop-page .products-grid.list-view .product-card .small {
  font-size: 13px !important;
  padding-inline: 0 !important;
  margin-bottom: 6px !important;
}

.shop-page .products-grid.list-view .product-card .price,
.shop-page .products-grid.list-view .product-card .price-wrap {
  padding-inline: 0 !important;
  font-size: 15px !important;
  margin-bottom: 10px !important;
}

.shop-page .products-grid.list-view .product-card .badge {
  align-self: flex-start;
  margin: 0 0 6px 0 !important;
}

.shop-page .products-grid.list-view .card-actions {
  display: flex !important;
  grid-template-columns: none !important;
  gap: 8px !important;
  padding: 0 !important;
  margin-top: 0 !important;
}

.shop-page .products-grid.list-view .card-actions .btn {
  min-height: 38px !important;
  font-size: 13px !important;
  padding: 8px 16px !important;
  width: auto !important;
}

.shop-layout {
  gap: 24px;
  align-items: start;
}

/* ── Shop Pagination ── */
.shop-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}

.pagination-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 38px;
  height: 38px;
  padding: 0 10px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm, 8px);
  background: #fff;
  color: var(--text);
  font-size: 14px;
  font-family: inherit;
  cursor: pointer;
  transition: background 0.18s, border-color 0.18s, color 0.18s;
}

.pagination-btn:hover:not(:disabled):not(.active) {
  background: var(--accent-light, #f3e8de);
  border-color: var(--accent, #7a3b1e);
  color: var(--accent, #7a3b1e);
}

.pagination-btn.active {
  background: var(--accent, #7a3b1e);
  border-color: var(--accent, #7a3b1e);
  color: #fff;
  font-weight: 600;
  cursor: default;
}

.pagination-btn:disabled {
  opacity: 0.35;
  cursor: not-allowed;
}

.pagination-ellipsis {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 32px;
  height: 38px;
  font-size: 14px;
  color: var(--text-muted, #888);
  user-select: none;
}

.shop-page .filters {
  padding: 22px;
  border: 1px solid rgba(40, 28, 21, 0.1);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(246, 240, 232, 0.94));
}

.shop-page .filters h3 {
  margin-bottom: 16px;
}

.shop-page .filter-group label {
  display: inline-block;
  margin-bottom: 8px;
  font-size: 14px;
  font-weight: 600;
  color: #43362c;
}

.shop-results-panel {
  padding: 0;
  border: none;
  background: transparent;
}

.shop-page .products-grid {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
  align-items: start;
}

.shop-page .products-grid > * {
  min-width: 0;
}

.shop-page .product-card {
  padding: 0;
  border: 0;
  background: transparent;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.shop-page .product-card .placeholder {
  margin-bottom: 0;
}

.shop-page .product-card h3 {
  font-family: "Nunito", "Segoe UI", system-ui, sans-serif;
  font-size: 15px;
  font-weight: 500;
  margin: 10px 0 6px;
  padding-inline: 14px;
  line-height: 1.35;
  min-height: 40px;
}

.shop-page .product-card h3 a {
  display: block;
}

.shop-page .product-card .small {
  margin: 0 0 8px;
  padding-inline: 14px;
  font-size: 13px;
  line-height: 1.45;
}

.shop-page .badge {
  align-self: flex-start;
  margin-top: 8px;
  margin-left: 14px;
  margin-bottom: 0;
  background: #ebe7df;
  border-color: rgba(40, 28, 21, 0.1);
  color: #6d5c4f;
  font-size: 10px;
}

.shop-page .price {
  margin: 0;
  padding-inline: 14px;
  color: #31271f;
  font-weight: 700;
  line-height: 1.35;
}

.shop-page .price-wrap,
.shop-page .product-card .product-stock-status {
  padding-inline: 14px;
}

.shop-page .price-wrap .price {
  padding-inline: 0 !important;
}

.shop-page .card-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  margin-top: auto;
  padding: 12px 14px 0;
  align-items: stretch;
}

.shop-page .card-actions .btn {
  width: 100%;
  justify-content: center;
  min-height: 48px;
  padding: 12px 10px;
  font-size: 14px;
}

.catalog-page .products-grid {
  gap: 16px;
  align-items: start;
}

.catalog-page .product-card {
  background: transparent;
  border: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.catalog-page .product-card .placeholder {
  margin-bottom: 0;
  border-radius: 6px;
}

.catalog-page .product-card h3 {
  font-family: "Nunito", "Segoe UI", system-ui, sans-serif;
  font-size: 15px;
  font-weight: 500;
  margin: 10px 0 6px;
  padding-inline: 14px;
  line-height: 1.35;
  min-height: 40px;
}

.catalog-page .product-card h3 a {
  display: block;
}

.catalog-page .product-card .small {
  margin: 0 0 8px;
  padding-inline: 14px;
  font-size: 13px;
  line-height: 1.45;
}

.catalog-page .badge {
  align-self: flex-start;
  margin-top: 8px;
  margin-left: 14px;
  margin-bottom: 0;
  background: #ebe7df;
  border-color: rgba(40, 28, 21, 0.1);
  color: #6d5c4f;
  font-size: 10px;
}

.catalog-page .price {
  margin: 0;
  padding-inline: 14px;
  color: #31271f;
  font-weight: 700;
  line-height: 1.35;
}

.catalog-page .price-wrap,
.catalog-page .product-card .product-stock-status {
  padding-inline: 14px;
}

.catalog-page .price-wrap .price {
  padding-inline: 0 !important;
}

.catalog-page .card-actions {
  margin-top: auto;
  padding: 12px 14px 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  align-items: stretch;
}

.catalog-page .card-actions .btn {
  width: 100%;
  justify-content: center;
  min-height: 48px;
}


/* Mobile menu utils (search, account, cart, shop btn inside drawer) */
/* Mobile Shop submenu dropdown */
.mobile-menu-item-wrap {
  display: flex;
  flex-direction: column;
}

.mobile-menu-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.mobile-menu-row a {
  border-bottom: none !important;
  flex: 1;
}

.mobile-submenu-toggle {
  background: none;
  border: none;
  color: #f5f2ee;
  cursor: pointer;
  padding: 12px 8px;
  display: flex;
  align-items: center;
  transition: transform 0.25s ease;
  flex-shrink: 0;
}

.mobile-submenu-toggle.open {
  transform: rotate(180deg);
}

.mobile-submenu-items {
  display: none;
  padding: 4px 0 8px 16px;
  border-left: 2px solid rgba(255, 255, 255, 0.15);
  margin: 2px 0 6px;
}

.mobile-submenu-items.open {
  display: block;
}

.mobile-child-link {
  font-size: 14px !important;
  padding: 9px 0 !important;
  opacity: 0.85;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06) !important;
}

.mobile-child-link:last-child {
  border-bottom: none !important;
}

.mobile-menu-utils {
  margin-top: 20px;
  padding-top: 16px;
  padding-bottom: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.mobile-menu-icon-btn {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 0;
  color: #f5f2ee;
  font-size: 16px;
  text-decoration: none;
  background: none;
  border: none;
  cursor: pointer;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  width: 100%;
  text-align: left;
}

.mobile-menu-shop-btn {
  display: block;
  width: 100%;
  margin-top: 10px;
  text-align: center;
  justify-content: center;
  box-sizing: border-box;
}

.mobile-menu-shop-btn + .mobile-menu-shop-btn {
  margin-top: 12px;
}

.mobile-menu-shop-btn.btn-outline {
  border: 2px solid var(--gold) !important;
  color: var(--gold) !important;
  background: transparent !important;
  padding: 12px 20px;
}

.mobile-menu-social {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.mobile-menu-social .social-icon-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  min-width: 42px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: #f5f2ee;
  line-height: 1;
}

.mobile-menu-social .social-icon-btn svg {
  display: block;
  flex-shrink: 0;
}

.mobile-menu-social .social-icon-btn:hover {
  border-color: #f5f2ee;
  color: #f5f2ee;
}

@media (max-width: 991px) {
  .icon-nav {
    display: none !important;
  }
}

@media (max-width: 767px) {
  .container {
    width: min(var(--container), 100% - 24px);
  }

  .header-inner {
    min-height: 74px;
    gap: 10px;
    justify-content: space-between;
  }

  .nav-toggle {
    margin-left: auto;
  }

  /* Product sliders — default grid */
  .slider-block {
    display: grid;
    grid-template-columns: 22px 1fr 22px;
    gap: 4px;
    align-items: center;
  }

  .slider-block .slider-arrow {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 22px !important;
    height: 22px !important;
    min-width: 22px !important;
    font-size: 14px !important;
    padding: 0 !important;
    border-radius: 50% !important;
    align-self: center !important;
    margin-top: 0 !important;
  }

  /* Home product sliders — arrows overlap cards, full width for cards */
  .home-theme .slider-block {
    display: block !important;
    position: relative !important;
  }

  .home-theme .slider-block .slider-arrow {
    position: absolute !important;
    top: 40% !important;
    transform: translateY(-50%) !important;
    z-index: 10 !important;
    width: 32px !important;
    height: 32px !important;
    min-width: 32px !important;
    font-size: 16px !important;
    padding: 0 !important;
    border-radius: 50% !important;
  }

  .home-theme .slider-block .slider-arrow:first-child {
    left: 6px !important;
  }

  .home-theme .slider-block .slider-arrow:last-child {
    right: 6px !important;
  }


  .products-grid.slider-track,
  .gallery-strip.slider-track {
    display: flex !important;
    flex-wrap: nowrap !important;
    overflow-x: auto !important;
    overflow-y: hidden !important;
    scroll-snap-type: x mandatory !important;
    gap: 0 !important;
    grid-auto-columns: auto !important;
    overflow: hidden !important;
    gap: 12px !important;
  }

  /* Homepage product slider — 2 cards visible per page */
  .products-grid.slider-track > * {
    flex: 0 0 calc(50% - 6px) !important;
    width: calc(50% - 6px) !important;
    min-width: 0 !important;
    max-width: calc(50% - 6px) !important;
    scroll-snap-align: start !important;
    box-sizing: border-box !important;
  }

  /* Gallery strip keeps narrower cards */
  .gallery-strip.slider-track > * {
    flex: 0 0 calc(50% - 6px) !important;
    width: calc(50% - 6px) !important;
    min-width: 0 !important;
    max-width: calc(50% - 6px) !important;
    scroll-snap-align: start !important;
    box-sizing: border-box !important;
  }

  /* Home slider product cards — match shop 2-col card style */
  .home-theme .slider-block .product-card {
    padding: 0 !important;
  }

  .home-theme .slider-block .product-card .placeholder {
    aspect-ratio: 1 / 1 !important;
  }

  .home-theme .slider-block .product-card-body {
    padding: 5px 6px 6px !important;
  }

  .home-theme .slider-block .product-card h3 {
    font-size: 10px !important;
    line-height: 1.3 !important;
    margin: 3px 0 2px !important;
    padding-inline: 0 !important;
    display: -webkit-box !important;
    -webkit-line-clamp: 2 !important;
    -webkit-box-orient: vertical !important;
    overflow: hidden !important;
  }

  .home-theme .slider-block .product-card .price,
  .home-theme .slider-block .product-card .price-wrap {
    font-size: 9px !important;
    padding-inline: 0 !important;
    margin-bottom: 5px !important;
    gap: 3px !important;
    flex-wrap: nowrap !important;
    align-items: center !important;
    white-space: nowrap !important;
    overflow: hidden !important;
    line-height: 1 !important;
  }

  .home-theme .slider-block .product-card .price-original,
  .home-theme .slider-block .product-card .price-sale {
    line-height: 1 !important;
    align-self: center !important;
    vertical-align: middle !important;
    display: inline-flex !important;
    align-items: center !important;
  }

  .home-theme .slider-block .product-card .price-save-badge {
    font-size: 7px !important;
    padding: 3px 4px !important;
    flex-shrink: 0 !important;
    align-self: center !important;
    line-height: 1 !important;
    margin: 0 !important;
  }

  .home-theme .slider-block .product-card .badge {
    font-size: 8px !important;
    padding: 1px 5px !important;
    margin: 0 0 3px 0 !important;
  }

  .home-theme .slider-block .product-card .small {
    display: none !important;
  }

  .home-theme .slider-block .card-actions {
    gap: 3px !important;
    padding: 0 !important;
  }

  .home-theme .slider-block .card-actions .btn {
    min-height: 26px !important;
    font-size: 9px !important;
    padding: 3px 4px !important;
    line-height: 1.2 !important;
  }

  .slider-block .card-actions {
    flex-direction: column !important;
    gap: 4px !important;
    margin-top: 6px !important;
  }

  .slider-block .card-actions .btn {
    font-size: 11px !important;
    padding: 6px 8px !important;
    width: 100% !important;
    text-align: center !important;
    letter-spacing: 0 !important;
    min-height: 32px !important;
  }

  /* Testimonials slider — keep as horizontal slider on mobile */
  .testimonials-slider-block {
    display: grid !important;
    grid-template-columns: 32px 1fr 32px !important;
    gap: 6px !important;
    align-items: center !important;
  }

  .testimonials-slider-block .slider-arrow {
    display: flex !important;
    align-self: center !important;
    justify-content: center !important;
    align-items: center !important;
    width: 32px !important;
    min-width: 32px !important;
    height: 32px !important;
    font-size: 18px;
    padding: 0 !important;
  }

  .testimonials.slider-track {
    grid-auto-columns: min(85vw, 320px) !important;
    gap: 12px !important;
  }

  .testimonial-card {
    padding: 16px;
    min-height: 120px;
  }

  .testimonial-quote {
    font-size: 13px;
  }

  .collections-slider-wrap {
    display: block !important;
    position: relative !important;
  }

  /* Collections slider arrows — overlap cards */
  .collections-slider-wrap .slider-arrow {
    position: absolute !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
    z-index: 10 !important;
    width: 28px !important;
    height: 28px !important;
    min-width: 28px !important;
    font-size: 16px !important;
    padding: 0 !important;
    border-radius: 50% !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
  }

  .collections-slider-wrap .slider-arrow:first-child {
    left: 6px !important;
  }

  .collections-slider-wrap .slider-arrow:last-child {
    right: 6px !important;
  }

  .collections-slider {
    display: flex !important;
    flex-wrap: nowrap !important;
    overflow-x: auto !important;
    overflow-y: hidden !important;
    scroll-snap-type: x mandatory !important;
    scrollbar-width: none !important;
    gap: 8px !important;
    width: 100% !important;
  }

  .collections-slider::-webkit-scrollbar {
    display: none !important;
  }

  /* Each collection card = exactly 50% of track → 2 per page, full width */
  .collections-slider > * {
    flex: 0 0 calc(50% - 4px) !important;
    width: calc(50% - 4px) !important;
    min-width: 0 !important;
    scroll-snap-align: start !important;
    box-sizing: border-box !important;
  }

  /* Hero nav — move to bottom corners on mobile */
  .hero-nav {
    top: auto !important;
    bottom: 14px !important;
    transform: none !important;
    width: 32px !important;
    height: 32px !important;
    min-width: 32px !important;
    font-size: 16px !important;
  }

  .hero-prev {
    left: 14px !important;
  }

  .hero-next {
    right: 14px !important;
  }

  .collection-slide {
    width: auto !important;
    height: auto !important;
    min-width: 0 !important;
    min-height: 80px !important;
    aspect-ratio: 3 / 2 !important;
  }

  .collection-slide h3 {
    font-size: 11px !important;
    left: 8px !important;
    bottom: 6px !important;
    width: 90% !important;
    line-height: 1.2 !important;
  }

  /* Product card title — all contexts */
  .product-card h3,
  .home-theme .product-card h3,
  .shop-page .product-card h3,
  .catalog-page .product-card h3 {
    font-size: 11px !important;
    min-height: 0 !important;
    margin: 5px 0 3px !important;
    line-height: 1.3 !important;
  }

  /* Shop/catalog card inner padding — reduce for 3-column layout */
  .shop-page .product-card h3,
  .catalog-page .product-card h3 {
    padding-inline: 8px !important;
  }

  .shop-page .product-card .small,
  .catalog-page .product-card .small {
    font-size: 10px !important;
    padding-inline: 8px !important;
    margin-bottom: 3px !important;
  }

  .shop-page .price,
  .catalog-page .price {
    padding-inline: 8px !important;
    font-size: 11px !important;
  }

  .shop-page .price-wrap,
  .catalog-page .price-wrap,
  .shop-page .product-card .product-stock-status,
  .catalog-page .product-card .product-stock-status {
    padding-inline: 8px !important;
  }

  .shop-page .price-wrap,
  .catalog-page .price-wrap {
    padding-inline: 8px !important;
    gap: 4px !important;
    font-size: 11px !important;
    flex-wrap: nowrap !important;
    align-items: center !important;
  }

  .shop-page .price-wrap .price,
  .catalog-page .price-wrap .price {
    padding-inline: 0 !important;
  }

  .shop-page .badge,
  .catalog-page .badge {
    margin-left: 8px !important;
    font-size: 9px !important;
    padding: 2px 6px !important;
  }

  /* Card actions — compact on mobile */
  .home-theme .card-actions .btn,
  .shop-page .card-actions .btn,
  .catalog-page .card-actions .btn,
  .card-actions .btn {
    min-height: 32px !important;
    padding: 6px 4px !important;
    font-size: 10px !important;
    line-height: 1.2 !important;
    white-space: normal !important;
    word-break: break-word !important;
    text-align: center !important;
    overflow: visible !important;
  }

  .home-theme .card-actions,
  .shop-page .card-actions,
  .catalog-page .card-actions {
    gap: 4px !important;
    padding: 6px 8px 0 !important;
  }

  /* Shop page — 2 column product grid on mobile */
  .shop-page .products-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }

  /* ── Grid view — compact card ── */
  .shop-page .products-grid:not(.list-view) .product-card .placeholder {
    aspect-ratio: 1 / 1 !important;
  }

  .shop-page .products-grid:not(.list-view) .product-card-body {
    padding: 5px 6px 6px !important;
  }

  .shop-page .products-grid:not(.list-view) .product-card h3 {
    font-size: 10px !important;
    margin: 3px 0 2px !important;
    padding-inline: 0 !important;
    line-height: 1.3 !important;
    display: -webkit-box !important;
    -webkit-line-clamp: 2 !important;
    -webkit-box-orient: vertical !important;
    overflow: hidden !important;
  }

  .shop-page .products-grid:not(.list-view) .product-card .small {
    display: none !important;
  }

  .shop-page .products-grid:not(.list-view) .product-card .price,
  .shop-page .products-grid:not(.list-view) .product-card .price-wrap {
    font-size: 10px !important;
    padding-inline: 0 !important;
    margin-bottom: 5px !important;
    gap: 3px !important;
  }

  .shop-page .products-grid:not(.list-view) .product-card .badge {
    font-size: 8px !important;
    padding: 1px 5px !important;
    margin: 0 0 3px 0 !important;
  }

  .shop-page .products-grid:not(.list-view) .card-actions {
    gap: 3px !important;
    padding: 0 !important;
  }

  .shop-page .products-grid:not(.list-view) .card-actions .btn {
    min-height: 26px !important;
    font-size: 9px !important;
    padding: 3px 4px !important;
    line-height: 1.2 !important;
  }

  /* ── List view — compact card ── */
  .shop-page .products-grid.list-view .product-card {
    min-height: 80px !important;
  }

  .shop-page .products-grid.list-view .product-card .placeholder {
    width: 100px !important;
    min-width: 100px !important;
    max-width: 100px !important;
    height: 100px !important;
    aspect-ratio: 1 / 1 !important;
    align-self: center !important;
  }

  .shop-page .products-grid.list-view .product-card-body {
    padding: 6px 8px !important;
    gap: 2px !important;
  }

  .shop-page .products-grid.list-view .product-card h3 {
    font-size: 11px !important;
    margin: 0 0 2px !important;
    display: -webkit-box !important;
    -webkit-line-clamp: 2 !important;
    -webkit-box-orient: vertical !important;
    overflow: hidden !important;
  }

  .shop-page .products-grid.list-view .product-card .small {
    display: none !important;
  }

  .shop-page .products-grid.list-view .product-card .price,
  .shop-page .products-grid.list-view .product-card .price-wrap {
    font-size: 10px !important;
    margin-bottom: 4px !important;
  }

  .shop-page .products-grid.list-view .product-card .badge {
    font-size: 8px !important;
    padding: 1px 5px !important;
    margin: 0 0 3px 0 !important;
  }

  .shop-page .products-grid.list-view .card-actions {
    gap: 4px !important;
    padding: 0 !important;
    margin-top: 2px !important;
  }

  .shop-page .products-grid.list-view .card-actions .btn {
    min-height: 26px !important;
    font-size: 9px !important;
    padding: 3px 8px !important;
  }

  /* Shop layout — stack sidebar above products */
  .shop-layout {
    grid-template-columns: 1fr;
  }

  /* Marketplace — 2-col on mobile (from 3-col) */
  .marketplaces-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 10px !important;
  }

  /* Shop category slider — tighter cards on mobile */
  .shop-category-grid {
    grid-auto-columns: minmax(200px, 260px) !important;
    column-gap: 12px !important;
  }

  .shop-category-slider-wrap {
    grid-template-columns: 32px 1fr 32px !important;
    gap: 6px !important;
  }

  .shop-category-content {
    padding: 8px 10px 10px !important;
  }

  .shop-category-kicker {
    font-size: 9px !important;
    margin-bottom: 5px !important;
    letter-spacing: 0.08em !important;
  }

  .shop-category-card h2 {
    font-size: 12px !important;
    margin-bottom: 4px !important;
    line-height: 1.2 !important;
  }

  .shop-category-card p {
    font-size: 10px !important;
    line-height: 1.3 !important;
  }

  /* Footer — compact on mobile */
  .site-footer {
    margin-top: 28px;
    padding-top: 22px;
    padding-bottom: 16px;
  }

  .footer-cols {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px 12px;
  }

  .footer-cols section {
    min-width: 0;
  }

  .footer-cols h4 {
    font-size: 12px;
    margin-bottom: 5px;
    letter-spacing: 0.04em;
  }

  .footer-cols p {
    margin: 0 0 3px;
  }

  .footer-cols a,
  .footer-cols p {
    font-size: 11px;
    line-height: 1.4;
  }

  .footer-cols .social-icons {
    gap: 6px;
    margin-bottom: 8px;
  }

  .footer-cols .social-icon-btn {
    width: 32px;
    height: 32px;
    min-width: 32px;
  }

  .footer-cols .social-icon-btn svg {
    width: 14px;
    height: 14px;
  }

  .footer-bottom {
    margin-top: 12px;
    padding-top: 10px;
    font-size: 11px;
    gap: 6px;
  }

  /* ── About page — single column on mobile ── */
  .about-story-grid {
    grid-template-columns: 1fr !important;
    gap: 16px !important;
  }

  .about-process-card {
    grid-template-columns: 1fr !important;
    gap: 16px !important;
    padding: 16px !important;
  }

  .about-media-stack {
    grid-template-columns: 1fr !important;
    gap: 10px !important;
  }

  .about-values-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 12px !important;
  }

  .about-story-copy h2,
  .about-process-copy h2,
  .about-founder-card h2 {
    font-size: 14px !important;
    margin-bottom: 6px !important;
  }

  .about-story-copy p,
  .about-process-copy p,
  .about-founder-card p,
  .about-story-copy .small,
  .about-founder-card .small {
    font-size: 10px !important;
    line-height: 1.4 !important;
  }

  .about-eyebrow {
    font-size: 9px !important;
  }

  .about-media-large {
    min-height: 120px !important;
  }

  .about-media-small {
    min-height: 80px !important;
  }

  .about-process-media {
    min-height: 120px !important;
  }

  .about-step {
    grid-template-columns: 32px 1fr !important;
    gap: 8px !important;
    padding-top: 8px !important;
  }

  .about-step-number {
    width: 28px !important;
    height: 28px !important;
    font-size: 10px !important;
  }

  .about-step h3 {
    font-size: 11px !important;
    margin-bottom: 3px !important;
  }

  .about-step p {
    font-size: 10px !important;
  }

  .about-founder-card,
  .about-founder-image,
  .about-value-card {
    padding: 10px !important;
  }

  .about-founder-image {
    min-height: 120px !important;
  }

  .about-values-strip {
    gap: 8px !important;
  }

  .about-value-card h3 {
    font-size: 11px !important;
  }

  .about-value-card p {
    font-size: 10px !important;
  }

  /* ── Cart / Checkout / Account — single column on mobile ── */
  .cart-layout,
  .checkout-layout,
  .account-layout {
    grid-template-columns: 1fr !important;
    gap: 20px !important;
  }

  /* Contact page — stack form above info on mobile */
  .contact-layout {
    grid-template-columns: 1fr !important;
    gap: 16px !important;
  }

  .cart-item {
    grid-template-columns: 54px 1fr auto !important;
    gap: 6px !important;
    padding: 8px !important;
  }

  /* ── Product Detail Page — single column on mobile ── */
  .product-layout {
    grid-template-columns: 1fr !important;
    gap: 16px !important;
    align-items: start;
  }

  .product-gallery,
  .product-details {
    padding: 14px;
  }

  .product-details h1 {
    font-size: clamp(18px, 5vw, 26px) !important;
    line-height: 1.3;
    margin-bottom: 8px;
  }

  .product-details .badge {
    font-size: 11px !important;
    padding: 3px 8px !important;
    margin-bottom: 6px;
  }

  .product-details > .small {
    font-size: 12px !important;
    margin-bottom: 6px;
  }

  .product-details .price-wrap {
    gap: 6px;
    flex-wrap: nowrap;
    align-items: center;
    margin-bottom: 10px;
  }

  .product-details .price {
    font-size: 16px !important;
    margin-bottom: 0;
    line-height: 1;
  }

  .product-details .price-sale,
  .shop-page .price-sale,
  .catalog-page .price-sale {
    color: #7a3b1e !important;
    font-weight: 700 !important;
  }

  .product-details .price-original,
  .shop-page .price-original,
  .catalog-page .price-original {
    color: #888 !important;
  }

  .product-details .price-save-badge,
  .shop-page .price-save-badge,
  .catalog-page .price-save-badge,
  .home-theme .price-save-badge {
    font-size: 0.58rem !important;
    padding: 4px 6px !important;
    white-space: nowrap;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    vertical-align: middle !important;
    align-self: center !important;
    line-height: 1 !important;
    border-radius: 4px !important;
  }

  .product-details label {
    font-size: 13px;
    margin-top: 8px;
    margin-bottom: 4px;
    display: block;
  }

  .product-details select,
  .product-details .input {
    font-size: 14px;
    padding: 8px 10px;
    min-height: 40px;
  }

  .product-details .hero-actions {
    gap: 8px;
    flex-wrap: wrap;
    margin-top: 12px;
  }

  .product-details .hero-actions .btn {
    font-size: 13px !important;
    padding: 10px 14px !important;
    min-height: 42px !important;
    flex: 1 1 0;
  }

  .thumb-row {
    gap: 6px;
    margin-top: 10px;
    flex-wrap: wrap;
  }

  .thumb {
    width: 52px;
    height: 52px;
  }

  /* Product tabs */
  .product-tabs-card {
    padding: 12px 14px;
    margin-top: 10px;
  }

  .tabs {
    gap: 4px;
    flex-wrap: nowrap !important;
    overflow-x: auto;
    scrollbar-width: none;
  }

  .tabs::-webkit-scrollbar {
    display: none;
  }

  .tab-btn {
    font-size: 10px;
    padding: 4px 8px;
    white-space: nowrap;
    flex-shrink: 0;
  }

  /* Related products — compact cards on mobile */
  .related-products-section .product-card h3 {
    font-size: 11px !important;
    min-height: 0 !important;
    padding-inline: 8px !important;
    margin: 5px 0 3px !important;
    line-height: 1.3 !important;
  }

  .related-products-section .product-card .small {
    font-size: 10px !important;
    padding-inline: 8px !important;
  }

  .related-products-section .price {
    font-size: 11px !important;
    padding-inline: 8px !important;
  }

  .related-products-section .badge {
    font-size: 9px !important;
    margin-left: 8px !important;
    padding: 2px 5px !important;
  }

  .related-products-section .card-actions {
    padding: 6px 8px 0 !important;
    gap: 4px !important;
  }

  .related-products-section .card-actions .btn {
    min-height: 32px !important;
    font-size: 10px !important;
    padding: 6px 4px !important;
  }
}

/* ── Very small phones (< 480px) — prevent layouts from being impossibly cramped ── */
@media (max-width: 479px) {
  /* Cart / Checkout / Account: 2-col at ~375px = 160px each (too cramped) → stack */
  .cart-layout,
  .checkout-layout,
  .account-layout {
    grid-template-columns: 1fr !important;
  }

  /* Cart item: restore to normal single-row at very small screens */
  .cart-item {
    grid-template-columns: 60px 1fr auto !important;
  }
}

/* Sharp Corner Override */
:root {
  --radius-lg: 0px;
  --radius-md: 0px;
  --radius-sm: 0px;
}

.btn,
.btn-primary,
.btn-secondary,
.btn-tertiary,
.card,
.placeholder,
.img-fill,
.collection-slide,
.dropdown-menu,
.dropdown-menu a,
.icon-btn,
.nav-toggle,
.input,
select,
textarea,
.badge,
.chip,
.accordion-item,
.thumb,
.qty,
.slider-arrow,
.modal,
.cart-item {
  border-radius: 0 !important;
}

/* ── Cart "New in store" / Cross-sells — always show as 3-column grid ── */

/* WooCommerce Blocks product grid (wc-block-grid) */
.wc-block-grid__products {
  display: grid !important;
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  gap: 10px !important;
}

/* Classic shortcode cross-sells */
.cross-sells ul.products,
.woocommerce-page .cross-sells ul.products {
  display: grid !important;
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  gap: 10px !important;
  padding: 0 !important;
  list-style: none !important;
}

/* Compact product cards inside cart cross-sells / new-in-store */
.wc-block-grid__product,
.cross-sells ul.products li.product {
  font-size: 11px;
}

.wc-block-grid__product-title,
.cross-sells ul.products li.product .woocommerce-loop-product__title {
  font-size: 11px !important;
  line-height: 1.3;
}

.wc-block-grid__product-price,
.cross-sells ul.products li.product .price {
  font-size: 11px !important;
}

/* ─────────────────────────────────────────────
   SUBCATEGORY CARD GRID (taxonomy-product_cat — parent term)
   ───────────────────────────────────────────── */
.subcat-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

@media (min-width: 768px) {
  .subcat-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
  }
}

@media (min-width: 1200px) {
  .subcat-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 24px;
  }
}

.subcat-card:only-child {
  max-width: 340px;
}

.subcat-card {
  padding: 0;
  overflow: hidden;
  transition: box-shadow 0.25s ease, transform 0.25s ease;
}

.subcat-card:hover {
  box-shadow: 0 8px 32px rgba(40, 28, 21, 0.12);
  transform: translateY(-2px);
}

.subcat-card-thumb {
  display: block;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: var(--bg-warm, #fdf7f0);
}

.subcat-card-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
}

.subcat-card:hover .subcat-card-thumb img {
  transform: scale(1.05);
}

.subcat-card-no-img {
  display: block;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #f3ede6, #e8d9cc);
}

.subcat-card-body {
  padding: 8px 10px 12px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.subcat-card-body h3 {
  font-size: 13px;
  margin: 0;
  line-height: 1.2;
}

.subcat-card-body h3 a {
  color: var(--dark, #281c15);
  text-decoration: none;
}

.subcat-card-body h3 a:hover {
  color: var(--terracotta, #c1602a);
}

.subcat-card-body .small {
  display: none;
}

.subcat-card-body .btn {
  margin-top: 4px;
  align-self: flex-start;
  font-size: 11px;
  padding: 5px 10px;
}

/* Desktop — restore full sizing */
@media (min-width: 768px) {
  .subcat-card-body {
    padding: 14px 16px 18px;
    gap: 8px;
  }
  .subcat-card-body h3 {
    font-size: 16px;
  }
  .subcat-card-body .small {
    display: block;
    color: var(--muted, #7a6058);
    font-size: 13px;
    line-height: 1.5;
    margin: 0;
  }
  .subcat-card-body .btn {
    font-size: 13px;
    padding: 8px 16px;
    margin-top: 6px;
  }
  .subcat-card-thumb {
    aspect-ratio: 4 / 3;
  }
}

/* ─────────────────────────────────────────────
   WOOCOMMERCE MY ACCOUNT — FULL PAGE LAYOUT
   ───────────────────────────────────────────── */

.seraphaire-account-layout {
  display: flex;
  gap: 28px;
  align-items: flex-start;
}

/* ── Sidebar nav card ── */
.seraphaire-account-sidebar {
  width: 200px;
  flex-shrink: 0;
}

.seraphaire-account-sidebar .woocommerce-MyAccount-navigation {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 10px;
  overflow: hidden;
  width: 100%;
}

.seraphaire-account-sidebar .woocommerce-MyAccount-navigation ul {
  list-style: none !important;
  margin: 0 !important;
  padding: 0 !important;
}

.seraphaire-account-sidebar .woocommerce-MyAccount-navigation ul li {
  border-bottom: 1px solid var(--line);
  float: none !important;
  width: 100% !important;
}

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

.seraphaire-account-sidebar .woocommerce-MyAccount-navigation ul li a {
  display: block !important;
  padding: 13px 16px !important;
  font-size: 14px !important;
  color: var(--dark, #281c15) !important;
  text-decoration: none !important;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  transition: background 0.18s, color 0.18s;
}

.seraphaire-account-sidebar .woocommerce-MyAccount-navigation ul li a:hover {
  background: rgba(193,96,42,0.06) !important;
  color: var(--terracotta, #c1602a) !important;
}

.seraphaire-account-sidebar .woocommerce-MyAccount-navigation ul li.is-active a {
  background: var(--terracotta, #c1602a) !important;
  color: #fff !important;
  font-weight: 600;
}

.seraphaire-account-sidebar .woocommerce-MyAccount-navigation ul li.woocommerce-MyAccount-navigation-link--customer-logout a {
  color: #b04040 !important;
}

/* ── Content area takes remaining space ── */
.seraphaire-account-main {
  flex: 1;
  min-width: 0;
}

/* ── Content card ── */
.seraphaire-account-main .woocommerce-MyAccount-content {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 28px 30px;
}

.seraphaire-account-main .woocommerce-MyAccount-content h2,
.seraphaire-account-main .woocommerce-MyAccount-content h3 {
  margin-top: 0;
}

.seraphaire-account-main .woocommerce-MyAccount-content > p {
  margin-bottom: 20px;
  color: var(--muted, #7a6058);
  font-size: 14px;
}

/* Mobile */
@media (max-width: 767px) {
  .seraphaire-account-layout {
    flex-direction: column;
  }
  .seraphaire-account-sidebar {
    width: 100%;
  }
}

/* ─────────────────────────────────────────────
   WOOCOMMERCE MY ACCOUNT — ADDRESSES
   ───────────────────────────────────────────── */

/* Kill WooCommerce floats on address wrapper */
.woocommerce-Addresses.col2-set::before,
.woocommerce-Addresses.col2-set::after {
  display: none !important;
}

.woocommerce-Addresses.col2-set {
  display: grid !important;
  grid-template-columns: 1fr 1fr !important;
  gap: 20px !important;
  float: none !important;
  width: 100% !important;
  overflow: visible !important;
}

/* Kill float on each address column */
.woocommerce-Address.u-column1,
.woocommerce-Address.u-column2 {
  float: none !important;
  width: 100% !important;
  padding: 0 !important;
  margin: 0 !important;
  border: 1px solid var(--line) !important;
  border-radius: 10px !important;
  padding: 20px 22px 24px !important;
  box-sizing: border-box !important;
  background: var(--bg-warm, #fdf7f0) !important;
}

/* Title row: heading left, edit link right */
.woocommerce-Address-title.title {
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  gap: 8px;
  padding-bottom: 12px !important;
  margin-bottom: 14px !important;
  border-bottom: 1px solid var(--line) !important;
}

.woocommerce-Address-title h2 {
  margin: 0 !important;
  font-size: 17px !important;
  font-weight: 700 !important;
  line-height: 1.2 !important;
}

.woocommerce-Address-title a.edit {
  font-size: 13px !important;
  color: var(--terracotta, #c1602a) !important;
  text-decoration: none !important;
  white-space: nowrap !important;
  flex-shrink: 0;
}

.woocommerce-Address-title a.edit:hover {
  text-decoration: underline !important;
}

/* Address text */
.woocommerce-Address address {
  font-style: normal !important;
  font-size: 14px !important;
  line-height: 1.8 !important;
  color: var(--dark, #281c15) !important;
  margin: 0 !important;
}

/* Mobile */
@media (max-width: 767px) {
  .woocommerce-Addresses.col2-set {
    grid-template-columns: 1fr !important;
  }
}

/* Tablet Slider Corrections (768px–991px only — NOT mobile) */
@media (min-width: 768px) and (max-width: 991px) {
  .slider-block {
    grid-template-columns: 36px 1fr 36px !important;
    gap: 8px;
  }

  .collections-slider-wrap {
    grid-template-columns: 36px 1fr 36px !important;
    gap: 8px;
  }

  .slider-arrow,
  .slider-block .slider-arrow {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    font-size: 20px;
    min-width: 34px;
    line-height: 1;
  }
}

/* ─────────────────────────────────────────────
   WOOCOMMERCE CART TABLE — MOBILE RESPONSIVE
   Make the table display as stacked cards on mobile
   ───────────────────────────────────────────── */
@media (max-width: 767px) {
  /* Make each row a block so it stacks vertically */
  .woocommerce-cart-form .shop_table,
  .woocommerce-cart-form .shop_table thead,
  .woocommerce-cart-form .shop_table tbody,
  .woocommerce-cart-form .shop_table tr,
  .woocommerce-cart-form .shop_table td {
    display: block !important;
    width: 100% !important;
  }

  /* Hide the desktop table header */
  .woocommerce-cart-form .shop_table thead {
    display: none !important;
  }

  /* Each cart item row = card */
  .woocommerce-cart-form .shop_table tbody tr.cart_item {
    display: grid !important;
    grid-template-columns: 80px 1fr !important;
    grid-template-rows: auto auto auto auto !important;
    gap: 6px 10px !important;
    padding: 14px 0 !important;
    border-bottom: 1px solid var(--line, rgba(40,28,21,0.1)) !important;
    margin-bottom: 6px !important;
  }

  /* Product thumbnail — spans 2 rows vertically */
  .woocommerce-cart-form .shop_table td.product-thumbnail {
    grid-column: 1 !important;
    grid-row: 1 / 3 !important;
    width: 80px !important;
    padding: 0 !important;
  }

  .woocommerce-cart-form .shop_table td.product-thumbnail img {
    width: 80px !important;
    height: 80px !important;
    object-fit: cover !important;
  }

  /* Remove button — top right corner */
  .woocommerce-cart-form .shop_table td.product-remove {
    grid-column: 2 !important;
    grid-row: 1 !important;
    text-align: right !important;
    padding: 0 !important;
  }

  /* Product name */
  .woocommerce-cart-form .shop_table td.product-name {
    grid-column: 2 !important;
    grid-row: 2 !important;
    padding: 0 !important;
    font-size: 14px !important;
  }

  /* Price + quantity + subtotal — show inline using data-title labels */
  .woocommerce-cart-form .shop_table td.product-price,
  .woocommerce-cart-form .shop_table td.product-quantity,
  .woocommerce-cart-form .shop_table td.product-subtotal {
    grid-column: 1 / -1 !important;
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    padding: 4px 0 !important;
    font-size: 13px !important;
  }

  /* Show data-title as a label prefix */
  .woocommerce-cart-form .shop_table td.product-price::before,
  .woocommerce-cart-form .shop_table td.product-quantity::before,
  .woocommerce-cart-form .shop_table td.product-subtotal::before {
    content: attr(data-title) ": " !important;
    font-weight: 600 !important;
    font-size: 12px !important;
    color: var(--muted, #7a6058) !important;
    text-transform: uppercase !important;
    letter-spacing: 0.04em !important;
  }

  /* Actions row (coupon + update cart) */
  .woocommerce-cart-form .shop_table td.actions {
    display: block !important;
    padding: 14px 0 0 !important;
  }

  .woocommerce-cart-form .shop_table td.actions .coupon {
    display: flex !important;
    gap: 8px !important;
    flex-wrap: wrap !important;
    margin-bottom: 10px !important;
  }

  .woocommerce-cart-form .shop_table td.actions .coupon input {
    flex: 1 !important;
    min-width: 0 !important;
    font-size: 14px !important;
    padding: 8px 10px !important;
  }

  .woocommerce-cart-form .shop_table td.actions button[name="update_cart"] {
    width: 100% !important;
    font-size: 14px !important;
    padding: 10px !important;
  }

  /* Cart totals — full width below the table */
  .cart-collaterals {
    width: 100% !important;
  }

  .cart_totals {
    width: 100% !important;
    float: none !important;
  }
}

/* Proceed to Checkout button */
.wc-proceed-to-checkout {
  padding: 0 !important;
  margin-top: 16px;
}

.wc-proceed-to-checkout a,
.wc-proceed-to-checkout a.checkout-button,
.wc-proceed-to-checkout .checkout-button,
.wc-proceed-to-checkout a.button,
a.checkout-button {
  display: block !important;
  width: 100% !important;
  text-align: center !important;
  background: linear-gradient(120deg, #e2c179, var(--gold)) !important;
  color: #17120c !important;
  font-family: "Nunito", sans-serif !important;
  font-weight: 700 !important;
  font-size: 1rem !important;
  padding: 14px 24px !important;
  border-radius: 999px !important;
  border: none !important;
  cursor: pointer !important;
  text-decoration: none !important;
  transition: transform 0.2s ease, opacity 0.2s ease !important;
  box-shadow: 0 4px 16px rgba(214, 179, 106, 0.35) !important;
  box-sizing: border-box !important;
}

.wc-proceed-to-checkout a:hover,
.wc-proceed-to-checkout a.checkout-button:hover,
.wc-proceed-to-checkout .checkout-button:hover,
a.checkout-button:hover {
  transform: translateY(-2px) !important;
  opacity: 0.92 !important;
  color: #17120c !important;
}

/* WooCommerce Block Cart — Proceed to Checkout */
.wp-block-woocommerce-proceed-to-checkout-block,
.wc-block-cart__submit-container {
  padding: 0 !important;
  margin-top: 16px !important;
}

.wc-block-cart__submit-button,
.wp-block-woocommerce-proceed-to-checkout-block a,
.wp-block-woocommerce-proceed-to-checkout-block .wp-element-button {
  display: block !important;
  width: 100% !important;
  text-align: center !important;
  background: linear-gradient(120deg, #e2c179, var(--gold)) !important;
  color: #17120c !important;
  font-family: "Nunito", sans-serif !important;
  font-weight: 700 !important;
  font-size: 1rem !important;
  padding: 14px 24px !important;
  border-radius: 999px !important;
  border: none !important;
  cursor: pointer !important;
  text-decoration: none !important;
  box-shadow: 0 4px 16px rgba(214, 179, 106, 0.35) !important;
  transition: transform 0.2s ease, opacity 0.2s ease !important;
  box-sizing: border-box !important;
}

.wc-block-cart__submit-button:hover,
.wp-block-woocommerce-proceed-to-checkout-block a:hover,
.wp-block-woocommerce-proceed-to-checkout-block .wp-element-button:hover {
  transform: translateY(-2px) !important;
  opacity: 0.92 !important;
  color: #17120c !important;
}


/* ═══════════════════════════════════════════════════
   INTRO TEXT STRIP
   ═══════════════════════════════════════════════════ */

.intro-strip {
  padding-top: 48px;
  padding-bottom: 48px;
  text-align: center;
  background: #fcf7f1;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.section-collections-bg {
  background: linear-gradient(135deg, #f0e9df 0%, #ece2d6 50%, #f3ede5 100%);
  border-bottom: 1px solid var(--line);
}

.intro-strip-inner {
  display: flex;
  justify-content: center;
}

.intro-strip-copy {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
}

.intro-eyebrow {
  display: inline-flex;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--terracotta);
}

.intro-strip-copy h2 {
  margin-bottom: 0;
  font-size: clamp(24px, 3vw, 34px);
}

.intro-strip-copy p {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.7;
  width: 100%;
}


/* ═══════════════════════════════════════════════════
   BLOG — Listing Page
   ═══════════════════════════════════════════════════ */

/* Filter pills bar */
.blog-filter-bar {
  padding: 32px 0 0;
}

.blog-filter-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.blog-filter-pill {
  cursor: pointer;
  font-size: 12px;
  padding: 6px 16px;
  text-decoration: none;
  transition: background 0.18s, border-color 0.18s, color 0.18s;
}

.blog-filter-pill:hover,
.blog-filter-pill.active {
  background: var(--terracotta);
  border-color: var(--terracotta);
  color: #fff;
}

/* Featured post */
.blog-featured-section {
  padding: 32px 0 0;
}

.blog-featured {
  display: grid;
  grid-template-columns: 1fr 1fr;
  overflow: hidden;
  text-decoration: none;
  color: var(--text);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.blog-featured:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 44px rgba(80, 52, 36, 0.18);
}

.blog-featured-media {
  overflow: hidden;
  aspect-ratio: 4 / 3;
}

.blog-featured-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.55s cubic-bezier(0.4, 0, 0.2, 1);
}

.blog-featured:hover .blog-featured-media img {
  transform: scale(1.04);
}

.blog-featured-body {
  padding: 40px 44px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  justify-content: center;
}

.blog-featured-body h2 {
  font-size: clamp(22px, 2.4vw, 30px);
  margin-bottom: 0;
  line-height: 1.25;
}

.blog-featured-body > p {
  margin: 0;
  color: var(--muted);
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.blog-featured-cta {
  align-self: flex-start;
  margin-top: 4px;
}

/* Posts grid */
.blog-grid-section {
  padding: 32px 0 0;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
}

/* Blog card */
.blog-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  text-decoration: none;
  color: var(--text);
  border-radius: var(--radius-md);
  background: var(--surface);
  border: 1px solid var(--line);
  box-shadow: 0 4px 16px rgba(80,52,36,0.07);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 36px rgba(80, 52, 36, 0.13);
}

.blog-card-media {
  overflow: hidden;
  aspect-ratio: 16 / 10;
  background: #ead9ca;
  flex-shrink: 0;
}

.blog-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.55s cubic-bezier(0.4, 0, 0.2, 1);
}

.blog-card:hover .blog-card-media img {
  transform: scale(1.05);
}

.blog-card-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(145deg, #f3d8c6 0%, #e8bfa5 45%, #d99a78 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(80,52,36,0.3);
}

.blog-card-body {
  display: flex;
  flex-direction: column;
  flex: 1 1 auto;
  padding: 22px 24px 24px;
  gap: 10px;
}

.blog-card-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}

.blog-read-time {
  font-size: 12px;
  color: var(--muted);
}

.blog-card-body h3 {
  font-size: clamp(15px, 1.3vw, 18px);
  font-weight: 700;
  margin: 0;
  line-height: 1.35;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

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

.blog-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
  padding-top: 12px;
  border-top: 1px solid var(--line);
}

.blog-card-date {
  font-size: 12px;
  color: var(--muted);
}

.blog-read-more {
  font-size: 13px;
  font-weight: 700;
  padding: 0;
}

/* Blog meta (date · read time) */
.blog-meta {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: var(--muted);
}

.blog-meta-dot {
  opacity: 0.4;
}

/* Empty state */
.blog-empty {
  color: var(--muted);
  font-size: 16px;
  text-align: center;
  padding: 64px 0;
}

/* Pagination */
.blog-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 40px 0;
}

.blog-page-info {
  font-size: 14px;
  color: var(--muted);
}

.blog-page-btn {
  font-size: 14px;
  padding: 10px 22px;
}

/* No-banner fallback heading */
.blog-no-banner {
  text-align: center;
  padding-bottom: 0;
}

.blog-subtext {
  color: var(--muted);
  max-width: 56ch;
  margin-inline: auto;
}


/* ═══════════════════════════════════════════════════
   BLOG — Single Post Page
   ═══════════════════════════════════════════════════ */

/* Post hero */
.post-hero {
  position: relative;
  min-height: clamp(320px, 50vw, 540px);
  display: flex;
  align-items: flex-end;
}

.post-hero-media {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

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

.post-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(20, 14, 10, 0.85) 0%,
    rgba(20, 14, 10, 0.44) 48%,
    rgba(20, 14, 10, 0.12) 100%
  );
}

.post-hero-content {
  position: relative;
  z-index: 2;
  padding-top: 80px;
  padding-bottom: 52px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  max-width: 800px;
}

.post-hero-content h1 {
  color: #fdf5ef;
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.32);
  margin-bottom: 0;
}

.post-hero-content .blog-meta {
  color: rgba(253, 245, 239, 0.72);
}

.post-hero-badge {
  background: rgba(183, 90, 58, 0.82);
  border-color: rgba(183, 90, 58, 0.4);
  color: #fff;
  text-decoration: none;
  align-self: flex-start;
  transition: background 0.18s;
}

.post-hero-badge:hover {
  background: var(--terracotta);
}

/* Post layout wrapper */
.post-layout {
  display: flex;
  flex-direction: column;
  gap: 36px;
  padding-top: 52px;
  padding-bottom: 52px;
  max-width: 800px;
  margin-inline: auto;
}

/* Breadcrumb */
.post-breadcrumb {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px;
  font-size: 13px;
  color: var(--muted);
}

.post-breadcrumb a {
  color: var(--muted);
  text-decoration: none;
  transition: color 0.15s;
}

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

.post-breadcrumb-sep {
  opacity: 0.5;
}

/* Post prose content */
.post-content {
  font-size: 16px;
  line-height: 1.85;
  color: var(--text);
}

.post-content h2,
.post-content h3,
.post-content h4 {
  font-family: "Nunito", "Segoe UI", system-ui, sans-serif;
  margin-top: 40px;
  margin-bottom: 14px;
  line-height: 1.2;
}

.post-content h2 { font-size: clamp(22px, 2.8vw, 28px); }
.post-content h3 { font-size: clamp(18px, 2.2vw, 22px); }
.post-content h4 { font-size: 18px; }

.post-content p { margin: 0 0 20px; }

.post-content a {
  color: var(--terracotta);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.post-content a:hover {
  color: var(--terracotta-2);
}

.post-content img {
  border-radius: var(--radius-md);
  margin: 28px 0;
  width: 100%;
  height: auto;
}

.post-content blockquote {
  margin: 32px 0;
  padding: 22px 28px;
  border-left: 4px solid var(--gold);
  background: var(--accent-light);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  font-style: italic;
  color: var(--accent);
  font-size: 18px;
  line-height: 1.65;
}

.post-content blockquote p { margin: 0; }

.post-content ul,
.post-content ol {
  padding-left: 22px;
  margin: 0 0 20px;
}

.post-content li { margin-bottom: 8px; }

.post-content hr {
  border: 0;
  border-top: 1px solid var(--line);
  margin: 40px 0;
}

/* Share bar */
.share-bar {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  padding: 20px 24px;
  background: var(--accent-light);
  border-radius: var(--radius-md);
  border: 1px solid var(--line);
}

.share-label {
  font-size: 12px;
  font-weight: 700;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-right: 4px;
}

.share-btn {
  font-size: 13px;
  padding: 8px 16px;
  gap: 6px;
}

/* Author box */
.author-box {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  padding: 26px 30px;
}

.author-avatar {
  width: 64px !important;
  height: 64px !important;
  border-radius: 50% !important;
  flex-shrink: 0;
  object-fit: cover;
}

.author-name {
  margin: 0 0 5px;
  font-weight: 700;
  font-family: "Nunito", "Segoe UI", system-ui, sans-serif;
  font-size: 17px;
}

.author-info p {
  margin: 0;
  color: var(--muted);
}

/* Back to blog link */
.post-back-link {
  padding-bottom: 4px;
}

/* Related posts section */
.related-blog-section {
  background: var(--accent-light);
  border-top: 1px solid var(--line);
}


/* ── Blog Responsive ── */
@media (max-width: 991px) {
  .blog-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .blog-featured {
    grid-template-columns: 1fr;
  }

  .blog-featured-media {
    aspect-ratio: 16 / 9;
  }

  .blog-featured-body {
    padding: 28px 32px;
  }

  .post-layout {
    max-width: 100%;
  }
}

@media (max-width: 767px) {
  .blog-grid {
    grid-template-columns: 1fr;
  }

  .blog-featured-body {
    padding: 22px 24px;
  }

  .post-hero {
    min-height: clamp(280px, 72vw, 400px);
  }

  .post-hero-content {
    padding-top: 60px;
    padding-bottom: 36px;
  }

  .post-layout {
    padding-top: 36px;
    padding-bottom: 36px;
    gap: 24px;
  }

  .author-box {
    flex-direction: column;
    gap: 12px;
  }

  .share-bar {
    gap: 8px;
    padding: 16px 18px;
  }

  .blog-pagination {
    flex-wrap: wrap;
  }
}

/* =============================
   WHATSAPP POPUP
   ============================= */

.popup-overlay {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(31, 26, 22, 0.55);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.popup-overlay.is-open {
  opacity: 1;
  pointer-events: all;
}

.popup-box {
  position: relative;
  background: var(--surface);
  border-radius: var(--radius-lg);
  box-shadow: 0 24px 64px rgba(80, 52, 36, 0.22);
  max-width: 780px;
  width: calc(100% - 32px);
  max-height: 90vh;
  overflow-y: auto;
  display: flex;
  flex-direction: row;
  transform: translateY(24px);
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

.popup-overlay.is-open .popup-box {
  transform: translateY(0);
}

.popup-close {
  position: absolute;
  top: 12px;
  right: 12px;
  background: #ffffff;
  border: none;
  font-size: 1.4rem;
  line-height: 1;
  color: var(--text);
  cursor: pointer;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(0,0,0,0.18);
  transition: background 0.18s, color 0.18s;
  z-index: 2;
}

.popup-close:hover {
  background: var(--accent-light);
  color: var(--text);
}

.popup-image {
  flex: 0 0 42%;
  min-height: 300px;
  overflow: hidden;
  border-radius: var(--radius-lg) 0 0 var(--radius-lg);
}

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

.popup-body {
  flex: 1 1 0;
  padding: 44px 36px 36px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.popup-body h3 {
  font-size: clamp(1.25rem, 2.8vw, 1.65rem);
  font-weight: 800;
  margin: 0 0 10px;
  color: var(--text);
  line-height: 1.25;
}

.popup-body > p {
  font-size: 0.92rem;
  color: var(--muted);
  margin: 0 0 24px;
  line-height: 1.6;
}

.popup-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.popup-input-wrap {
  display: flex;
  align-items: center;
  border: 1.5px solid var(--line);
  border-radius: var(--radius-sm);
  overflow: hidden;
  background: var(--bg);
  transition: border-color 0.18s;
}

.popup-input-wrap:focus-within {
  border-color: var(--gold);
}

.popup-input-prefix {
  padding: 0 12px;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--muted);
  background: var(--accent-light);
  height: 100%;
  display: flex;
  align-items: center;
  border-right: 1.5px solid var(--line);
  white-space: nowrap;
  min-height: 46px;
}

.popup-input {
  flex: 1;
  border: none !important;
  background: transparent !important;
  border-radius: 0 !important;
  padding: 12px 14px;
  font-size: 0.95rem;
  color: var(--text);
  outline: none;
}

.popup-input::placeholder {
  color: var(--muted);
  opacity: 0.7;
}

.popup-submit {
  width: 100%;
  justify-content: center;
  font-size: 0.95rem;
  padding: 13px 20px;
}

.popup-error {
  color: var(--terracotta);
  font-size: 0.82rem;
  margin: 0;
  min-height: 1em;
}

.popup-note {
  color: var(--muted);
  font-size: 0.8rem;
  margin: 4px 0 0;
  opacity: 0.8;
}

.popup-success {
  text-align: center;
  padding: 24px 0;
}

.popup-success p {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text);
  margin: 0;
}

/* No-image layout (body only) */
.popup-box:not(:has(.popup-image)) .popup-body {
  padding: 52px 44px 44px;
  max-width: 460px;
  margin: 0 auto;
}

/* Responsive */
@media (max-width: 640px) {
  .popup-box {
    flex-direction: column;
    border-radius: var(--radius-md);
    max-height: 95vh;
  }

  .popup-image {
    flex: 0 0 180px;
    min-height: 180px;
    border-radius: var(--radius-md) var(--radius-md) 0 0;
  }

  .popup-body {
    padding: 32px 24px 28px;
  }

  .popup-box:not(:has(.popup-image)) .popup-body {
    padding: 48px 24px 32px;
  }
}


/* ═══════════════════════════════════════════════════
   ABOUT PAGE — REDESIGNED
   ═══════════════════════════════════════════════════ */

.section-no-bottom-pad { padding-bottom: 0; }
.video-unavailable { text-align: center; padding: 2rem; color: var(--muted); }

/* Shared about utilities */
.about-section-heading {
  font-size: clamp(24px, 4vw, 32px);
  font-weight: 700;
  color: var(--text);
  margin: 0 0 10px;
  line-height: 1.15;
}

.about-section-subheading {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--gold);
  margin: 0 0 28px;
}

.about-heading-center {
  text-align: center;
  margin-bottom: 40px;
}

.about-eyebrow {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 10px;
}

.about-section-intro {
  margin-bottom: 32px;
}

/* Rich-text prose */
.about-prose {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--muted);
}

.about-prose p { margin: 0 0 1em; }
.about-prose p:last-child { margin-bottom: 0; }
.about-prose strong { color: var(--text); }
.about-prose a { color: var(--gold); text-decoration: underline; }

/* ── Section 2: Our Story ───────────────────────── */
.about-story-section {
  background: var(--surface);
}

.about-story-image {
  width: 100%;
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: 36px;
}

.about-story-image img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  display: block;
}

.about-story-body {
  width: 100%;
}

/* ── Section 3: Process ─────────────────────────── */
.about-process-section {
  background: #faf6f0;
}

.about-process-section > .container > .about-section-heading {
  margin-bottom: 32px;
}

.about-process-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  background: var(--surface);
}

.about-process-img {
  position: relative;
  min-height: 420px;
}

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

.about-process-copy {
  padding: 44px 40px;
}

.about-process-copy h3 {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--text);
  margin: 0 0 28px;
}

.about-steps-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.about-step-item {
  display: flex;
  gap: 18px;
  align-items: flex-start;
}

.about-step-num {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, #e2c179, var(--gold));
  color: #17120c;
  font-size: 0.85rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
}

.about-step-body h4 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text);
  margin: 0 0 4px;
}

.about-step-body p {
  font-size: 0.9rem;
  color: var(--muted);
  margin: 0;
  line-height: 1.6;
}

/* ── Section 4: Clay to Crafted ─────────────────── */
.about-clay-section {
  background: var(--surface);
}

.about-clay-inner {
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
}

.about-clay-inner .about-section-heading {
  margin-bottom: 20px;
}

.about-clay-body {
  margin: 0 auto;
}

/* ── Section 5: Video ───────────────────────────── */
.about-video-section {
  background: var(--text);
  line-height: 0;
}

.about-video-embed {
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
}

.about-video-embed iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}

.about-video-wrap {
  width: 100%;
}

.about-video-player {
  width: 100%;
  height: auto;
  display: block;
  max-height: 75vh;
  object-fit: cover;
}

/* ── Section 6: Founder ─────────────────────────── */
.about-founder-section {
  background: #faf6f0;
}

.about-founder-grid {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 60px;
  align-items: center;
}

.about-founder-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
}

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

.about-founder-copy .about-section-heading {
  margin-bottom: 20px;
}

/* ── Section 7: Reviews ─────────────────────────── */
.about-reviews-section {
  background: var(--surface);
}

.about-reviews-track {
  scroll-snap-type: x mandatory;
}

.about-review-card {
  flex: 0 0 300px;
  scroll-snap-align: start;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.about-review-stars {
  display: flex;
  gap: 3px;
}

.about-star {
  font-size: 1.1rem;
  color: var(--line);
}

.about-star.filled {
  color: var(--gold);
}

.about-review-text {
  font-size: 0.9rem;
  line-height: 1.65;
  color: var(--muted);
  margin: 0;
  flex: 1;
}

.about-review-author {
  display: flex;
  align-items: center;
  gap: 12px;
  border-top: 1px solid var(--line);
  padding-top: 14px;
}

.about-reviewer-photo {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}

.about-reviewer-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, #e2c179, var(--gold));
  color: #17120c;
  font-weight: 800;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.about-review-meta {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.about-review-meta strong {
  font-size: 0.9rem;
  color: var(--text);
}

.about-review-date {
  font-size: 0.78rem;
  color: var(--muted);
}

/* ── Section 8: Community Form ──────────────────── */
.about-community-section {
  background: linear-gradient(135deg, var(--accent) 0%, #5c2a14 100%);
  padding: 80px 0;
}

.about-community-heading {
  font-size: clamp(24px, 4vw, 32px);
  font-weight: 700;
  color: var(--gold);
  text-align: center;
  margin: 0 0 40px;
  line-height: 1.15;
}

.about-community-form {
  max-width: 720px;
  margin: 0 auto;
}

.about-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}

.about-form-row--half {
  grid-template-columns: 1fr;
  max-width: 340px;
}

.about-form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.about-form-group label {
  font-size: 0.85rem;
  font-weight: 700;
  color: rgba(255,255,255,0.85);
  letter-spacing: 0.03em;
}

.about-form-group .required {
  color: var(--gold);
}

.about-community-form .input {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.2);
  color: #fff;
  border-radius: var(--radius-sm);
  padding: 12px 14px;
  font-family: "Nunito", sans-serif;
  font-size: 0.95rem;
  transition: border-color 0.2s, background 0.2s;
}

.about-community-form .input::placeholder {
  color: rgba(255,255,255,0.4);
}

.about-community-form .input:focus {
  outline: none;
  border-color: var(--gold);
  background: rgba(255,255,255,0.12);
}

.about-form-error {
  font-size: 0.88rem;
  color: #ffb4a0;
  min-height: 20px;
  margin-bottom: 8px;
}

.about-form-submit {
  margin-top: 8px;
  padding: 14px 40px;
  font-size: 1rem;
  background: #25D366 !important;
  color: #fff !important;
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.35) !important;
}

.about-form-submit:hover {
  background: #1ebe5d !important;
  opacity: 1 !important;
}

.about-form-success {
  margin-top: 20px;
  padding: 20px 24px;
  background: rgba(255,255,255,0.1);
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255,255,255,0.25);
  color: #fff;
  text-align: center;
  font-weight: 600;
}

/* ── About page responsive ──────────────────────── */
@media (max-width: 900px) {
  .about-process-card {
    grid-template-columns: 1fr;
  }

  .about-process-img {
    min-height: 260px;
    max-height: 340px;
  }

  .about-process-copy {
    padding: 32px 28px;
  }

  .about-founder-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .about-founder-img img {
    aspect-ratio: 4 / 3;
  }
}

@media (max-width: 640px) {
  .about-story-image img {
    height: 240px;
  }

  .about-form-row {
    grid-template-columns: 1fr;
  }

  .about-form-row--half {
    max-width: 100%;
  }

  .about-review-card {
    flex: 0 0 260px;
  }

  .about-reviews-scroll-wrap {
    padding: 0 20px 20px;
  }

  .about-community-section {
    padding: 56px 0;
  }

  .about-process-img {
    min-height: 220px;
  }
}

/* ── Product Stock Status ──────────────────────────────────── */
.product-stock-status {
  display: flex !important;
  align-items: center;
  gap: 6px;
  font-size: 0.78rem;
  font-weight: 500;
  margin: 6px 0 4px;
  visibility: visible !important;
}

.stock-dot {
  display: inline-block !important;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  flex-shrink: 0;
}

.product-stock-instock .stock-dot {
  background: #22c55e !important;
  box-shadow: 0 0 0 3px rgba(34, 197, 94, 0.2);
}

.product-stock-instock {
  color: #15803d !important;
}

.stock-dot--backorder {
  background: #f59e0b !important;
  box-shadow: 0 0 0 3px rgba(245, 158, 11, 0.2);
}

.product-stock-onbackorder {
  color: #b45309 !important;
}

.stock-dot--out {
  background: #ef4444 !important;
  box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.2);
}

.product-stock-outofstock {
  color: #b91c1c !important;
}

/* ═══════════════════════════════════════════════════
   MOBILE FIXES — comprehensive phone-view audit fixes
   ═══════════════════════════════════════════════════ */

/* ── 1. Subcategory grid: 2-col on tablet, 1-col on small phone ── */
@media (max-width: 767px) {
  .subcat-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 12px !important;
  }
}
@media (max-width: 479px) {
  .subcat-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 10px !important;
  }
}

/* ── 2. WooCommerce block grid + cross-sells: responsive columns ── */
@media (max-width: 767px) {
  .wc-block-grid__products {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }
  .cross-sells ul.products,
  .woocommerce-page .cross-sells ul.products {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }
}
@media (max-width: 479px) {
  .wc-block-grid__products {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }
  .cross-sells ul.products,
  .woocommerce-page .cross-sells ul.products {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }
}

/* ── 3. Footer: 2-col grid on small phones ── */
@media (max-width: 479px) {
  .footer-cols {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 20px 12px !important;
  }
}

/* ── 4. Mobile sticky cart: add bottom padding so it doesn't cover content ── */
@media (max-width: 991px) {
  main[data-product-page] {
    padding-bottom: 72px;
  }
}

/* ── Price row alignment: all product cards, all pages, mobile ── */
@media (max-width: 767px) {
  .price-wrap {
    flex-wrap: nowrap !important;
    align-items: center !important;
    gap: 3px !important;
    line-height: 1 !important;
    overflow: hidden !important;
  }

  .price-wrap .price,
  .price-original,
  .price-sale {
    line-height: 1 !important;
    align-self: center !important;
    display: inline-flex !important;
    align-items: center !important;
    white-space: nowrap !important;
    margin: 0 !important;
  }

  .price-save-badge {
    align-self: center !important;
    line-height: 1 !important;
    margin: 0 !important;
    flex-shrink: 0 !important;
  }
}

/* ── Section subheading: taper on mobile ── */
@media (max-width: 767px) {
  .home-theme .section-head {
    position: relative !important;
    flex-wrap: nowrap !important;
    align-items: flex-start !important;
  }

  .home-theme .section-head .section-head-titles {
    width: 100% !important;
    flex: 1 1 100% !important;
    min-width: 0 !important;
  }

  .home-theme .section-head > .btn {
    position: absolute !important;
    top: 0 !important;
    right: 0 !important;
    flex-shrink: 0 !important;
  }

  .section-subheading {
    max-width: 100% !important;
    text-wrap: auto !important;
    display: -webkit-box !important;
    -webkit-line-clamp: 2 !important;
    -webkit-box-orient: vertical !important;
    overflow: hidden !important;
  }
}

/* ── Topbar mobile: social left, text right, one line ── */
@media (max-width: 767px) {
  .topbar-text {
    position: static !important;
    transform: none !important;
    font-size: 12px !important;
    white-space: nowrap !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
    text-align: right !important;
    flex: 1 !important;
    min-width: 0 !important;
  }
}

/* ── 5. Touch targets: icon buttons + topbar social min 44px tap area ── */
.icon-btn {
  min-width: 44px;
  min-height: 44px;
}
.topbar-social-btn {
  min-width: 28px;
  min-height: 28px;
}

/* ── 6. Slider arrows: larger touch area via padding on mobile ── */
@media (max-width: 767px) {
  .slider-block {
    grid-template-columns: 36px 1fr 36px !important;
  }
  .slider-block .slider-arrow {
    width: 36px !important;
    height: 36px !important;
    min-width: 36px !important;
    min-height: 36px !important;
    font-size: 16px !important;
  }
  /* Home overrides grid back to block so arrows can be absolute */
  .home-theme .slider-block {
    display: block !important;
    grid-template-columns: unset !important;
  }
}

/* ── 7. Hero nav: restore to 40px on mobile ── */
@media (max-width: 767px) {
  .hero-nav {
    width: 36px !important;
    height: 36px !important;
    min-width: 36px !important;
    min-height: 36px !important;
  }
}

/* ── 8. Product tabs: increase touch target ── */
@media (max-width: 767px) {
  .tab-btn {
    padding: 10px 14px !important;
    font-size: 12px !important;
    min-height: 40px !important;
  }
}

/* ── 9. Account sidebar: stack earlier at 600px ── */
@media (max-width: 600px) {
  .seraphaire-account-layout {
    flex-direction: column !important;
  }
  .seraphaire-account-sidebar {
    width: 100% !important;
  }
}

/* ── 10. About video: ensure iframe is always full responsive width ── */
.about-video-embed,
.about-video-embed iframe,
.about-video-wrap {
  max-width: 100% !important;
  width: 100% !important;
}
.about-video-embed {
  aspect-ratio: 16 / 9 !important;
  height: auto !important;
}

/* ── 11. About community form: stack fields on small phones ── */
@media (max-width: 479px) {
  .about-form-row {
    grid-template-columns: 1fr !important;
    gap: 12px !important;
  }
  .about-form-row--half {
    max-width: 100% !important;
  }
}

/* ── 12. Popup image: prevent overflow on tiny screens ── */
.popup-image img {
  max-width: 100%;
  height: auto;
}
@media (max-width: 479px) {
  .popup-box {
    flex-direction: column !important;
    max-height: 90vh !important;
    overflow-y: auto !important;
  }
  .popup-image {
    flex: 0 0 140px !important;
    min-height: 140px !important;
  }
}

/* ── 13. SAVE badge: never wrap, always centered ── */
.price-save-badge {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  align-self: center !important;
  text-align: center !important;
  white-space: nowrap !important;
  vertical-align: middle !important;
  line-height: 1 !important;
  padding: 4px 10px !important;
  border-radius: 6px !important;
  overflow: hidden !important;
}

/* ── 14. Hero copy: prevent overflow on 320px screens ── */
@media (max-width: 360px) {
  .hero-copy {
    padding: 0 12px !important;
  }
  .hero-copy h1,
  .hero-copy h2 {
    font-size: clamp(1.4rem, 7vw, 2rem) !important;
  }
}

/* ── 15. Blog card title: smaller font on very narrow screens ── */
@media (max-width: 479px) {
  .blog-card h3,
  .blog-card .blog-card-title {
    font-size: 13px !important;
    line-height: 1.4 !important;
  }
}

/* ── 16. Cart page: extra small phone adjustments ── */
@media (max-width: 479px) {
  .woocommerce table.shop_table td,
  .woocommerce table.shop_table th {
    padding: 8px 6px !important;
    font-size: 12px !important;
  }
  .woocommerce .quantity input.qty {
    width: 50px !important;
    min-height: 40px !important;
  }
}

/* ── 17. Product variant + qty inputs: proper touch size on mobile ── */
@media (max-width: 767px) {
  .product-details select,
  .product-details .input,
  .product-details input[type="number"] {
    min-height: 46px !important;
    font-size: 16px !important; /* prevents iOS auto-zoom */
  }
}

/* ── 18. General: prevent any element causing horizontal scroll ── */
@media (max-width: 767px) {
  .container {
    overflow-x: hidden;
  }
  img {
    max-width: 100%;
    height: auto;
  }
}

/* ════════════════════════════════════════════════
   UNIFIED PRODUCT CARD — identical on ALL pages
   (home slider, shop grid, catalog grid, related)
   List-view is excluded intentionally.
   ════════════════════════════════════════════════ */
@media (max-width: 767px) {

  /* Card shell */
  .products-grid:not(.list-view) .product-card,
  .slider-block .products-grid .product-card {
    padding: 0 !important;
    overflow: hidden !important;
  }

  /* Image */
  .products-grid:not(.list-view) .product-card .placeholder,
  .slider-block .products-grid .product-card .placeholder {
    aspect-ratio: 1 / 1 !important;
    width: 100% !important;
    margin-bottom: 0 !important;
  }

  /* Card body */
  .products-grid:not(.list-view) .product-card .product-card-body,
  .slider-block .products-grid .product-card .product-card-body {
    padding: 5px 6px 6px !important;
  }

  /* Badge (ON SALE / LIMITED) */
  .products-grid:not(.list-view) .product-card .badge,
  .slider-block .products-grid .product-card .badge {
    font-size: 8px !important;
    padding: 1px 5px !important;
    margin: 0 0 3px 0 !important;
  }

  /* Title */
  .products-grid:not(.list-view) .product-card h3,
  .slider-block .products-grid .product-card h3 {
    font-size: 10px !important;
    line-height: 1.3 !important;
    margin: 3px 0 2px !important;
    padding-inline: 0 !important;
    display: -webkit-box !important;
    -webkit-line-clamp: 2 !important;
    -webkit-box-orient: vertical !important;
    overflow: hidden !important;
  }

  /* Hide subtitle */
  .products-grid:not(.list-view) .product-card .small,
  .slider-block .products-grid .product-card .small {
    display: none !important;
  }

  /* Price row — single shared line-height so all items use same center */
  .products-grid:not(.list-view) .product-card .price-wrap,
  .products-grid.list-view .product-card .price-wrap,
  .shop-page .products-grid:not(.list-view) .product-card .price-wrap,
  .shop-page .products-grid.list-view .product-card .price-wrap,
  .catalog-page .products-grid .product-card .price-wrap,
  .home-theme .products-grid .product-card .price-wrap,
  .slider-block .products-grid .product-card .price-wrap {
    font-size: 13px !important;
    padding-inline: 0 !important;
    margin-bottom: 4px !important;
    gap: 4px !important;
    flex-wrap: nowrap !important;
    align-items: center !important;
    line-height: 16px !important;
    overflow: visible !important;
  }

  /* Prices — same fixed height so centers always match */
  .products-grid:not(.list-view) .product-card .price-original,
  .products-grid:not(.list-view) .product-card .price-sale,
  .products-grid.list-view .product-card .price-original,
  .products-grid.list-view .product-card .price-sale,
  .shop-page .products-grid:not(.list-view) .product-card .price-original,
  .shop-page .products-grid:not(.list-view) .product-card .price-sale,
  .shop-page .products-grid.list-view .product-card .price-original,
  .shop-page .products-grid.list-view .product-card .price-sale,
  .catalog-page .products-grid .product-card .price-original,
  .catalog-page .products-grid .product-card .price-sale,
  .home-theme .products-grid .product-card .price-original,
  .home-theme .products-grid .product-card .price-sale,
  .slider-block .products-grid .product-card .price-original,
  .slider-block .products-grid .product-card .price-sale {
    font-size: 13px !important;
    line-height: 16px !important;
    height: 16px !important;
    align-self: center !important;
    display: inline-flex !important;
    align-items: center !important;
    white-space: nowrap !important;
    margin: 0 !important;
  }

  /* SAVE badge — same fixed height as text so centers match */
  .products-grid:not(.list-view) .product-card .price-save-badge,
  .products-grid.list-view .product-card .price-save-badge,
  .shop-page .products-grid:not(.list-view) .product-card .price-save-badge,
  .shop-page .products-grid.list-view .product-card .price-save-badge,
  .catalog-page .products-grid .product-card .price-save-badge,
  .home-theme .products-grid .product-card .price-save-badge,
  .slider-block .products-grid .product-card .price-save-badge {
    font-size: 8px !important;
    height: 16px !important;
    padding: 0 6px !important;
    align-self: center !important;
    line-height: 16px !important;
    margin: 0 !important;
    flex-shrink: 0 !important;
    border-radius: 4px !important;
  }

  /* Stock status */
  .products-grid:not(.list-view) .product-card .product-stock-status,
  .slider-block .products-grid .product-card .product-stock-status {
    font-size: 9px !important;
    padding-inline: 0 !important;
    margin-bottom: 4px !important;
  }

  /* Buttons row */
  .products-grid:not(.list-view) .product-card .card-actions,
  .slider-block .products-grid .product-card .card-actions {
    gap: 3px !important;
    padding: 0 !important;
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }

  .products-grid:not(.list-view) .product-card .card-actions .btn,
  .slider-block .products-grid .product-card .card-actions .btn {
    min-height: 26px !important;
    font-size: 9px !important;
    padding: 3px 4px !important;
    line-height: 1.2 !important;
    width: 100% !important;
    text-align: center !important;
    white-space: normal !important;
    word-break: break-word !important;
  }
}

/* ── Product card price row: desktop alignment fix (all pages, grid + list view) ── */
@media (min-width: 768px) {
  .product-card .price-wrap,
  .products-grid.list-view .product-card .price-wrap,
  .shop-page .products-grid.list-view .product-card .price-wrap {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: nowrap !important;
    align-items: center !important;
    gap: 6px !important;
    overflow: visible !important;
  }
  .product-card .price-original,
  .product-card .price-sale,
  .products-grid.list-view .product-card .price-original,
  .products-grid.list-view .product-card .price-sale {
    display: inline-flex !important;
    align-items: center !important;
    align-self: center !important;
    white-space: nowrap !important;
    line-height: 1 !important;
    margin: 0 !important;
  }
  .product-card .price-save-badge,
  .products-grid.list-view .product-card .price-save-badge {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    align-self: center !important;
    flex-shrink: 0 !important;
    white-space: nowrap !important;
    line-height: 1 !important;
    margin: 0 !important;
  }

  /* List view — fixed-height row forces all three items to share the same center */
  .shop-page .products-grid.list-view .product-card .price-wrap,
  .catalog-page .products-grid.list-view .product-card .price-wrap {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: nowrap !important;
    align-items: center !important;
    height: 30px !important;
    gap: 8px !important;
  }
  .shop-page .products-grid.list-view .product-card .price-original,
  .shop-page .products-grid.list-view .product-card .price-sale,
  .catalog-page .products-grid.list-view .product-card .price-original,
  .catalog-page .products-grid.list-view .product-card .price-sale {
    height: auto !important;
    align-self: center !important;
    display: inline-flex !important;
    align-items: center !important;
    line-height: 1 !important;
    margin: 0 !important;
  }
  .shop-page .products-grid.list-view .product-card .price-save-badge,
  .catalog-page .products-grid.list-view .product-card .price-save-badge {
    height: auto !important;
    align-self: center !important;
    display: inline-flex !important;
    align-items: center !important;
    padding: 4px 10px !important;
    font-size: 0.68rem !important;
    line-height: 1 !important;
    margin: 0 !important;
  }
}
