/* =============================================================================
   PRINTARA — Design System
   Luxury editorial theme for Kerala traditional & fusion fabrics.
   1. Tokens         2. Reset & base      3. Typography      4. Layout
   5. Buttons        6. Forms             7. Header          8. Mega menu
   9. Search overlay 10. Drawers/Modals   11. Hero           12. Sections
   13. Cards         14. Product card     15. Shop           16. Single product
   17. Cart/Checkout 18. Account          19. Blog           20. Widgets/Misc
   21. Footer        22. Mobile nav       23. Motion & a11y
   ========================================================================== */

/* 1. Tokens ---------------------------------------------------------------- */
:root {
  /* Palette calibrated to the PRINTARA logo artwork:
     wordmark purple, feather copper/gold, mandala magenta, leaf teal, paper cream. */
  --c-purple: #332970;
  --c-purple-deep: #241C55;
  --c-purple-soft: #ECEAF6;
  --c-gold: #D8992B;
  --c-gold-soft: #F6E7C8;
  --c-gold-deep: #B37F1D;
  --c-maroon: #98304F;
  --c-peacock: #12798C;
  --c-copper: #B4562A;
  --c-ivory: #F8F3E8;
  --c-white: #FFFFFF;
  --c-ink: #2A2A2A;
  --c-ink-soft: #6B6560;
  --c-border: #E8DFCF;
  --c-success: #2F7A4D;
  --c-error: #B3392E;

  --font-head: "Playfair Display", Georgia, serif;
  --font-body: "Poppins", "Segoe UI", sans-serif;
  --font-btn: "Montserrat", "Segoe UI", sans-serif;

  --shadow-sm: 0 1px 3px rgba(46, 38, 109, 0.07), 0 1px 2px rgba(46, 38, 109, 0.05);
  --shadow-md: 0 6px 18px rgba(46, 38, 109, 0.09);
  --shadow-lg: 0 18px 44px rgba(46, 38, 109, 0.14);
  --shadow-gold: 0 8px 22px rgba(216, 154, 43, 0.28);

  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;
  --radius-pill: 999px;

  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
  --dur: 0.28s;

  --header-h: 76px;
  --topbar-h: 38px;
}

/* 2. Reset & base ---------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
html, body { overflow-x: clip; }

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 15.5px;
  font-weight: 400;
  line-height: 1.72;
  color: var(--c-ink);
  background: var(--c-white);
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
figure { margin: 0; }
ul, ol { padding-left: 1.2em; }
a { color: var(--c-purple); text-decoration: none; transition: color var(--dur) var(--ease); }
a:hover { color: var(--c-maroon); }

:focus-visible {
  outline: 2px solid var(--c-peacock);
  outline-offset: 3px;
  border-radius: 2px;
}

.screen-reader-text {
  position: absolute !important;
  width: 1px; height: 1px;
  clip-path: inset(50%);
  overflow: hidden;
  white-space: nowrap;
}

.skip-link {
  position: absolute;
  top: -60px; left: 16px;
  z-index: 2000;
  padding: 10px 18px;
  background: var(--c-purple);
  color: var(--c-white);
  border-radius: 0 0 var(--radius-sm) var(--radius-sm);
  transition: top 0.2s var(--ease);
}
.skip-link:focus { top: 0; color: var(--c-white); }

/* 3. Typography ------------------------------------------------------------ */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-head);
  font-weight: 600;
  line-height: 1.22;
  color: var(--c-purple);
  margin: 0 0 0.5em;
  text-wrap: balance;
}
h1 { font-size: clamp(2rem, 4.5vw, 3.2rem); }
h2 { font-size: clamp(1.6rem, 3.2vw, 2.4rem); }
h3 { font-size: clamp(1.15rem, 2vw, 1.45rem); }
p { margin: 0 0 1.1em; }

::selection { background: var(--c-gold-soft); color: var(--c-purple-deep); }

/* 4. Layout ---------------------------------------------------------------- */
.pt-container {
  width: min(100% - 2.5rem, 1240px);
  margin-inline: auto;
}
.pt-container--narrow { width: min(100% - 2.5rem, 780px); }

.pt-section { padding-block: clamp(3.4rem, 7vw, 5.5rem); }
.pt-section--tight { padding-block: clamp(2rem, 4vw, 3rem); }
.pt-section--ivory { background: var(--c-ivory); }
.pt-section__more { text-align: center; margin: 2.4rem 0 0; }

.site-main { min-height: 55vh; }

/* Section heading with kasavu divider */
.section-heading { max-width: 640px; margin: 0 auto 2.6rem; text-align: center; }
.section-heading--left { margin-inline: 0; text-align: left; }
.section-heading__eyebrow {
  font-family: var(--font-btn);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--c-maroon);
  margin: 0 0 0.7em;
}
.section-heading__eyebrow--gold { color: var(--c-gold); }
.section-heading__title { margin-bottom: 0.35em; }
.section-heading__divider { display: inline-block; margin: 0.2em 0 0.6em; }
.section-heading--left .section-heading__divider { display: block; }
.section-heading__subtitle { color: var(--c-ink-soft); font-size: 0.98rem; margin: 0; }

.kasavu-rule { line-height: 0; }

/* 5. Buttons ---------------------------------------------------------------- */
.pt-btn {
  --btn-bg: var(--c-purple);
  --btn-fg: var(--c-white);
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55em;
  padding: 0.86em 1.9em;
  font-family: var(--font-btn);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--btn-fg);
  background: var(--btn-bg);
  border: 1.5px solid var(--btn-bg);
  border-radius: var(--radius-pill);
  cursor: pointer;
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease),
              background var(--dur) var(--ease), color var(--dur) var(--ease),
              border-color var(--dur) var(--ease);
}
.pt-btn:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); color: var(--btn-fg); }
.pt-btn:active { transform: translateY(0); }

.pt-btn--primary:hover { background: var(--c-purple-deep); border-color: var(--c-purple-deep); }

.pt-btn--gold { --btn-bg: var(--c-gold); --btn-fg: #fff; }
.pt-btn--gold:hover { background: var(--c-gold-deep); border-color: var(--c-gold-deep); box-shadow: var(--shadow-gold); }

.pt-btn--outline { --btn-bg: transparent; --btn-fg: var(--c-purple); border-color: var(--c-purple); background: transparent; }
.pt-btn--outline:hover { background: var(--c-purple); color: var(--c-white); }

.pt-btn--ghost { --btn-bg: transparent; --btn-fg: var(--c-maroon); border-color: transparent; background: transparent; }
.pt-btn--ghost:hover { box-shadow: none; transform: none; color: var(--c-purple); }

.pt-btn--glass {
  --btn-bg: rgba(251, 248, 242, 0.14);
  --btn-fg: #fff;
  border-color: rgba(255, 255, 255, 0.55);
  backdrop-filter: blur(6px);
}
.pt-btn--glass:hover { background: rgba(251, 248, 242, 0.28); }

.pt-btn--lg { padding: 1.05em 2.4em; font-size: 0.84rem; }
.pt-btn--sm { padding: 0.6em 1.3em; font-size: 0.72rem; }

/* Ripple (JS adds the span) */
.pt-btn .ripple {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.45);
  transform: scale(0);
  animation: pt-ripple 0.55s var(--ease) forwards;
  pointer-events: none;
}
@keyframes pt-ripple { to { transform: scale(3.2); opacity: 0; } }

.pt-chip {
  display: inline-block;
  padding: 0.32em 1em;
  margin: 0 0.4em 0.5em 0;
  border: 1px solid var(--c-border);
  border-radius: var(--radius-pill);
  font-size: 0.78rem;
  color: var(--c-ink-soft);
  background: var(--c-white);
  transition: all var(--dur) var(--ease);
}
.pt-chip:hover { border-color: var(--c-gold); color: var(--c-maroon); }

.pt-badge {
  display: inline-block;
  padding: 0.34em 0.95em;
  font-family: var(--font-btn);
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: var(--radius-pill);
  color: #fff;
}
.pt-badge--sale { background: var(--c-maroon); }
.pt-badge--new { background: var(--c-peacock); }
.pt-badge--oos { background: var(--c-ink-soft); }

/* 6. Forms ------------------------------------------------------------------ */
input[type="text"], input[type="email"], input[type="tel"], input[type="password"],
input[type="search"], input[type="number"], input[type="url"], select, textarea {
  width: 100%;
  padding: 0.78em 1.1em;
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--c-ink);
  background: var(--c-white);
  border: 1.5px solid var(--c-border);
  border-radius: var(--radius-sm);
  transition: border-color var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}
input:focus, select:focus, textarea:focus {
  outline: none;
  border-color: var(--c-purple);
  box-shadow: 0 0 0 3px var(--c-purple-soft);
}
label { font-weight: 500; font-size: 0.88rem; color: var(--c-purple-deep); }
.form-row { margin-bottom: 1.15rem; display: flex; flex-direction: column; gap: 0.4rem; }

.pt-check {
  display: flex; align-items: center; gap: 0.6em;
  padding: 0.3em 0; cursor: pointer; font-size: 0.92rem;
}
.pt-check input { width: auto; accent-color: var(--c-purple); width: 17px; height: 17px; }
.pt-check em { margin-left: auto; font-style: normal; font-size: 0.78rem; color: var(--c-ink-soft); }

/* 7. Header ------------------------------------------------------------------ */
.topbar {
  background: var(--c-purple-deep);
  color: rgba(251, 248, 242, 0.92);
  font-size: 0.78rem;
  position: relative;
  z-index: 130;
}
.topbar__inner {
  display: flex; align-items: center; justify-content: space-between;
  min-height: var(--topbar-h); gap: 1rem;
}
.topbar__note { display: flex; align-items: center; gap: 0.5em; margin: 0; }
.topbar__note .pt-icon { color: var(--c-gold); flex: none; }
.topbar__contact { display: flex; gap: 1.4rem; }
.topbar__contact a {
  display: inline-flex; align-items: center; gap: 0.45em;
  color: rgba(251, 248, 242, 0.92); font-weight: 500;
}
.topbar__contact a:hover { color: var(--c-gold); }

.masthead {
  position: sticky; top: 0; z-index: 120;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--c-border);
  transition: box-shadow var(--dur) var(--ease), background var(--dur) var(--ease);
}
.masthead.is-scrolled { box-shadow: var(--shadow-md); }
.masthead__inner {
  display: flex; align-items: center; gap: 1.2rem;
  min-height: var(--header-h);
  width: min(100% - 2rem, 1400px); /* header breathes wider than the content column */
}
.masthead__burger {
  display: none;
  background: none; border: 0; padding: 0.4rem; cursor: pointer; color: var(--c-purple);
}

/* Transparent header over the front-page hero.
   Stays sticky; the hero is pulled up under it via .site-main. */
.has-transparent-header .masthead {
  background: transparent;
  border-bottom-color: rgba(251, 248, 242, 0.18);
  backdrop-filter: none;
}
.has-transparent-header .masthead:not(.is-scrolled) .primary-nav__link,
.has-transparent-header .masthead:not(.is-scrolled) .masthead__action,
.has-transparent-header .masthead:not(.is-scrolled) .masthead__burger { color: var(--c-ivory); }
.has-transparent-header .masthead:not(.is-scrolled) .site-logo__name { color: var(--c-ivory) !important; }
.has-transparent-header .masthead:not(.is-scrolled) .site-logo__tagline { color: rgba(251,248,242,.72) !important; }
.has-transparent-header .masthead.is-scrolled {
  background: rgba(255, 255, 255, 0.97);
  border-bottom-color: var(--c-border);
}
.has-transparent-header .site-main { margin-top: calc(-1 * var(--header-h)); }

.site-logo { display: inline-flex; align-items: center; gap: 0.55rem; flex: none; }
.site-logo__mark { width: 46px; height: 46px; object-fit: contain; }
.site-logo__text { display: flex; flex-direction: column; line-height: 1.15; }
.site-logo__name {
  font-family: var(--font-head);
  font-size: 1.5rem; font-weight: 700; letter-spacing: 0.14em;
  transition: color var(--dur) var(--ease);
}
.site-logo__tagline {
  font-family: var(--font-btn);
  font-size: 0.56rem; font-weight: 600;
  letter-spacing: 0.3em; text-transform: uppercase;
  transition: color var(--dur) var(--ease);
}

.primary-nav { margin-left: auto; min-width: 0; }
.primary-nav__list { display: flex; gap: 0; list-style: none; margin: 0; padding: 0; flex-wrap: nowrap; }
.primary-nav__item { position: relative; }
.primary-nav__link {
  display: inline-flex; align-items: center; gap: 0.3em;
  padding: 1.7rem 0.55rem;
  font-family: var(--font-btn);
  font-size: 0.7rem; font-weight: 600;
  letter-spacing: 0.06em; text-transform: uppercase;
  color: var(--c-ink);
  white-space: nowrap;
  transition: color var(--dur) var(--ease);
}
.masthead__actions { flex: none; }
.primary-nav__link::after {
  content: ""; position: absolute; left: 0.62rem; right: 0.62rem; bottom: 1.2rem;
  height: 2px; background: var(--c-gold);
  transform: scaleX(0); transform-origin: left;
  transition: transform var(--dur) var(--ease);
}
.primary-nav__item:hover .primary-nav__link::after,
.primary-nav__item:focus-within .primary-nav__link::after { transform: scaleX(1); }
.primary-nav__link:hover { color: var(--c-maroon); }
.primary-nav__caret { opacity: 0.6; }

.primary-nav__dropdown {
  position: absolute; top: 100%; left: 0;
  min-width: 230px;
  list-style: none; margin: 0; padding: 0.8rem 0;
  background: var(--c-white);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  opacity: 0; visibility: hidden; transform: translateY(12px);
  transition: all var(--dur) var(--ease);
  z-index: 60;
}
.primary-nav__item:hover > .primary-nav__dropdown,
.primary-nav__item:focus-within > .primary-nav__dropdown { opacity: 1; visibility: visible; transform: translateY(4px); }
.primary-nav__dropdown a {
  display: block; padding: 0.55rem 1.4rem;
  font-size: 0.88rem; color: var(--c-ink);
}
.primary-nav__dropdown a:hover { color: var(--c-maroon); background: var(--c-ivory); padding-left: 1.65rem; transition: all 0.2s var(--ease); }

.masthead__actions { display: flex; align-items: center; gap: 0.35rem; }
.masthead__action {
  position: relative;
  display: inline-flex; align-items: center; justify-content: center;
  width: 42px; height: 42px;
  border: 0; background: none; cursor: pointer;
  color: var(--c-ink); border-radius: 50%;
  transition: background var(--dur) var(--ease), color var(--dur) var(--ease);
}
.masthead__action:hover { background: var(--c-purple-soft); color: var(--c-purple); }
.header-cart__count, .header-wishlist__count {
  position: absolute; top: 3px; right: 1px;
  min-width: 17px; height: 17px;
  display: inline-flex; align-items: center; justify-content: center;
  padding: 0 4px;
  font-family: var(--font-btn); font-size: 0.62rem; font-weight: 700;
  background: var(--c-gold); color: #fff;
  border-radius: var(--radius-pill);
}
.header-wishlist__count { background: var(--c-maroon); }
.header-wishlist__count:empty, .header-wishlist__count[data-zero] { display: none; }

/* 8. Mega menu ---------------------------------------------------------------- */
.has-mega { position: static; }
.mega-panel {
  position: absolute; left: 0; right: 0; top: 100%;
  background: var(--c-white);
  border-top: 1px solid var(--c-border);
  border-bottom: 3px solid var(--c-gold);
  box-shadow: var(--shadow-lg);
  opacity: 0; visibility: hidden; transform: translateY(14px);
  transition: all var(--dur) var(--ease);
  z-index: 55;
}
.has-mega:hover .mega-panel,
.has-mega:focus-within .mega-panel { opacity: 1; visibility: visible; transform: translateY(0); }
.mega-panel__inner { display: flex; gap: 3rem; padding: 2.2rem 0 2.4rem; }
.mega-panel__cols { display: flex; gap: 3.5rem; flex: 1; }
.mega-panel__col { list-style: none; margin: 0; padding: 0; min-width: 190px; }
.mega-panel__col a {
  display: block; padding: 0.5rem 0;
  font-size: 0.92rem; color: var(--c-ink);
  border-bottom: 1px dashed transparent;
}
.mega-panel__col a:hover { color: var(--c-maroon); padding-left: 6px; transition: all 0.2s var(--ease); }
.mega-panel__promo {
  flex: none; width: 300px;
  display: flex; flex-direction: column; justify-content: flex-end; gap: 0.4rem;
  padding: 1.6rem;
  border-radius: var(--radius-md);
  background:
    radial-gradient(ellipse at 80% 10%, rgba(216, 154, 43, 0.35), transparent 55%),
    linear-gradient(150deg, var(--c-purple) 0%, var(--c-purple-deep) 70%);
  color: var(--c-ivory);
  min-height: 210px;
  overflow: hidden;
}
.mega-panel__promo-eyebrow {
  font-family: var(--font-btn); font-size: 0.64rem; font-weight: 700;
  letter-spacing: 0.24em; text-transform: uppercase; color: var(--c-gold);
}
.mega-panel__promo-title { font-family: var(--font-head); font-size: 1.25rem; line-height: 1.3; }
.mega-panel__promo-cta { font-size: 0.82rem; color: var(--c-gold-soft); }
.mega-panel__promo:hover .mega-panel__promo-cta { color: #fff; }

/* 9. Search overlay ------------------------------------------------------------ */
.search-overlay { position: fixed; inset: 0; z-index: 300; }
.search-overlay__backdrop {
  position: absolute; inset: 0;
  background: rgba(34, 28, 82, 0.55);
  backdrop-filter: blur(4px);
}
.search-overlay__panel {
  position: relative;
  max-width: 760px; margin: 9vh auto 0;
  width: calc(100% - 2.5rem);
  background: var(--c-white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: 1.6rem 1.8rem 1.8rem;
  animation: pt-slide-up 0.35s var(--ease);
}
.search-overlay__form {
  display: flex; align-items: center; gap: 0.9rem;
  border-bottom: 2px solid var(--c-gold);
  padding-bottom: 0.9rem;
  color: var(--c-purple);
}
.search-overlay__input {
  border: 0 !important; box-shadow: none !important; padding: 0.3em 0;
  font-size: 1.25rem; font-family: var(--font-head);
}
.search-overlay__close { background: none; border: 0; cursor: pointer; color: var(--c-ink-soft); padding: 6px; }
.search-overlay__close:hover { color: var(--c-maroon); }
.search-overlay__hints { display: flex; flex-wrap: wrap; align-items: center; gap: 0.5rem; margin-top: 1rem; font-size: 0.82rem; color: var(--c-ink-soft); }
.search-overlay__hint {
  border: 1px solid var(--c-border); background: var(--c-ivory);
  padding: 0.3em 1em; border-radius: var(--radius-pill);
  font-size: 0.8rem; cursor: pointer; color: var(--c-ink);
  transition: all var(--dur) var(--ease);
}
.search-overlay__hint:hover { border-color: var(--c-gold); color: var(--c-maroon); }
.search-overlay__results { max-height: 52vh; overflow-y: auto; margin-top: 0.6rem; }
.search-results__section {
  font-family: var(--font-btn); font-size: 0.68rem; font-weight: 700;
  letter-spacing: 0.2em; text-transform: uppercase; color: var(--c-maroon);
  margin: 1.2rem 0 0.5rem;
}
.search-result {
  display: flex; align-items: center; gap: 1rem;
  padding: 0.55rem 0.6rem; border-radius: var(--radius-sm);
}
.search-result:hover { background: var(--c-ivory); }
.search-result img { width: 46px; height: 57px; object-fit: cover; border-radius: 6px; flex: none; }
.search-result__title { font-weight: 500; font-size: 0.92rem; color: var(--c-ink); }
.search-result__price { margin-left: auto; font-size: 0.85rem; color: var(--c-maroon); font-weight: 600; white-space: nowrap; }
.search-result__count { margin-left: auto; font-size: 0.78rem; color: var(--c-ink-soft); }
.search-results__all { display: block; text-align: center; padding: 0.8rem; margin-top: 0.6rem; font-weight: 600; font-size: 0.85rem; border-top: 1px solid var(--c-border); }
.search-results__empty { text-align: center; padding: 1.6rem 0 0.8rem; color: var(--c-ink-soft); }

/* 10. Drawers, modals, toasts ---------------------------------------------------- */
/* Author display rules would otherwise beat the UA's [hidden] rule. */
.pt-drawer[hidden], .pt-modal[hidden], .search-overlay[hidden],
.compare-tray[hidden], .wishlist-page__empty[hidden], [hidden] { display: none !important; }

.pt-drawer { position: fixed; inset: 0; z-index: 320; }
.pt-drawer__overlay { position: absolute; inset: 0; background: rgba(34, 28, 82, 0.5); }
.pt-drawer__panel {
  position: absolute; top: 0; bottom: 0; right: 0;
  width: min(380px, 92vw);
  background: var(--c-white);
  box-shadow: var(--shadow-lg);
  display: flex; flex-direction: column;
  animation: pt-drawer-in-r 0.32s var(--ease);
  overflow-y: auto;
}
.pt-drawer__panel--left { right: auto; left: 0; animation-name: pt-drawer-in-l; }
@keyframes pt-drawer-in-r { from { transform: translateX(100%); } }
@keyframes pt-drawer-in-l { from { transform: translateX(-100%); } }
.pt-drawer__head {
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.1rem 1.4rem;
  border-bottom: 1px solid var(--c-border);
  position: sticky; top: 0; background: var(--c-white); z-index: 2;
}
.pt-drawer__title { font-size: 1.2rem; margin: 0; }
.pt-drawer__close { background: none; border: 0; cursor: pointer; color: var(--c-ink-soft); padding: 6px; }
.pt-drawer__close:hover { color: var(--c-maroon); }

.pt-modal { position: fixed; inset: 0; z-index: 340; display: flex; align-items: center; justify-content: center; padding: 1.2rem; }
.pt-modal__backdrop { position: absolute; inset: 0; background: rgba(34, 28, 82, 0.55); backdrop-filter: blur(3px); }
.pt-modal__panel {
  position: relative;
  width: min(880px, 100%);
  max-height: 88vh; overflow-y: auto;
  background: var(--c-white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  animation: pt-slide-up 0.32s var(--ease);
}
.pt-modal__panel--wide { width: min(1100px, 100%); }
.pt-modal__close {
  position: absolute; top: 14px; right: 14px; z-index: 3;
  width: 38px; height: 38px;
  display: flex; align-items: center; justify-content: center;
  background: var(--c-ivory); border: 1px solid var(--c-border); border-radius: 50%;
  cursor: pointer; color: var(--c-ink);
  transition: all var(--dur) var(--ease);
}
.pt-modal__close:hover { background: var(--c-maroon); color: #fff; border-color: var(--c-maroon); }

@keyframes pt-slide-up { from { opacity: 0; transform: translateY(26px); } }

.pt-toasts { position: fixed; bottom: 84px; right: 18px; z-index: 400; display: flex; flex-direction: column; gap: 0.6rem; }
.pt-toast {
  display: flex; align-items: center; gap: 0.7rem;
  padding: 0.85rem 1.3rem;
  background: var(--c-purple-deep); color: var(--c-ivory);
  border-left: 3px solid var(--c-gold);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-lg);
  font-size: 0.88rem;
  animation: pt-toast-in 0.3s var(--ease);
}
.pt-toast.is-leaving { opacity: 0; transform: translateX(20px); transition: all 0.3s var(--ease); }
@keyframes pt-toast-in { from { opacity: 0; transform: translateX(30px); } }

.back-to-top {
  position: fixed; bottom: 88px; right: 20px; z-index: 210;
  width: 44px; height: 44px;
  display: flex; align-items: center; justify-content: center;
  background: var(--c-purple); color: #fff;
  border: 0; border-radius: 50%; cursor: pointer;
  box-shadow: var(--shadow-md);
  opacity: 0; visibility: hidden; transform: translateY(12px);
  transition: all var(--dur) var(--ease);
}
.back-to-top.is-visible { opacity: 1; visibility: visible; transform: none; }
.back-to-top:hover { background: var(--c-gold); }

.whatsapp-fab {
  position: fixed; bottom: 20px; right: 20px; z-index: 210;
  width: 52px; height: 52px;
  display: flex; align-items: center; justify-content: center;
  background: #25D366; color: #fff;
  border-radius: 50%;
  box-shadow: 0 8px 22px rgba(37, 211, 102, 0.4);
  transition: transform var(--dur) var(--ease);
}
.whatsapp-fab:hover { transform: scale(1.08); color: #fff; }

/* 11. Hero ------------------------------------------------------------------------ */
.hero {
  position: relative;
  height: min(92vh, 820px);
  min-height: 560px;
  overflow: hidden;
  background: var(--c-purple-deep);
}
.hero__slide {
  position: absolute; inset: 0;
  opacity: 0; visibility: hidden;
  transition: opacity 1s var(--ease), visibility 1s;
  display: flex; align-items: center;
}
.hero__slide.is-active { opacity: 1; visibility: visible; }
.hero__bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.hero__slide.is-active .hero__bg { animation: pt-kenburns 7.5s var(--ease) forwards; }
@keyframes pt-kenburns { from { transform: scale(1.06); } to { transform: scale(1); } }
.hero__scrim {
  position: absolute; inset: 0;
  background: linear-gradient(78deg, rgba(24, 19, 60, 0.82) 0%, rgba(24, 19, 60, 0.45) 48%, rgba(24, 19, 60, 0.08) 100%);
}
.hero__content { position: relative; z-index: 2; max-width: 100%; }
.hero__eyebrow {
  font-family: var(--font-btn); font-size: 0.74rem; font-weight: 600;
  letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--c-gold);
  margin-bottom: 1.1rem;
}
.hero__title {
  font-size: clamp(2.3rem, 5.4vw, 4.1rem);
  color: var(--c-ivory);
  max-width: 13em;
  margin-bottom: 0.4em;
}
.hero__text { color: rgba(251, 248, 242, 0.88); max-width: 34em; font-size: 1.02rem; margin-bottom: 2rem; }
.hero__ctas { display: flex; flex-wrap: wrap; gap: 0.9rem; }

.hero__slide .hero__eyebrow, .hero__slide .hero__title,
.hero__slide .hero__text, .hero__slide .hero__ctas {
  opacity: 0; transform: translateY(26px);
}
.hero__slide.is-active .hero__eyebrow { animation: pt-rise 0.7s var(--ease) 0.25s forwards; }
.hero__slide.is-active .hero__title { animation: pt-rise 0.7s var(--ease) 0.4s forwards; }
.hero__slide.is-active .hero__text { animation: pt-rise 0.7s var(--ease) 0.55s forwards; }
.hero__slide.is-active .hero__ctas { animation: pt-rise 0.7s var(--ease) 0.7s forwards; }
@keyframes pt-rise { to { opacity: 1; transform: none; } }

.hero__controls {
  position: absolute; bottom: 2.2rem; left: 50%; transform: translateX(-50%);
  z-index: 5;
}
.hero__dots { display: flex; gap: 0.55rem; }
.hero__dot {
  width: 34px; height: 4px;
  background: rgba(251, 248, 242, 0.35);
  border: 0; border-radius: var(--radius-pill);
  cursor: pointer; padding: 0;
  transition: background var(--dur) var(--ease);
}
.hero__dot.is-active { background: var(--c-gold); }
.hero__border {
  position: absolute; left: 0; right: 0; bottom: 0; height: 6px; z-index: 4;
  background: repeating-linear-gradient(90deg, var(--c-gold) 0 18px, var(--c-maroon) 18px 22px);
  opacity: 0.85;
}

/* 12. Reveal animation ------------------------------------------------------------- */
[data-reveal] { opacity: 0; transform: translateY(28px); transition: opacity 0.7s var(--ease) var(--reveal-delay, 0s), transform 0.7s var(--ease) var(--reveal-delay, 0s); }
[data-reveal].is-revealed { opacity: 1; transform: none; }

/* 13. Cards (home) ------------------------------------------------------------------ */
/* Category grid: first card spans two rows */
.category-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 250px;
  gap: 1.2rem;
}
.category-card {
  position: relative; overflow: hidden;
  border-radius: var(--radius-md);
  background: var(--c-purple-soft);
  box-shadow: var(--shadow-sm);
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}
.category-card--tall { grid-row: span 2; }
.category-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.category-card__img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform 0.8s var(--ease); }
.category-card:hover .category-card__img { transform: scale(1.05); }
.category-card__veil {
  position: absolute; inset: 0;
  background: linear-gradient(6deg, rgba(24, 19, 60, 0.78) 0%, rgba(24, 19, 60, 0.12) 55%, transparent 100%);
}
.category-card__body {
  position: absolute; inset-inline: 0; bottom: 0;
  padding: 1.4rem 1.5rem;
  display: flex; flex-direction: column; gap: 0.15rem;
}
.category-card__name { font-family: var(--font-head); font-size: 1.35rem; font-weight: 600; color: var(--c-ivory); }
.category-card__count { font-size: 0.78rem; color: rgba(251, 248, 242, 0.75); }
.category-card__cta {
  font-family: var(--font-btn); font-size: 0.7rem; font-weight: 700;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--c-gold);
  max-height: 0; opacity: 0; overflow: hidden;
  transition: all var(--dur) var(--ease);
}
.category-card:hover .category-card__cta, .category-card:focus-visible .category-card__cta { max-height: 2em; opacity: 1; margin-top: 0.5rem; }

/* Collections trio */
.collection-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem; }
.collection-card {
  position: relative; overflow: hidden;
  border-radius: var(--radius-md);
  aspect-ratio: 4 / 5;
  box-shadow: var(--shadow-sm);
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}
.collection-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.collection-card__img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform 0.8s var(--ease); }
.collection-card:hover .collection-card__img { transform: scale(1.05); }
.collection-card__body {
  position: absolute; inset: 0;
  display: flex; flex-direction: column; justify-content: flex-end; gap: 0.3rem;
  padding: 1.7rem;
  background: linear-gradient(8deg, rgba(24, 19, 60, 0.82) 0%, rgba(24, 19, 60, 0.15) 50%, transparent 75%);
}
.collection-card__body .section-heading__eyebrow { color: var(--c-gold); margin: 0; }
.collection-card__title { font-family: var(--font-head); font-size: 1.5rem; color: var(--c-ivory); }
.collection-card__text { font-size: 0.86rem; color: rgba(251, 248, 242, 0.82); }
.collection-card__cta {
  font-family: var(--font-btn); font-size: 0.7rem; font-weight: 700;
  letter-spacing: 0.18em; text-transform: uppercase; color: var(--c-gold);
  margin-top: 0.5rem;
}
.collection-card:hover .collection-card__cta { color: #fff; }

/* Editorial banner */
.editorial-banner { background:
  radial-gradient(ellipse at 12% 0%, rgba(216, 154, 43, 0.08), transparent 45%),
  var(--c-white); }
.editorial-banner__inner {
  display: grid; grid-template-columns: 0.9fr 1fr;
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
}
.editorial-banner__media { position: relative; }
.editorial-banner__media img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}
.editorial-banner__badge {
  position: absolute; right: -18px; bottom: 34px;
  background: var(--c-white);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  padding: 1rem 1.4rem;
  display: flex; flex-direction: column;
  max-width: 190px;
}
.editorial-banner__badge-num { font-family: var(--font-head); font-size: 1.9rem; font-weight: 700; color: var(--c-gold); line-height: 1.1; }
.editorial-banner__badge-label { font-size: 0.78rem; color: var(--c-ink-soft); }
.editorial-banner__title { font-size: clamp(1.7rem, 3vw, 2.4rem); }
.editorial-banner__points { list-style: none; padding: 0; margin: 1.4rem 0 1.8rem; display: flex; flex-direction: column; gap: 0.75rem; }
.editorial-banner__points li { display: flex; align-items: center; gap: 0.8rem; font-size: 0.94rem; }
.editorial-banner__points .pt-icon { color: var(--c-gold); flex: none; }
.editorial-banner__ctas { display: flex; flex-wrap: wrap; gap: 0.8rem; align-items: center; }

/* Why us */
.why-us { background:
  radial-gradient(ellipse at 85% 15%, rgba(216, 154, 43, 0.14), transparent 50%),
  linear-gradient(165deg, var(--c-purple) 0%, var(--c-purple-deep) 80%); }
.why-us .section-heading__title { color: var(--c-ivory); }
.why-us .section-heading__eyebrow { color: var(--c-gold); }
.why-us .section-heading__subtitle { color: rgba(251, 248, 242, 0.75); }
.why-us__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.3rem; }
.why-us__card {
  padding: 1.8rem 1.6rem;
  background: rgba(251, 248, 242, 0.05);
  border: 1px solid rgba(251, 248, 242, 0.14);
  border-radius: var(--radius-md);
  transition: background var(--dur) var(--ease), transform var(--dur) var(--ease), border-color var(--dur) var(--ease);
}
.why-us__card:hover { background: rgba(251, 248, 242, 0.1); transform: translateY(-4px); border-color: rgba(216, 154, 43, 0.5); }
.why-us__icon {
  display: inline-flex; align-items: center; justify-content: center;
  width: 54px; height: 54px; margin-bottom: 1rem;
  background: rgba(216, 154, 43, 0.16);
  border-radius: var(--radius-md);
  color: var(--c-gold);
}
.why-us__card h3 { color: var(--c-ivory); font-size: 1.12rem; }
.why-us__card p { color: rgba(251, 248, 242, 0.72); font-size: 0.88rem; margin: 0; }

/* Testimonials */
.testimonial-slider {
  display: flex; gap: 1.3rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding: 0.4rem 0.2rem 1.4rem;
  scrollbar-width: thin;
  scrollbar-color: var(--c-gold) transparent;
}
.testimonial-card {
  flex: 0 0 min(400px, 86vw);
  scroll-snap-align: start;
  background: var(--c-white);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  padding: 1.9rem 1.8rem 1.6rem;
  position: relative;
  display: flex; flex-direction: column;
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}
.testimonial-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.testimonial-card__quote {
  position: absolute; top: 0.3rem; right: 1.4rem;
  font-family: var(--font-head); font-size: 5rem; line-height: 1;
  color: var(--c-gold-soft);
}
.testimonial-card blockquote { margin: 0.8rem 0 1.2rem; font-size: 0.93rem; color: var(--c-ink); font-style: italic; flex: 1; }
.testimonial-card figcaption { display: flex; align-items: center; gap: 0.85rem; }
.testimonial-card figcaption span:last-child { display: flex; flex-direction: column; line-height: 1.35; }
.testimonial-card__avatar {
  width: 44px; height: 44px; flex: none;
  display: flex; align-items: center; justify-content: center;
  background: var(--c-purple); color: var(--c-gold);
  font-family: var(--font-head); font-size: 1.2rem; font-weight: 700;
  border-radius: 50%;
}
.testimonial-card figcaption strong { font-size: 0.92rem; color: var(--c-purple-deep); }
.testimonial-card figcaption em { font-style: normal; font-size: 0.78rem; color: var(--c-ink-soft); }

.pt-stars { display: inline-flex; gap: 2px; }
.pt-stars__star { fill: var(--c-border); }
.pt-stars__star--full { fill: var(--c-gold); }
.pt-stars__star--half { fill: url(#half) var(--c-gold); }

/* Journal cards */
.journal-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.journal-card {
  background: var(--c-white);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
  display: flex; flex-direction: column;
}
.journal-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.journal-card__media { display: block; overflow: hidden; aspect-ratio: 15 / 8; background: var(--c-purple-soft); }
.journal-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s var(--ease); }
.journal-card:hover .journal-card__media img { transform: scale(1.05); }
.journal-card__body { padding: 1.4rem 1.5rem 1.6rem; display: flex; flex-direction: column; gap: 0.4rem; flex: 1; }
.journal-card__body time {
  font-family: var(--font-btn); font-size: 0.68rem; font-weight: 600;
  letter-spacing: 0.18em; text-transform: uppercase; color: var(--c-copper);
}
.journal-card__body h2, .journal-card__body h3 { font-size: 1.22rem; margin: 0; }
.journal-card__body h2 a, .journal-card__body h3 a { color: var(--c-purple-deep); }
.journal-card__body h2 a:hover, .journal-card__body h3 a:hover { color: var(--c-maroon); }
.journal-card__body p { font-size: 0.88rem; color: var(--c-ink-soft); margin: 0; flex: 1; }
.journal-card__more { font-size: 0.82rem; font-weight: 600; margin-top: 0.6rem; }

/* Instagram strip */
.instagram-strip {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 4px;
}
.instagram-tile { position: relative; display: block; overflow: hidden; aspect-ratio: 1; }
.instagram-tile img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s var(--ease); }
.instagram-tile:hover img { transform: scale(1.07); }
.instagram-tile__hover {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  background: rgba(46, 38, 109, 0.55);
  color: #fff;
  opacity: 0; transition: opacity var(--dur) var(--ease);
}
.instagram-tile:hover .instagram-tile__hover { opacity: 1; }

/* Newsletter band */
.newsletter-band {
  background:
    radial-gradient(ellipse at 100% 100%, rgba(139, 44, 69, 0.35), transparent 55%),
    linear-gradient(120deg, var(--c-purple-deep), var(--c-purple));
  padding-block: clamp(2.8rem, 5vw, 4rem);
}
.newsletter-band__inner {
  display: flex; align-items: center; justify-content: space-between; gap: 2.5rem;
  flex-wrap: wrap;
}
.newsletter-band__copy h2 { color: var(--c-ivory); margin-bottom: 0.3em; }
.newsletter-band__copy p { color: rgba(251, 248, 242, 0.78); margin: 0; max-width: 40em; }
.newsletter-form { display: flex; gap: 0.6rem; }
.newsletter-form input { min-width: 0; }
.newsletter-form--band { flex: 1 1 380px; max-width: 460px; }
.newsletter-form--band input {
  background: rgba(251, 248, 242, 0.1);
  border-color: rgba(251, 248, 242, 0.35);
  color: var(--c-ivory);
}
.newsletter-form--band input::placeholder { color: rgba(251, 248, 242, 0.55); }
.newsletter-form--band input:focus { border-color: var(--c-gold); box-shadow: 0 0 0 3px rgba(216, 154, 43, 0.25); }

/* Trust strip (above footer) */
.trust-strip { background: var(--c-ivory); border-top: 1px solid var(--c-border); }
.trust-strip__inner {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem;
  padding-block: 2rem;
}
.trust-strip__item { display: flex; align-items: center; gap: 1rem; }
.trust-strip__item .pt-icon { color: var(--c-gold); flex: none; }
.trust-strip__item h3 { font-family: var(--font-body); font-size: 0.93rem; font-weight: 600; margin: 0; color: var(--c-purple-deep); }
.trust-strip__item p { font-size: 0.8rem; color: var(--c-ink-soft); margin: 0; }

/* Stats row (about) */
.stats-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.2rem; text-align: center; }
.stat { padding: 1.6rem 1rem; background: var(--c-white); border: 1px solid var(--c-border); border-radius: var(--radius-md); box-shadow: var(--shadow-sm); }
.stat__num { display: block; font-family: var(--font-head); font-size: 2.3rem; font-weight: 700; color: var(--c-gold); }
.stat__label { font-size: 0.85rem; color: var(--c-ink-soft); }

/* 14. Product card ------------------------------------------------------------------ */
ul.products {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.6rem 1.4rem;
  list-style: none; margin: 0; padding: 0;
}
ul.products.columns-4 { grid-template-columns: repeat(4, 1fr); }
ul.products.columns-2 { grid-template-columns: repeat(2, 1fr); }

.product-card { display: flex; flex-direction: column; }
.product-card__media {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-md);
  background: var(--c-ivory);
  aspect-ratio: 4 / 5;
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--dur) var(--ease);
}
.product-card:hover .product-card__media { box-shadow: var(--shadow-md); }
.product-card__link { display: block; width: 100%; height: 100%; }
.product-card__img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s var(--ease); }
.product-card:hover .product-card__img { transform: scale(1.05); }

.product-card__badges {
  position: absolute; top: 12px; left: 12px;
  display: flex; flex-direction: column; gap: 6px; align-items: flex-start;
}
.product-card__actions {
  position: absolute; top: 12px; right: 12px;
  display: flex; flex-direction: column; gap: 8px;
  opacity: 0; transform: translateX(10px);
  transition: all var(--dur) var(--ease);
}
.product-card:hover .product-card__actions,
.product-card:focus-within .product-card__actions { opacity: 1; transform: none; }
.card-action {
  width: 38px; height: 38px;
  display: flex; align-items: center; justify-content: center;
  background: var(--c-white); color: var(--c-ink);
  border: 1px solid var(--c-border); border-radius: 50%;
  cursor: pointer;
  box-shadow: var(--shadow-sm);
  transition: all var(--dur) var(--ease);
}
.card-action:hover { background: var(--c-purple); color: #fff; border-color: var(--c-purple); }
.card-action.is-active { background: var(--c-maroon); color: #fff; border-color: var(--c-maroon); }
.card-action.is-active .pt-icon--heart { fill: currentColor; }

.product-card__cart {
  position: absolute; inset-inline: 12px; bottom: 12px;
  transform: translateY(120%);
  transition: transform var(--dur) var(--ease);
}
.product-card:hover .product-card__cart,
.product-card:focus-within .product-card__cart { transform: none; }
.pt-btn--card {
  width: 100%;
  padding: 0.8em 1em;
  background: rgba(255, 255, 255, 0.94);
  color: var(--c-purple-deep);
  border-color: transparent;
  backdrop-filter: blur(4px);
  font-size: 0.72rem;
  box-shadow: var(--shadow-md);
}
.pt-btn--card:hover { background: var(--c-purple); color: #fff; }
.pt-btn--card.loading { opacity: 0.6; pointer-events: none; }
.pt-btn--card.added::after { content: " ✓"; }

.product-card__body { padding: 0.95rem 0.3rem 0; text-align: center; }
.product-card__meta {
  font-family: var(--font-btn); font-size: 0.64rem; font-weight: 600;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--c-copper); margin: 0 0 0.3em;
}
.product-card__title { font-size: 1.02rem; margin: 0 0 0.25em; font-weight: 600; }
.product-card__title a { color: var(--c-purple-deep); }
.product-card__title a:hover { color: var(--c-maroon); }
.product-card__rating { display: flex; align-items: center; justify-content: center; gap: 0.4rem; margin-bottom: 0.2em; }
.product-card__rating-count { font-size: 0.75rem; color: var(--c-ink-soft); }
.product-card__price { font-size: 0.98rem; font-weight: 600; color: var(--c-ink); margin: 0; }
.product-card__price del { color: var(--c-ink-soft); font-weight: 400; opacity: 0.75; margin-right: 0.45em; }
.product-card__price ins { text-decoration: none; color: var(--c-maroon); }

/* 15. Shop ---------------------------------------------------------------------------- */
.page-hero {
  background:
    radial-gradient(ellipse at 90% -20%, rgba(216, 154, 43, 0.15), transparent 55%),
    linear-gradient(160deg, var(--c-purple-soft), var(--c-ivory) 70%);
  padding: clamp(2.2rem, 5vw, 3.6rem) 0;
  border-bottom: 1px solid var(--c-border);
}
.page-hero__title { margin-bottom: 0.15em; }
.page-hero__lede { color: var(--c-ink-soft); max-width: 46em; margin: 0; }

.breadcrumbs { margin-bottom: 0.9rem; }
.breadcrumbs__list { display: flex; flex-wrap: wrap; gap: 0.25rem; list-style: none; margin: 0; padding: 0; font-size: 0.78rem; }
.breadcrumbs__item { display: flex; align-items: center; color: var(--c-ink-soft); }
.breadcrumbs__item + .breadcrumbs__item::before { content: "›"; margin: 0 0.55em; color: var(--c-gold); }
.breadcrumbs__item a { color: var(--c-ink-soft); }
.breadcrumbs__item a:hover { color: var(--c-maroon); }
.breadcrumbs__item span { color: var(--c-purple); font-weight: 500; }

.woo-main { padding-block: 2.2rem 4rem; }

.shop-toolbar {
  display: flex; align-items: center; gap: 1.2rem;
  padding: 0.8rem 1.2rem;
  margin-bottom: 1.8rem;
  background: var(--c-white);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}
.shop-toolbar__filters {
  display: inline-flex; align-items: center; gap: 0.5em;
  padding: 0.55em 1.3em;
  background: var(--c-purple); color: #fff;
  border: 0; border-radius: var(--radius-pill);
  font-family: var(--font-btn); font-size: 0.74rem; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase;
  cursor: pointer;
  transition: background var(--dur) var(--ease);
}
.shop-toolbar__filters:hover { background: var(--c-maroon); }
.shop-toolbar__count { font-size: 0.85rem; color: var(--c-ink-soft); }
.shop-toolbar__count .woocommerce-result-count { margin: 0; }
.shop-toolbar__order { margin-left: auto; }
.shop-toolbar__order select { padding: 0.5em 2.2em 0.5em 1em; font-size: 0.85rem; border-radius: var(--radius-pill); }

.pt-filters { padding: 1.2rem 1.4rem 2rem; }
.pt-filters__group { border: 0; padding: 0; margin: 0 0 1.4rem; }
.pt-filters__group legend {
  font-family: var(--font-btn); font-size: 0.7rem; font-weight: 700;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--c-maroon);
  padding: 0; margin-bottom: 0.6rem;
}
.pt-filters__price { display: flex; gap: 0.8rem; }
.pt-filters__price label { flex: 1; display: flex; flex-direction: column; gap: 0.3rem; font-size: 0.78rem; }
.pt-filters__actions {
  display: flex; flex-direction: column; gap: 0.6rem;
  position: sticky; bottom: 0;
  background: var(--c-white);
  padding-top: 1rem;
  border-top: 1px solid var(--c-border);
}

.shop-loadmore { text-align: center; margin-top: 2.6rem; }
.shop-loadmore__btn.loading { opacity: 0.55; pointer-events: none; }

.woocommerce-ordering select { max-width: 230px; }

/* 16. Single product -------------------------------------------------------------------- */
.single-product-breadcrumbs { padding-top: 1.4rem; }

.single-product div.product {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
  gap: 1.5rem clamp(2rem, 4.5vw, 4rem);
  padding-block: 1.6rem 3rem;
}
.single-product div.product > .summary { grid-column: 2; grid-row: 1; }
.single-product div.product > *:not(.summary):not(.woocommerce-product-gallery) { grid-column: 1 / -1; }

/* Gallery */
.single-product div.product .woocommerce-product-gallery {
  grid-column: 1; grid-row: 1;
  position: sticky; top: calc(var(--header-h) + 20px);
  align-self: start;
}
.woocommerce-product-gallery { position: relative; }
.woocommerce-product-gallery__wrapper { margin: 0; }
.woocommerce-product-gallery__image { border-radius: var(--radius-lg); overflow: hidden; background: var(--c-ivory); }
.woocommerce-product-gallery__image img { width: 100%; }
.woocommerce-product-gallery .flex-viewport { border-radius: var(--radius-lg); box-shadow: var(--shadow-md); }
.woocommerce-product-gallery .flex-control-thumbs {
  display: flex; gap: 0.7rem; list-style: none;
  margin: 0.9rem 0 0; padding: 0;
}
.woocommerce-product-gallery .flex-control-thumbs li { width: 84px; }
.woocommerce-product-gallery .flex-control-thumbs img {
  border-radius: var(--radius-sm);
  border: 2px solid transparent;
  cursor: pointer; opacity: 0.65;
  transition: all var(--dur) var(--ease);
}
.woocommerce-product-gallery .flex-control-thumbs img.flex-active,
.woocommerce-product-gallery .flex-control-thumbs img:hover { opacity: 1; border-color: var(--c-gold); }
.woocommerce-product-gallery__trigger {
  position: absolute; top: 14px; right: 14px; z-index: 9;
  width: 40px; height: 40px;
  display: flex; align-items: center; justify-content: center;
  background: var(--c-white); border-radius: 50%;
  box-shadow: var(--shadow-sm);
  font-size: 0;
}
.woocommerce-product-gallery__trigger::before { content: "⤢"; font-size: 18px; color: var(--c-purple); }

/* Summary */
.single-product .product_title { font-size: clamp(1.6rem, 3vw, 2.3rem); margin-bottom: 0.2em; }
.single-product .woocommerce-product-rating { display: flex; align-items: center; gap: 0.6rem; margin-bottom: 0.7rem; font-size: 0.85rem; }
.single-product .woocommerce-product-rating .star-rating { display: none; }
.single-product p.price { font-size: 1.5rem; font-weight: 600; color: var(--c-ink); margin-bottom: 1rem; font-family: var(--font-head); }
.single-product p.price del { color: var(--c-ink-soft); font-weight: 400; font-size: 1.1rem; margin-right: 0.4em; }
.single-product p.price ins { text-decoration: none; color: var(--c-maroon); }
.single-product .woocommerce-product-details__short-description { color: var(--c-ink-soft); font-size: 0.95rem; }

.product-highlights { list-style: none; margin: 1.1rem 0; padding: 1.1rem 1.3rem; display: flex; flex-direction: column; gap: 0.55rem; background: var(--c-ivory); border: 1px solid var(--c-border); border-radius: var(--radius-md); }
.product-highlights li { display: flex; align-items: center; gap: 0.7rem; font-size: 0.9rem; }
.product-highlights .pt-icon { color: var(--c-gold); flex: none; }

.single-product .product_meta { font-size: 0.82rem; color: var(--c-ink-soft); display: flex; flex-direction: column; gap: 0.2rem; margin: 0.9rem 0; padding: 0.9rem 0; border-block: 1px dashed var(--c-border); }
.single-product .product_meta > span { display: block; }
.single-product .product_meta a { font-weight: 500; }

.product-assurances { list-style: none; margin: 1.2rem 0 0; padding: 0; display: flex; flex-direction: column; gap: 0.6rem; }
.product-assurances li { display: flex; align-items: center; gap: 0.75rem; font-size: 0.86rem; color: var(--c-ink-soft); }
.product-assurances .pt-icon { color: var(--c-peacock); flex: none; }

/* Stock */
.single-product .stock { font-weight: 500; font-size: 0.88rem; }
.single-product .stock.in-stock { color: var(--c-success); }
.single-product .stock.out-of-stock { color: var(--c-error); }

/* Quantity + Add to cart */
.single-product form.cart { display: flex; flex-wrap: wrap; align-items: center; gap: 0.9rem; margin: 1.4rem 0; }
.single-product form.cart div.quantity { display: flex; }
.single-product form.cart .qty {
  width: 88px; text-align: center;
  border-radius: var(--radius-pill);
  padding: 0.8em 0.6em;
}
.single-product form.cart .single_add_to_cart_button {
  flex: 1; min-width: 220px;
  padding: 1em 2em;
  font-family: var(--font-btn); font-size: 0.82rem; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase;
  background: var(--c-purple); color: #fff;
  border: 0; border-radius: var(--radius-pill);
  cursor: pointer;
  transition: all var(--dur) var(--ease);
}
.single-product form.cart .single_add_to_cart_button:hover { background: var(--c-gold); box-shadow: var(--shadow-gold); transform: translateY(-2px); }

/* Variations */
.single-product table.variations { border-collapse: collapse; width: 100%; margin: 0; }
.single-product table.variations th, .single-product table.variations td { padding: 0.4rem 0; text-align: left; }
.single-product table.variations label { font-weight: 600; }
.single-product .reset_variations { font-size: 0.78rem; color: var(--c-maroon); }

/* Tabs */
.single-product .woocommerce-tabs { margin-top: 2.5rem; }
.single-product .woocommerce-tabs ul.tabs {
  display: flex; flex-wrap: wrap; gap: 0.4rem;
  list-style: none; margin: 0 0 -1px; padding: 0;
  border-bottom: 1px solid var(--c-border);
}
.single-product .woocommerce-tabs ul.tabs li a {
  display: inline-block;
  padding: 0.8em 1.6em;
  font-family: var(--font-btn); font-size: 0.75rem; font-weight: 600;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--c-ink-soft);
  border: 1px solid transparent;
  border-bottom: 2px solid transparent;
  border-radius: var(--radius-sm) var(--radius-sm) 0 0;
}
.single-product .woocommerce-tabs ul.tabs li.active a {
  color: var(--c-purple);
  border-color: var(--c-border) var(--c-border) var(--c-white);
  border-bottom: 2px solid var(--c-gold);
  background: var(--c-white);
}
.single-product .woocommerce-tabs .panel {
  padding: 2rem 0.2rem;
  max-width: 860px;
}
.single-product .woocommerce-tabs .panel h2:first-child { font-size: 1.3rem; }
.tab-list { display: flex; flex-direction: column; gap: 0.5rem; }

/* Attributes table */
table.woocommerce-product-attributes { width: 100%; border-collapse: collapse; }
table.woocommerce-product-attributes th, table.woocommerce-product-attributes td {
  text-align: left; padding: 0.75rem 1rem;
  border-bottom: 1px solid var(--c-border);
  font-size: 0.9rem;
}
table.woocommerce-product-attributes th { width: 220px; color: var(--c-purple-deep); font-weight: 600; background: var(--c-ivory); }
table.woocommerce-product-attributes td p { margin: 0; }

/* Reviews */
#reviews .commentlist { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 1.1rem; }
#reviews .comment_container {
  display: flex; gap: 1rem;
  padding: 1.2rem 1.4rem;
  background: var(--c-ivory);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-md);
}
#reviews .comment_container img.avatar { border-radius: 50%; width: 46px; height: 46px; }
#reviews .comment-text { flex: 1; }
#reviews .comment-text .star-rating { float: right; }
#reviews .meta { font-size: 0.8rem; color: var(--c-ink-soft); }
#reviews .comment-form-rating .stars a { color: var(--c-gold); }

/* Woo star rating (uses font fallback → rebuild with unicode) */
.star-rating { color: var(--c-gold); }

/* Related & recently viewed */
.single-product .related.products > h2, .single-product .upsells.products > h2 {
  font-size: 1.6rem; text-align: center; margin: 2.2rem 0 1.6rem;
}
.recently-viewed { padding-top: 1rem; }

/* Sticky mobile add-to-cart */
.sticky-atc {
  position: fixed; left: 0; right: 0; bottom: 60px; z-index: 180;
  display: none;
  align-items: center; gap: 1rem;
  padding: 0.7rem 1.1rem;
  background: var(--c-white);
  border-top: 1px solid var(--c-border);
  box-shadow: 0 -6px 18px rgba(46, 38, 109, 0.12);
  transform: translateY(130%);
  transition: transform var(--dur) var(--ease);
}
.sticky-atc.is-visible { transform: none; }
.sticky-atc__info { min-width: 0; }
.sticky-atc__title { font-size: 0.85rem; font-weight: 600; color: var(--c-purple-deep); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; margin: 0; }
.sticky-atc__price { font-size: 0.85rem; color: var(--c-maroon); font-weight: 600; margin: 0; }
.sticky-atc .pt-btn { margin-left: auto; flex: none; }

/* 17. Cart & checkout ---------------------------------------------------------------------- */
.woocommerce-notices-wrapper { margin-bottom: 1.2rem; }
.woocommerce-message, .woocommerce-info, .woocommerce-error li, ul.woocommerce-error {
  padding: 0.95rem 1.3rem;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  margin: 0 0 0.8rem;
  list-style: none;
}
.woocommerce-message { background: #EDF7F0; border-left: 3px solid var(--c-success); color: #1E5236; }
.woocommerce-info { background: var(--c-purple-soft); border-left: 3px solid var(--c-purple); color: var(--c-purple-deep); }
ul.woocommerce-error { padding: 0; background: none; }
.woocommerce-error li { background: #FBEEEC; border-left: 3px solid var(--c-error); color: #7C2118; }
.woocommerce-message a.button, .woocommerce-info a.button { float: right; background: none; border: 0; color: inherit; font-weight: 600; text-decoration: underline; padding: 0; }

.freeship-nudge {
  margin-bottom: 1.4rem; padding: 1.1rem 1.4rem;
  background: var(--c-gold-soft);
  border: 1px solid var(--c-gold);
  border-radius: var(--radius-md);
}
.freeship-nudge p { margin: 0 0 0.6rem; font-size: 0.9rem; color: var(--c-ink); }
.freeship-nudge__bar { height: 7px; background: rgba(216, 154, 43, 0.25); border-radius: var(--radius-pill); overflow: hidden; }
.freeship-nudge__bar span { display: block; height: 100%; background: var(--c-gold); border-radius: var(--radius-pill); transition: width 0.5s var(--ease); }

table.shop_table {
  width: 100%; border-collapse: collapse;
  border: 1px solid var(--c-border);
  border-radius: var(--radius-md);
  overflow: hidden;
}
table.shop_table th, table.shop_table td { padding: 0.95rem 1.1rem; border-bottom: 1px solid var(--c-border); text-align: left; font-size: 0.92rem; }
table.shop_table thead th { background: var(--c-ivory); font-family: var(--font-btn); font-size: 0.7rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--c-purple-deep); }
table.shop_table img { width: 74px; border-radius: var(--radius-sm); }
table.shop_table .product-remove a { font-size: 1.3rem; color: var(--c-maroon); display: inline-flex; width: 30px; height: 30px; align-items: center; justify-content: center; border-radius: 50%; }
table.shop_table .product-remove a:hover { background: #FBEEEC; }
.woocommerce-cart table.cart td.actions { padding-top: 1.2rem; }
.woocommerce-cart table.cart td.actions .coupon { display: inline-flex; gap: 0.6rem; float: left; }
.woocommerce-cart table.cart td.actions .coupon input { width: 180px; }
.woocommerce-cart table.cart td.actions > .button { float: right; }

button.button, a.button, input.button, #respond input#submit {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 0.8em 1.8em;
  font-family: var(--font-btn); font-size: 0.76rem; font-weight: 600;
  letter-spacing: 0.12em; text-transform: uppercase;
  background: var(--c-purple); color: #fff;
  border: 1.5px solid var(--c-purple); border-radius: var(--radius-pill);
  cursor: pointer;
  transition: all var(--dur) var(--ease);
}
button.button:hover, a.button:hover, input.button:hover, #respond input#submit:hover {
  background: var(--c-purple-deep); color: #fff; transform: translateY(-1px); box-shadow: var(--shadow-md);
}
button.button:disabled, button.button[aria-disabled="true"] { opacity: 0.5; cursor: not-allowed; }
a.checkout-button { background: var(--c-gold) !important; border-color: var(--c-gold) !important; font-size: 0.84rem !important; width: 100%; }
a.checkout-button:hover { background: var(--c-gold-deep) !important; box-shadow: var(--shadow-gold) !important; }

.cart-collaterals { margin-top: 2rem; display: flex; justify-content: flex-end; }
.cart_totals { width: min(460px, 100%); background: var(--c-ivory); border: 1px solid var(--c-border); border-radius: var(--radius-md); padding: 1.6rem; }
.cart_totals h2 { font-size: 1.25rem; }
.cart_totals table.shop_table { border: 0; }
.cart_totals table.shop_table th { background: none; width: 40%; }

/* Checkout */
.woocommerce-checkout form.checkout { display: grid; grid-template-columns: 1.15fr 0.85fr; gap: 2.5rem; align-items: start; }
#customer_details { display: flex; flex-direction: column; gap: 1rem; }
.woocommerce-checkout #order_review_heading { grid-column: 2; margin: 0; font-size: 1.3rem; }
.woocommerce-checkout #order_review {
  grid-column: 2;
  background: var(--c-ivory);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-md);
  padding: 1.6rem;
  position: sticky; top: calc(var(--header-h) + 16px);
}
.woocommerce-checkout #customer_details { grid-column: 1; grid-row: 1 / span 3; }
.form-row label { margin-bottom: 0.25rem; }
.woocommerce form .form-row { margin-bottom: 0.9rem; }
.woocommerce form .form-row .required { color: var(--c-maroon); text-decoration: none; }
#payment .wc_payment_methods { list-style: none; margin: 0 0 1.2rem; padding: 0; display: flex; flex-direction: column; gap: 0.6rem; }
#payment .wc_payment_method {
  padding: 0.9rem 1.1rem;
  background: var(--c-white);
  border: 1.5px solid var(--c-border);
  border-radius: var(--radius-sm);
}
#payment .wc_payment_method label { font-weight: 600; margin-left: 0.4rem; }
#payment .payment_box { font-size: 0.84rem; color: var(--c-ink-soft); margin-top: 0.5rem; padding-left: 1.7rem; }
#place_order { width: 100%; background: var(--c-gold); border-color: var(--c-gold); font-size: 0.86rem; padding: 1.1em; }
#place_order:hover { background: var(--c-gold-deep); box-shadow: var(--shadow-gold); }

/* Order received */
.woocommerce-order .woocommerce-thankyou-order-received {
  font-family: var(--font-head); font-size: 1.5rem; color: var(--c-success);
  margin-bottom: 1.4rem;
}
ul.woocommerce-thankyou-order-details { list-style: none; margin: 0 0 2rem; padding: 1.4rem; background: var(--c-ivory); border-radius: var(--radius-md); display: flex; flex-wrap: wrap; gap: 1.6rem; border: 1px solid var(--c-border); }
ul.woocommerce-thankyou-order-details li { font-size: 0.8rem; color: var(--c-ink-soft); }
ul.woocommerce-thankyou-order-details strong { display: block; font-size: 1rem; color: var(--c-purple-deep); }

/* 18. Account ------------------------------------------------------------------------------ */
.woocommerce-account .woocommerce { display: grid; grid-template-columns: 250px 1fr; gap: 2.5rem; padding-block: 2.5rem 4rem; }
.woocommerce-account .woocommerce > *:not(.woocommerce-MyAccount-navigation):not(.woocommerce-MyAccount-content) { grid-column: 1 / -1; }
.woocommerce-MyAccount-navigation ul { list-style: none; margin: 0; padding: 0.6rem; background: var(--c-ivory); border: 1px solid var(--c-border); border-radius: var(--radius-md); display: flex; flex-direction: column; gap: 2px; }
.woocommerce-MyAccount-navigation a {
  display: block; padding: 0.7rem 1.1rem;
  font-size: 0.9rem; font-weight: 500;
  border-radius: var(--radius-sm);
  color: var(--c-ink);
}
.woocommerce-MyAccount-navigation li.is-active a, .woocommerce-MyAccount-navigation a:hover { background: var(--c-purple); color: #fff; }
.woocommerce-MyAccount-content > h2, .woocommerce-MyAccount-content > h3 { font-size: 1.35rem; }

/* Login/register */
.woocommerce-form-login, .woocommerce-form-register {
  max-width: 440px;
  padding: 2rem;
  background: var(--c-white);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}
.u-columns.col2-set { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; }

/* 19. Blog ---------------------------------------------------------------------------------- */
.single-article__hero { padding-top: 2rem; text-align: center; }
.single-article__date {
  font-family: var(--font-btn); font-size: 0.7rem; font-weight: 600;
  letter-spacing: 0.2em; text-transform: uppercase; color: var(--c-copper);
}
.single-article__title { margin: 0.4em 0 0.4em; }
.single-article__lede { color: var(--c-ink-soft); font-size: 1.05rem; max-width: 42em; margin-inline: auto; }
.single-article__cover { margin-top: 2rem; }
.single-article__cover img { border-radius: var(--radius-lg); box-shadow: var(--shadow-md); width: 100%; }
.single-article__content { padding-block: 2.6rem 1rem; font-size: 1.02rem; }
.single-article__content h2 { margin-top: 1.6em; }
.single-article__content img { border-radius: var(--radius-md); }
.single-article__content blockquote {
  margin: 2rem 0; padding: 1.2rem 1.8rem;
  border-left: 3px solid var(--c-gold);
  background: var(--c-ivory);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  font-family: var(--font-head); font-style: italic; font-size: 1.15rem;
  color: var(--c-purple-deep);
}
.single-article__footer { padding-block: 1.5rem 3rem; }
.single-article__nav { display: flex; justify-content: space-between; gap: 1.5rem; margin-top: 1.4rem; padding-top: 1.4rem; border-top: 1px solid var(--c-border); font-size: 0.9rem; }
.single-article__nav-next { margin-left: auto; text-align: right; }

.journal-grid--archive { padding-top: 0.4rem; }

.pt-pagination { text-align: center; margin-top: 3rem; }
.pt-pagination .page-numbers {
  display: inline-flex; align-items: center; justify-content: center;
  min-width: 42px; height: 42px; padding: 0 0.6em; margin: 0 3px;
  border: 1px solid var(--c-border); border-radius: 50%;
  font-size: 0.9rem; color: var(--c-ink);
  transition: all var(--dur) var(--ease);
}
.pt-pagination .page-numbers.current { background: var(--c-purple); border-color: var(--c-purple); color: #fff; }
.pt-pagination a.page-numbers:hover { border-color: var(--c-gold); color: var(--c-maroon); }

/* Comments */
.pt-comments { padding-block: 1rem 3.5rem; }
.pt-comments__list { list-style: none; margin: 0 0 2rem; padding: 0; }
.pt-comments .comment-body { padding: 1.2rem 1.4rem; background: var(--c-ivory); border: 1px solid var(--c-border); border-radius: var(--radius-md); margin-bottom: 1rem; }
.pt-comments .comment-meta { display: flex; align-items: center; gap: 0.8rem; font-size: 0.82rem; }
.pt-comments .avatar { border-radius: 50%; }
.pt-comments .reply { font-size: 0.8rem; }

/* 20. Misc components ------------------------------------------------------------------------- */
.pt-accordion { display: flex; flex-direction: column; gap: 0.8rem; }
.pt-accordion__item {
  background: var(--c-white);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: box-shadow var(--dur) var(--ease);
}
.pt-accordion__item[open] { box-shadow: var(--shadow-sm); border-color: var(--c-gold); }
.pt-accordion__item summary {
  padding: 1.1rem 3rem 1.1rem 1.4rem;
  font-weight: 600; font-size: 0.98rem; color: var(--c-purple-deep);
  cursor: pointer;
  list-style: none;
  position: relative;
}
.pt-accordion__item summary::-webkit-details-marker { display: none; }
.pt-accordion__item summary::after {
  content: "+";
  position: absolute; right: 1.3rem; top: 50%;
  transform: translateY(-50%);
  font-size: 1.4rem; color: var(--c-gold);
  transition: transform var(--dur) var(--ease);
}
.pt-accordion__item[open] summary::after { transform: translateY(-50%) rotate(45deg); }
.pt-accordion__body { padding: 0 1.4rem 1.2rem; font-size: 0.92rem; color: var(--c-ink-soft); }

.faq-cta { margin-top: 3rem; text-align: center; padding: 2.4rem; background: var(--c-ivory); border-radius: var(--radius-lg); border: 1px solid var(--c-border); }
.faq-cta h2 { margin-bottom: 0.2em; }
.faq-cta p { color: var(--c-ink-soft); }

/* Contact */
.contact-layout { display: grid; grid-template-columns: 1fr 1.1fr; gap: 2.5rem; align-items: start; }
.contact-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; }
.contact-card {
  padding: 1.6rem 1.4rem;
  background: var(--c-white);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}
.contact-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.contact-card .pt-icon { color: var(--c-gold); }
.contact-card h2 { font-size: 1.05rem; margin: 0.7rem 0 0.3rem; }
.contact-card p { margin: 0; font-size: 0.9rem; }
.contact-card__note { color: var(--c-ink-soft); font-size: 0.78rem !important; margin-top: 0.3rem !important; }
.contact-form-wrap {
  padding: 2rem;
  background: var(--c-white);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}
.contact-form-wrap h2 { font-size: 1.4rem; }
.contact-form__success { margin-top: 1rem; padding: 0.9rem 1.2rem; background: #EDF7F0; border-left: 3px solid var(--c-success); color: #1E5236; border-radius: var(--radius-sm); font-size: 0.9rem; }

/* Wishlist page */
.wishlist-page__empty { text-align: center; padding: 3rem 1rem; }
.wishlist-page__empty .pt-icon { color: var(--c-maroon); }
.wishlist-page__empty h2 { margin-top: 1rem; }
.wishlist-page__empty p { color: var(--c-ink-soft); margin-bottom: 1.6rem; }

/* Compare */
.compare-tray {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 200;
  background: var(--c-purple-deep); color: var(--c-ivory);
  box-shadow: 0 -8px 24px rgba(34, 28, 82, 0.35);
  animation: pt-slide-up 0.3s var(--ease);
}
.compare-tray__inner { display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding-block: 0.75rem; }
.compare-tray__label { display: flex; align-items: center; gap: 0.6rem; margin: 0; font-size: 0.9rem; }
.compare-tray__label .pt-icon { color: var(--c-gold); }
.compare-tray__actions { display: flex; gap: 0.6rem; }
.compare-tray .pt-btn--ghost { --btn-fg: rgba(251, 248, 242, 0.8); }

.compare-table-wrap { overflow-x: auto; padding: 2.4rem 1.8rem 1.8rem; }
.compare-table { border-collapse: collapse; width: 100%; min-width: 640px; }
.compare-table th, .compare-table td { padding: 0.85rem 1rem; border-bottom: 1px solid var(--c-border); text-align: left; font-size: 0.9rem; vertical-align: top; }
.compare-table thead td { border-bottom: 2px solid var(--c-gold); }
.compare-table th { width: 130px; font-family: var(--font-btn); font-size: 0.68rem; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; color: var(--c-maroon); }
.compare-table img { width: 110px; border-radius: var(--radius-sm); margin-bottom: 0.5rem; }
.compare-table__title { font-weight: 600; color: var(--c-purple-deep); display: block; }
.compare-table__remove { font-size: 0.76rem; color: var(--c-maroon); background: none; border: 0; cursor: pointer; padding: 0; margin-top: 0.3rem; text-decoration: underline; }

/* Quick view */
.quickview { display: grid; grid-template-columns: 1fr 1.1fr; }
.quickview__media { background: var(--c-ivory); }
.quickview__media img { width: 100%; height: 100%; object-fit: cover; }
.quickview__body { padding: 2.4rem 2.2rem; display: flex; flex-direction: column; align-items: flex-start; }
.quickview__cats { font-family: var(--font-btn); font-size: 0.66rem; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase; margin-bottom: 0.5rem; }
.quickview__title { font-size: 1.55rem; margin-bottom: 0.25em; }
.quickview__price { font-family: var(--font-head); font-size: 1.3rem; font-weight: 600; color: var(--c-maroon); }
.quickview__price del { color: var(--c-ink-soft); font-size: 1rem; margin-right: 0.4em; }
.quickview__price ins { text-decoration: none; }
.quickview__excerpt { font-size: 0.9rem; color: var(--c-ink-soft); flex: 1; }
.quickview__add { margin: 1.2rem 0 0.8rem; }
.quickview__full { font-size: 0.85rem; font-weight: 600; }

/* 404 & search empty */
.error-404, .search-empty { text-align: center; }
.error-404__code {
  font-family: var(--font-head); font-size: clamp(5rem, 14vw, 9rem); font-weight: 700;
  line-height: 1; margin: 0 0 0.1em;
  background: linear-gradient(120deg, var(--c-gold), var(--c-maroon));
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.error-404 p, .search-empty p { color: var(--c-ink-soft); }
.error-404__actions { display: flex; justify-content: center; gap: 0.9rem; flex-wrap: wrap; margin: 1.8rem 0; }
.error-404__search { max-width: 420px; margin: 0 auto; }
.search-empty .pt-icon { color: var(--c-gold); }

.pt-searchform { display: flex; gap: 0.6rem; }
.pt-searchform__submit {
  flex: none; width: 46px;
  display: flex; align-items: center; justify-content: center;
  background: var(--c-purple); color: #fff;
  border: 0; border-radius: var(--radius-sm); cursor: pointer;
  transition: background var(--dur) var(--ease);
}
.pt-searchform__submit:hover { background: var(--c-gold); }

/* Page content typographic rhythm */
.page-content h2 { margin-top: 1.5em; font-size: 1.5rem; }
.page-content h3 { margin-top: 1.2em; }
.page-content ul li, .page-content ol li { margin-bottom: 0.4em; }
.page-content table { width: 100%; border-collapse: collapse; margin: 1.4rem 0; }
.page-content table th, .page-content table td { padding: 0.7rem 1rem; border: 1px solid var(--c-border); text-align: left; font-size: 0.9rem; }
.page-content table th { background: var(--c-ivory); }

/* 21. Footer -------------------------------------------------------------------------------- */
.site-footer {
  background:
    radial-gradient(ellipse at 0% 0%, rgba(216, 154, 43, 0.07), transparent 40%),
    var(--c-purple-deep);
  color: rgba(251, 248, 242, 0.8);
  font-size: 0.9rem;
}
.site-footer__grid {
  display: grid;
  grid-template-columns: 1.5fr 0.8fr 0.9fr 0.8fr 1.3fr;
  gap: 2.5rem;
  padding-block: 3.6rem 2.8rem;
}
.site-footer__brand p { font-size: 0.86rem; line-height: 1.75; margin-top: 1.1rem; }
.site-footer__social { display: flex; gap: 0.7rem; margin-top: 1.2rem; }
.site-footer__social a {
  display: flex; align-items: center; justify-content: center;
  width: 40px; height: 40px;
  border: 1px solid rgba(251, 248, 242, 0.25);
  border-radius: 50%;
  color: rgba(251, 248, 242, 0.85);
  transition: all var(--dur) var(--ease);
}
.site-footer__social a:hover { background: var(--c-gold); border-color: var(--c-gold); color: #fff; transform: translateY(-3px); }
.site-footer__col h3 {
  font-family: var(--font-btn); font-size: 0.74rem; font-weight: 700;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--c-gold);
  margin-bottom: 1.1rem;
}
.site-footer__menu { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 0.55rem; }
.site-footer__menu a { color: rgba(251, 248, 242, 0.78); font-size: 0.88rem; }
.site-footer__menu a:hover { color: var(--c-gold); padding-left: 4px; transition: all 0.2s var(--ease); }
.site-footer__newsletter p { font-size: 0.86rem; }
.site-footer__newsletter .newsletter-form { margin-top: 0.9rem; }
.site-footer__newsletter input {
  background: rgba(251, 248, 242, 0.08);
  border-color: rgba(251, 248, 242, 0.25);
  color: var(--c-ivory);
}
.site-footer__newsletter input::placeholder { color: rgba(251, 248, 242, 0.45); }
.site-footer__address { display: flex; gap: 0.6rem; margin-top: 1.2rem; font-style: normal; font-size: 0.8rem; }
.site-footer__address .pt-icon { color: var(--c-gold); flex: none; margin-top: 3px; }
.site-footer__gstin { font-size: 0.76rem; color: rgba(251, 248, 242, 0.55); margin: 0.5rem 0 0; }
.site-footer__bar { border-top: 1px solid rgba(251, 248, 242, 0.12); }
.site-footer__bar-inner {
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  padding-block: 1.1rem;
  flex-wrap: wrap;
}
.site-footer__bar p { margin: 0; font-size: 0.78rem; color: rgba(251, 248, 242, 0.55); }
.site-footer__bar a { color: rgba(251, 248, 242, 0.85); text-decoration: underline; text-underline-offset: 2px; }
.site-footer__bar a:hover { color: var(--c-gold); }
.site-footer__pay { display: flex; gap: 0.5rem; }
.site-footer__pay span {
  padding: 0.2em 0.75em;
  border: 1px solid rgba(251, 248, 242, 0.2);
  border-radius: 5px;
  font-size: 0.68rem; font-weight: 600;
  color: rgba(251, 248, 242, 0.7);
}

/* 22. Mobile bottom nav ------------------------------------------------------------------------ */
.mobile-bottom-nav {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 190;
  display: none;
  background: var(--c-white);
  border-top: 1px solid var(--c-border);
  box-shadow: 0 -4px 16px rgba(46, 38, 109, 0.09);
  padding: 0.35rem 0 max(0.35rem, env(safe-area-inset-bottom));
}
.mobile-bottom-nav a, .mobile-bottom-nav button {
  flex: 1;
  display: flex; flex-direction: column; align-items: center; gap: 2px;
  padding: 0.3rem 0;
  background: none; border: 0;
  font-family: var(--font-btn); font-size: 0.58rem; font-weight: 600;
  letter-spacing: 0.06em; text-transform: uppercase;
  color: var(--c-ink-soft); cursor: pointer;
}
.mobile-bottom-nav a[aria-current="page"], .mobile-bottom-nav a:hover, .mobile-bottom-nav button:hover { color: var(--c-purple); }

/* Mobile drawer nav */
.mobile-nav__list { list-style: none; margin: 0; padding: 0.6rem 0; }
.mobile-nav__list > li { border-bottom: 1px solid var(--c-border); }
.mobile-nav__list a {
  display: block; padding: 0.95rem 1.5rem;
  font-family: var(--font-btn); font-size: 0.82rem; font-weight: 600;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--c-ink);
}
.mobile-nav__list .sub-menu { list-style: none; margin: 0; padding: 0 0 0.6rem; background: var(--c-ivory); }
.mobile-nav__list .sub-menu a { padding: 0.6rem 2.2rem; font-family: var(--font-body); font-weight: 400; text-transform: none; letter-spacing: 0; font-size: 0.9rem; }
.mobile-nav__contact { margin-top: auto; padding: 1.4rem 1.5rem 2rem; display: flex; flex-direction: column; gap: 0.8rem; border-top: 1px solid var(--c-border); }
.mobile-nav__contact a { display: flex; align-items: center; gap: 0.6rem; font-size: 0.9rem; font-weight: 500; }

/* 23. Responsive -------------------------------------------------------------------------------- */
@media (max-width: 1080px) {
  .primary-nav { display: none; }
  .masthead__burger { display: inline-flex; }
  .site-footer__grid { grid-template-columns: 1fr 1fr; }
  .single-product div.product { grid-template-columns: 1fr; }
  .single-product div.product > .summary { grid-column: 1; grid-row: auto; }
  .single-product div.product > *:not(.summary):not(.woocommerce-product-gallery) { grid-column: 1; }
  .single-product div.product .woocommerce-product-gallery { grid-column: 1; grid-row: 1; position: static; margin-bottom: 1.5rem; }
  .woocommerce-checkout form.checkout { grid-template-columns: 1fr; }
  .woocommerce-checkout #order_review_heading, .woocommerce-checkout #order_review { grid-column: 1; position: static; }
  .category-grid { grid-template-columns: repeat(3, 1fr); grid-auto-rows: 230px; }
  .contact-layout { grid-template-columns: 1fr; }
}

@media (max-width: 860px) {
  ul.products, ul.products.columns-4 { grid-template-columns: repeat(2, 1fr); gap: 1.2rem 0.9rem; }
  .journal-grid { grid-template-columns: 1fr 1fr; }
  .why-us__grid { grid-template-columns: 1fr 1fr; }
  .collection-grid { grid-template-columns: 1fr; max-width: 480px; margin-inline: auto; }
  .editorial-banner__inner { grid-template-columns: 1fr; }
  .editorial-banner__badge { right: 10px; }
  .trust-strip__inner { grid-template-columns: 1fr 1fr; }
  .stats-row { grid-template-columns: 1fr 1fr; }
  .instagram-strip { grid-template-columns: repeat(3, 1fr); }
  .category-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 200px; }
  .woocommerce-account .woocommerce { grid-template-columns: 1fr; }
  .u-columns.col2-set { grid-template-columns: 1fr; }
  .topbar__contact span { display: none; }
  .topbar__contact { gap: 0.9rem; }
  .quickview { grid-template-columns: 1fr; }
  .quickview__media { max-height: 320px; overflow: hidden; }
}

@media (max-width: 640px) {
  body { padding-bottom: 58px; } /* room for bottom nav */
  .mobile-bottom-nav { display: flex; }
  .mobile-bottom-nav a, .mobile-bottom-nav button { min-width: 0; font-size: 0.54rem; letter-spacing: 0.02em; }
  /* Compact masthead: burger + logo + search/cart only */
  .masthead__inner { gap: 0.6rem; }
  .masthead__action { width: 38px; height: 38px; }
  .masthead__actions .masthead__action[aria-label*="account"],
  .masthead__actions .header-wishlist { display: none; }
  .site-logo__mark { width: 38px; height: 38px; }
  .site-logo__name { font-size: 1.22rem; }
  .site-logo__tagline { font-size: 0.5rem; letter-spacing: 0.22em; }
  .sticky-atc { display: flex; }
  .journal-grid, .why-us__grid { grid-template-columns: 1fr; }
  .hero { min-height: 520px; height: 82vh; }
  .hero__ctas .pt-btn { width: 100%; }
  .site-footer__grid { grid-template-columns: 1fr; gap: 1.8rem; }
  .site-footer__bar-inner { justify-content: center; text-align: center; }
  .shop-toolbar { flex-wrap: wrap; gap: 0.7rem; }
  .shop-toolbar__order { margin-left: 0; width: 100%; }
  .cart-collaterals { justify-content: stretch; }
  .cart_totals { width: 100%; }
  .woocommerce-cart table.cart td.actions .coupon { float: none; width: 100%; margin-bottom: 0.8rem; }
  .woocommerce-cart table.cart td.actions .coupon input { flex: 1; width: auto; }
  .woocommerce-cart table.cart td.actions > .button { float: none; width: 100%; }
  table.shop_table thead { display: none; }
  .woocommerce-cart table.shop_table tr { display: grid; grid-template-columns: 80px 1fr; gap: 0 1rem; padding: 0.9rem 0; }
  .woocommerce-cart table.shop_table td { border: 0; padding: 0.2rem 0; }
  .woocommerce-cart table.shop_table td.product-thumbnail { grid-row: span 4; }
  .back-to-top { bottom: 130px; }
  .whatsapp-fab { bottom: 68px; }
  .pt-toasts { bottom: 128px; }
  .compare-tray { bottom: 58px; }
  .contact-cards { grid-template-columns: 1fr; }
}

/* 24. Motion & accessibility --------------------------------------------------------------------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  [data-reveal] { opacity: 1; transform: none; }
  .hero__slide .hero__eyebrow, .hero__slide .hero__title,
  .hero__slide .hero__text, .hero__slide .hero__ctas { opacity: 1; transform: none; }
}

/* Print */
@media print {
  .topbar, .masthead, .site-footer, .mobile-bottom-nav, .whatsapp-fab,
  .back-to-top, .trust-strip, .compare-tray { display: none !important; }
}
