/* =============================================
   DAWN WP — CSS
   Faithful 1:1 port of Shopify Dawn theme
   ============================================= */

@import url('https://fonts.googleapis.com/css2?family=Assistant:wght@400;500;600;700&display=swap');

/* ── Design Tokens (Dawn defaults) ──────────── */
:root {
  --color-background:         255 255 255;
  --color-foreground:         18 18 18;
  --color-button:             18 18 18;
  --color-button-text:        255 255 255;
  --color-secondary-button:   18 18 18;
  --color-border:             217 217 217;
  --color-icon:               18 18 18;
  --color-background-contrast:243 243 243;
  --color-foreground-muted:   117 117 117;
  --color-badge-bg:           255 255 255;
  --color-badge-fg:           18 18 18;
  --color-announcement-bg:    18 18 18;
  --color-announcement-text:  255 255 255;

  --font-body-family:    'Assistant', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-heading-family: 'Assistant', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-body-weight:    400;
  --font-heading-weight: 600;
  --font-body-size:      1.5rem;

  --page-width:            1200px;
  --page-width-margin:     1.5rem;
  --section-padding-top:   55px;
  --section-padding-bottom:55px;

  --buttons-radius:        0px;
  --inputs-radius:         0px;
  --variant-pills-radius:  40px;
  --badge-radius:          40px;
  --card-radius:           0px;
  --media-radius:          0px;

  --inputs-border-opacity: 0.55;
  --buttons-border-width:  1px;

  --duration: 200ms;
  --ease:     ease;
}

/* ── Reset ──────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { font-size: 62.5%; scroll-behavior: smooth; }

body {
  background: rgb(var(--color-background));
  color: rgb(var(--color-foreground));
  font-family: var(--font-body-family);
  font-weight: var(--font-body-weight);
  font-size: var(--font-body-size);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading-family);
  font-weight: var(--font-heading-weight);
  line-height: 1.2;
  color: rgb(var(--color-foreground));
}

h1 { font-size: 4rem; }
h2 { font-size: 2.8rem; }
h3 { font-size: 2rem; }
h4 { font-size: 1.6rem; }
h5 { font-size: 1.4rem; }

p { margin-bottom: 1rem; }
a { color: rgb(var(--color-foreground)); }
img, video { max-width: 100%; height: auto; display: block; }
ul, ol { list-style: none; }

:focus-visible {
  outline: 0.2rem solid rgba(var(--color-foreground), 0.5);
  outline-offset: 0.3rem;
}

/* ── Layout ─────────────────────────────────── */
.container, .page-width {
  max-width: var(--page-width);
  margin: 0 auto;
  padding: 0 var(--page-width-margin);
}

@media (min-width: 750px) {
  .container, .page-width { padding: 0 5rem; }
}

/* =============================================
   ANNOUNCEMENT BAR
   ============================================= */
.announcement-bar {
  background: rgb(var(--color-announcement-bg));
  color: rgb(var(--color-announcement-text));
  text-align: center;
  padding: 1rem var(--page-width-margin);
  position: relative;
  font-size: 1.4rem;
  line-height: 1.5;
}

.announcement-bar a { color: rgb(var(--color-announcement-text)); text-decoration: underline; }

.announcement-bar__close {
  position: absolute;
  right: 1.5rem;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  cursor: pointer;
  color: rgb(var(--color-announcement-text));
  padding: 0.5rem;
  display: flex;
  align-items: center;
  line-height: 1;
}

/* =============================================
   HEADER
   ============================================= */
.site-header {
  background: rgb(var(--color-background));
  border-bottom: 0.1rem solid rgba(var(--color-foreground), 0.08);
  position: sticky;
  top: 0;
  z-index: 100;
}

/* Grid: left-side takes remaining space, right-side is auto */
.header-layout {
  display: grid !important;
  grid-template-columns: 1fr auto !important;
  align-items: center !important;
  padding: 0 var(--page-width-margin);
  min-height: 5.6rem;
  max-width: var(--page-width);
  margin: 0 auto;
  gap: 0;
}

@media (min-width: 990px) {
  .header-layout { padding: 0 5rem; min-height: 6.4rem; }
}

/* Left: logo + nav as a horizontal row */
.header-left {
  display: flex !important;
  flex-direction: row !important;
  align-items: center !important;
  overflow: hidden;
  gap: 0;
  min-width: 0;
}

/* Right: icons as a horizontal row */
.header-right {
  display: flex !important;
  flex-direction: row !important;
  align-items: center !important;
  gap: 0;
}

/* Logo */
.site-logo {
  font-size: 1.6rem;
  font-weight: 700;
  color: rgb(var(--color-foreground));
  text-decoration: none;
  letter-spacing: 0.02em;
  display: inline-flex !important;
  align-items: center;
  white-space: nowrap;
  flex-shrink: 0;
}

.site-logo img { max-height: 3.6rem; width: auto; display: block; }

/* Primary nav: hidden on mobile, row on desktop */
.primary-nav {
  display: none !important;
}

@media (min-width: 990px) {
  .primary-nav {
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    flex-wrap: nowrap !important;
  }
}

/* Walker output: <div class="primary-nav__item"> */
.primary-nav > .primary-nav__item,
.primary-nav .primary-nav__item {
  display: block !important;
  position: relative;
  flex-shrink: 0;
}

.primary-nav > .primary-nav__item > a,
.primary-nav .primary-nav__item > a {
  display: block !important;
  padding: 0 1.2rem;
  font-size: 1.4rem;
  font-weight: 500;
  color: rgb(var(--color-foreground));
  text-decoration: none;
  line-height: 6.4rem;
  white-space: nowrap;
}

.primary-nav .primary-nav__item > a:hover { text-decoration: underline; text-underline-offset: 0.3rem; }
.primary-nav .primary-nav__item.active > a,
.primary-nav .primary-nav__item.current-menu-item > a { text-decoration: underline; text-underline-offset: 0.3rem; }

/* WP default <ul class="menu"> output */
.primary-nav > ul.menu {
  display: flex !important;
  flex-direction: row !important;
  align-items: center !important;
  list-style: none;
  margin: 0;
  padding: 0;
  flex-wrap: nowrap;
}

.primary-nav ul.menu > li { display: block; position: relative; flex-shrink: 0; }

.primary-nav ul.menu > li > a {
  display: block !important;
  padding: 0 1.2rem;
  font-size: 1.4rem;
  font-weight: 500;
  color: rgb(var(--color-foreground));
  text-decoration: none;
  line-height: 6.4rem;
  white-space: nowrap;
}

.primary-nav ul.menu > li > a:hover { text-decoration: underline; text-underline-offset: 0.3rem; }
.primary-nav ul.menu > li.current-menu-item > a { text-decoration: underline; text-underline-offset: 0.3rem; }

/* Dropdowns */
.primary-nav__dropdown,
.primary-nav .sub-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 20rem;
  background: rgb(var(--color-background));
  border: 0.1rem solid rgba(var(--color-foreground), 0.1);
  box-shadow: 0 0.6rem 2rem rgba(var(--color-foreground), 0.1);
  z-index: 200;
  padding: 0.8rem 0;
  list-style: none;
}

.primary-nav .primary-nav__item:hover .primary-nav__dropdown,
.primary-nav ul.menu > li:hover > .sub-menu { display: block; }
.primary-nav__dropdown .primary-nav__item > a,
.primary-nav .sub-menu > li > a { padding: 1rem 2rem !important; line-height: 1.5 !important; display: block; }

/* Header icon buttons */
.header-icon-btn {
  background: none !important;
  border: none !important;
  cursor: pointer;
  padding: 1rem;
  color: rgb(var(--color-foreground));
  display: inline-flex !important;
  flex-direction: row !important;
  align-items: center !important;
  justify-content: center !important;
  position: relative;
  text-decoration: none;
  transition: opacity var(--duration);
  flex-shrink: 0;
  line-height: 1;
}

.header-icon-btn:hover { opacity: 0.6; }
.header-icon-btn svg { width: 2rem; height: 2rem; display: block !important; }

/* Cart count */
.cart-count {
  position: absolute;
  bottom: 0.2rem;
  right: 0.2rem;
  min-width: 1.6rem;
  height: 1.6rem;
  background: rgb(var(--color-foreground));
  color: rgb(var(--color-background));
  border-radius: 50%;
  font-size: 0.9rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 0.3rem;
  line-height: 1;
}

.cart-count.hidden { display: none !important; }

/* Mobile hamburger */
.menu-toggle {
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.8rem 1rem 0.8rem 0;
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  color: rgb(var(--color-foreground));
  flex-shrink: 0;
}

.menu-toggle svg { width: 2rem; height: 2rem; display: block; }

@media (min-width: 990px) { .menu-toggle { display: none !important; } }

/* ── Search Modal ────────────────────────────── */
.search-modal {
  position: fixed;
  inset: 0;
  z-index: 300;
  display: flex;
  flex-direction: column;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.2s ease;
}

.search-modal.is-open {
  pointer-events: all;
  opacity: 1;
}

.search-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(var(--color-foreground), 0.5);
  z-index: 0;
}

.search-modal__inner {
  position: relative;
  z-index: 1;
  background: rgb(var(--color-background));
  width: 100%;
  transform: translateY(-1rem);
  transition: transform 0.25s ease;
  max-height: 70vh;
  overflow-y: auto;
}

.search-modal.is-open .search-modal__inner { transform: translateY(0); }

.search-modal__form {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  padding: 2rem var(--page-width-margin);
  border-bottom: 0.1rem solid rgba(var(--color-foreground), 0.1);
  max-width: var(--page-width);
  margin: 0 auto;
  width: 100%;
}

@media (min-width: 750px) { .search-modal__form { padding: 2rem 5rem; } }

.search-modal__icon { flex-shrink: 0; color: rgba(var(--color-foreground), 0.5); }

.search-modal__input {
  flex: 1;
  border: none;
  outline: none;
  font-size: 1.8rem;
  font-family: var(--font-body-family);
  color: rgb(var(--color-foreground));
  background: transparent;
  min-width: 0;
  caret-color: rgb(var(--color-foreground));
}

@media (min-width: 750px) { .search-modal__input { font-size: 2.4rem; } }

.search-modal__input::placeholder { color: rgba(var(--color-foreground), 0.4); }

.search-modal__close {
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.8rem;
  color: rgb(var(--color-foreground));
  display: flex;
  align-items: center;
  flex-shrink: 0;
  transition: opacity var(--duration);
}
.search-modal__close:hover { opacity: 0.6; }
.search-modal__close svg { width: 2rem; height: 2rem; }

.search-modal__results {
  max-width: var(--page-width);
  margin: 0 auto;
  padding: 2rem var(--page-width-margin);
}

@media (min-width: 750px) { .search-modal__results { padding: 2rem 5rem; } }

.search-modal__results p {
  font-size: 1.5rem;
  color: rgba(var(--color-foreground), 0.55);
  margin: 0;
}

/* Live search result cards */
.search-result-item {
  display: flex;
  align-items: center;
  gap: 1.6rem;
  padding: 1.2rem 0;
  border-bottom: 0.1rem solid rgba(var(--color-foreground), 0.06);
  text-decoration: none;
  color: rgb(var(--color-foreground));
  transition: opacity var(--duration);
}

.search-result-item:hover { opacity: 0.7; }
.search-result-item:last-child { border-bottom: none; }

.search-result-item__img {
  width: 5.6rem;
  height: 5.6rem;
  object-fit: cover;
  flex-shrink: 0;
  background: rgba(var(--color-foreground), 0.04);
  display: block;
}

.search-result-item__info { flex: 1; min-width: 0; }
.search-result-item__title { font-size: 1.5rem; font-weight: 500; margin-bottom: 0.3rem; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.search-result-item__price { font-size: 1.4rem; color: rgba(var(--color-foreground), 0.7); }

/* ── Mobile Nav ──────────────────────────────── */
.mobile-nav-backdrop {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(var(--color-foreground), 0.5);
  z-index: 200;
}

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

.mobile-nav {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  width: min(32rem, 100vw);
  background: rgb(var(--color-background));
  z-index: 201;
  transform: translateX(-100%);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  overflow-y: auto;
}

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

.mobile-nav__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.6rem 2rem;
  border-bottom: 0.1rem solid rgba(var(--color-foreground), 0.08);
}

.mobile-nav__close {
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  color: rgb(var(--color-foreground));
  display: flex;
  align-items: center;
}

.mobile-nav__links {
  padding: 1rem 2rem;
  flex: 1;
}

.mobile-nav__links ul { list-style: none; margin: 0; padding: 0; }
.mobile-nav__links ul li a {
  display: block;
  font-size: 1.6rem;
  font-weight: 500;
  padding: 1.3rem 0;
  border-bottom: 0.1rem solid rgba(var(--color-foreground), 0.06);
  text-decoration: none;
  color: rgb(var(--color-foreground));
}
.mobile-nav__links ul li a:hover { text-decoration: underline; }

/* Walker-output divs */
.mobile-nav__links .primary-nav__item > a {
  display: block;
  font-size: 1.6rem;
  font-weight: 500;
  padding: 1.3rem 0;
  border-bottom: 0.1rem solid rgba(var(--color-foreground), 0.06);
  text-decoration: none;
  color: rgb(var(--color-foreground));
}

.mobile-nav__footer {
  padding: 2rem;
  border-top: 0.1rem solid rgba(var(--color-foreground), 0.08);
}

/* ── Cart Drawer ──────────────────────────────── */
.cart-drawer-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(var(--color-foreground), 0.5);
  z-index: 200;
}
.cart-drawer-overlay.is-open { display: block; }

.cart-drawer {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(39rem, 100vw);
  background: rgb(var(--color-background));
  z-index: 201;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
}
.cart-drawer.is-open { transform: translateX(0); }

.cart-drawer__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 2rem 2.4rem;
  border-bottom: 0.1rem solid rgba(var(--color-foreground), 0.08);
}

.cart-drawer__title { font-size: 1.8rem; font-weight: 700; }

.cart-drawer__close {
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  color: rgb(var(--color-foreground));
  display: flex;
  align-items: center;
}
.cart-drawer__close svg { width: 2rem; height: 2rem; }

.cart-drawer__body { flex: 1; overflow-y: auto; padding: 2rem 2.4rem; }

.cart-drawer__empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 5rem 0;
  text-align: center;
  gap: 1.5rem;
  color: rgba(var(--color-foreground), 0.5);
}
.cart-drawer__empty svg { width: 5.6rem; height: 5.6rem; opacity: 0.25; }
.cart-drawer__empty p { font-size: 1.5rem; margin: 0; }

.cart-drawer__footer {
  padding: 2rem 2.4rem;
  border-top: 0.1rem solid rgba(var(--color-foreground), 0.08);
}

.cart-subtotal {
  display: flex;
  justify-content: space-between;
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 0.8rem;
}

.cart-subtotal__note {
  font-size: 1.3rem;
  color: rgba(var(--color-foreground), 0.7);
  margin-bottom: 1.8rem;
  text-align: center;
}

/* =============================================
   BUTTONS
   ============================================= */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  padding: 1.5rem 3rem;
  font-family: var(--font-body-family);
  font-size: 1.4rem;
  font-weight: 600;
  letter-spacing: 0.07rem;
  text-decoration: none;
  cursor: pointer;
  border-radius: var(--buttons-radius);
  border: var(--buttons-border-width) solid transparent;
  transition: background var(--duration), border-color var(--duration), color var(--duration), opacity var(--duration);
  white-space: nowrap;
  line-height: 1;
}

.btn--primary {
  background: rgb(var(--color-button));
  color: rgb(var(--color-button-text));
  border-color: rgb(var(--color-button));
}
.btn--primary:hover { opacity: 0.85; }

.btn--secondary {
  background: transparent;
  color: rgb(var(--color-secondary-button));
  border-color: rgb(var(--color-secondary-button));
}
.btn--secondary:hover { background: rgba(var(--color-secondary-button), 0.06); }

.btn--ghost {
  background: transparent;
  color: rgb(var(--color-foreground));
  border-color: rgba(var(--color-foreground), 0.2);
}
.btn--ghost:hover { border-color: rgb(var(--color-foreground)); }

.btn--full { width: 100%; text-align: center; }
.btn--lg { padding: 1.8rem 3.6rem; font-size: 1.5rem; }
.btn--sm { padding: 1rem 2rem; font-size: 1.3rem; }

/* =============================================
   SECTION SPACING / HEADERS
   ============================================= */
.section {
  padding: 36px 0;
}

@media (min-width: 990px) {
  .section { padding: 55px 0; }
}

.section-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: 3rem;
}

.section-eyebrow {
  display: block;
  font-size: 1.2rem;
  font-weight: 600;
  letter-spacing: 0.15rem;
  text-transform: uppercase;
  color: rgba(var(--color-foreground), 0.55);
  margin-bottom: 0.8rem;
}

.section-title { font-size: 2.4rem; letter-spacing: -0.01em; margin: 0; }

.section-link {
  font-size: 1.4rem;
  font-weight: 600;
  color: rgb(var(--color-foreground));
  text-decoration: none;
  white-space: nowrap;
  letter-spacing: 0.07rem;
  border-bottom: 0.1rem solid rgb(var(--color-foreground));
  padding-bottom: 0.1rem;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}
.section-link:hover { opacity: 0.65; }
.section-link svg { width: 1.4rem; height: 1.4rem; }

/* =============================================
   HERO
   ============================================= */
.hero {
  position: relative;
  overflow: hidden;
  min-height: 56rem;
  display: flex;
  align-items: center;
}

.hero__media {
  position: absolute;
  inset: 0;
}
.hero__media > * {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: rgba(var(--color-foreground), 0.3);
}

.hero--dark .hero__overlay { background: rgba(var(--color-foreground), 0.4); }

.hero .container { position: relative; z-index: 1; }

.hero__content { max-width: 58rem; }

.hero__eyebrow {
  display: block;
  font-size: 1.3rem;
  font-weight: 600;
  letter-spacing: 0.15rem;
  text-transform: uppercase;
  color: rgba(255 255 255 / 0.8);
  margin-bottom: 1.5rem;
}

.hero__title {
  font-size: clamp(3.2rem, 6vw, 6rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.1;
  margin-bottom: 2rem;
  letter-spacing: -0.02em;
}

.hero__title em { font-style: italic; }

.hero__subtitle {
  font-size: 1.6rem;
  color: rgba(255 255 255 / 0.85);
  line-height: 1.7;
  margin-bottom: 3rem;
}

.hero__actions { display: flex; gap: 1.2rem; flex-wrap: wrap; }

@media (max-width: 749px) {
  .hero { min-height: 42rem; }
  .hero__title { font-size: 3.2rem; }
}

/* =============================================
   MARQUEE / TICKER
   ============================================= */
.ticker-section {
  background: rgb(var(--color-background-contrast));
  border-top: 0.1rem solid rgba(var(--color-foreground), 0.08);
  border-bottom: 0.1rem solid rgba(var(--color-foreground), 0.08);
  overflow: hidden;
  padding: 1.4rem 0;
}

.ticker-track {
  display: flex;
  gap: 0;
  white-space: nowrap;
  animation: ticker 28s linear infinite;
  width: max-content;
}

.ticker-item {
  font-size: 1.3rem;
  font-weight: 500;
  letter-spacing: 0.08rem;
  text-transform: uppercase;
  color: rgb(var(--color-foreground));
  padding: 0 3rem;
  display: flex;
  align-items: center;
  gap: 3rem;
}

.ticker-item::after { content: '·'; }

@keyframes ticker {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* =============================================
   COLLECTION GRID
   ============================================= */
.collection-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

@media (min-width: 750px) {
  .collection-grid { grid-template-columns: 1fr 1fr 1fr; gap: 20px; }
}

.collection-card {
  position: relative;
  overflow: hidden;
  display: block;
  text-decoration: none;
  background: rgba(var(--color-foreground), 0.04);
}

.collection-card::after { content: ''; display: block; padding-top: 100%; }
.collection-card--tall::after { padding-top: 150%; }

@media (min-width: 750px) {
  .collection-card--tall { grid-row: 1 / 3; }
  .collection-card--tall::after { padding-top: 130%; }
}

.collection-card__inner {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.collection-card__inner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}

.collection-card:hover .collection-card__inner img { transform: scale(1.04); }

.collection-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(var(--color-foreground), 0.55) 0%, transparent 55%);
}

.collection-card__content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 2rem;
  color: #fff;
}

.collection-card__name { font-size: 1.8rem; font-weight: 700; line-height: 1.2; }

/* =============================================
   PRODUCT GRID
   ============================================= */
.product-grid,
ul.products {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  list-style: none;
  padding: 0;
  margin: 0;
}

@media (min-width: 750px) {
  .product-grid, ul.products { grid-template-columns: repeat(3, 1fr); gap: 20px; }
}

@media (min-width: 990px) {
  .product-grid, ul.products.columns-4 { grid-template-columns: repeat(4, 1fr); }
}

/* =============================================
   PRODUCT CARD
   ============================================= */
.product-card, li.product { list-style: none; position: relative; }

.product-card__media {
  position: relative;
  overflow: hidden;
  background: rgba(var(--color-foreground), 0.04);
  margin-bottom: 1.4rem;
}

.product-card__media::after { content: ''; display: block; padding-top: 125%; }

.product-card__media a { position: absolute; inset: 0; }

.product-card__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 0.4s var(--ease);
}

.product-card__img--hover { opacity: 0; }

.product-card:hover .product-card__img--primary { opacity: 0; }
.product-card:hover .product-card__img--hover   { opacity: 1; }

.product-card__badges {
  position: absolute;
  top: 1rem;
  left: 1rem;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.badge {
  display: inline-flex;
  align-items: center;
  padding: 0.4rem 0.9rem;
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: 0.04rem;
  text-transform: uppercase;
  border-radius: var(--badge-radius);
  background: rgb(var(--color-badge-bg));
  color: rgb(var(--color-badge-fg));
  border: 0.1rem solid rgb(var(--color-badge-fg));
  line-height: 1.4;
}

.badge--sale { background: rgb(var(--color-foreground)); color: rgb(var(--color-background)); border-color: rgb(var(--color-foreground)); }
.badge--new  { background: rgb(var(--color-background)); color: rgb(var(--color-foreground)); }
.badge--sold { background: rgba(var(--color-foreground), 0.06); color: rgba(var(--color-foreground), 0.6); border-color: rgba(var(--color-foreground), 0.2); }

/* Quick add */
.product-card__quick-add {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 0 1rem 1rem;
  transform: translateY(105%);
  transition: transform var(--duration) var(--ease);
}

.product-card:hover .product-card__quick-add { transform: translateY(0); }
.product-card__quick-add .btn { width: 100%; padding: 1.3rem; font-size: 1.3rem; }

/* Wishlist */
.wishlist-btn {
  position: absolute;
  top: 1rem;
  right: 1rem;
  z-index: 1;
  background: rgb(var(--color-background));
  border: none;
  cursor: pointer;
  width: 3.4rem;
  height: 3.4rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgb(var(--color-foreground));
  opacity: 0;
  transition: opacity var(--duration);
  box-shadow: 0 0 0 0.1rem rgba(var(--color-foreground), 0.08);
}

.product-card:hover .wishlist-btn { opacity: 1; }
.wishlist-btn svg { width: 1.6rem; height: 1.6rem; }

/* Info */
.product-card__info { padding: 0; }
.product-card__vendor { font-size: 1.2rem; color: rgba(var(--color-foreground), 0.55); text-transform: uppercase; letter-spacing: 0.07rem; margin-bottom: 0.4rem; }

.product-card__title { margin-bottom: 0.5rem; }
.product-card__title a,
.woocommerce-loop-product__title {
  font-size: 1.5rem;
  font-weight: 500;
  color: rgb(var(--color-foreground));
  text-decoration: none;
  line-height: 1.3;
  display: block;
}
.product-card__title a:hover { text-decoration: underline; text-underline-offset: 0.2rem; }

.product-card__price, .price {
  font-size: 1.4rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  flex-wrap: wrap;
}

.product-card__price del, .price del { color: rgba(var(--color-foreground), 0.5); font-weight: 400; }
.product-card__price ins, .price ins { text-decoration: none; }

.product-card__swatches { display: flex; gap: 0.4rem; flex-wrap: wrap; margin-top: 0.8rem; }

.color-swatch {
  width: 1.4rem;
  height: 1.4rem;
  border-radius: 50%;
  border: 0.1rem solid rgba(var(--color-foreground), 0.15);
  cursor: pointer;
}

/* =============================================
   RICH TEXT / PROMO BANNER
   ============================================= */
.promo-banner, .rich-text {
  display: grid;
  gap: 3rem;
}

@media (min-width: 750px) {
  .promo-banner, .rich-text { grid-template-columns: 1fr 1fr; align-items: center; gap: 6rem; }
}

.promo-banner__content, .rich-text__content {}

.promo-banner__media, .rich-text__media { overflow: hidden; }
.promo-banner__media img, .rich-text__media img { width: 100%; object-fit: cover; }

.promo-banner__eyebrow, .rich-text__eyebrow {
  font-size: 1.2rem; font-weight: 600; letter-spacing: 0.15rem;
  text-transform: uppercase; color: rgba(var(--color-foreground), 0.55);
  display: block; margin-bottom: 1.5rem;
}

.promo-banner__heading, .rich-text__heading {
  font-size: clamp(2.4rem, 4vw, 4rem);
  line-height: 1.15;
  letter-spacing: -0.01em;
  margin-bottom: 2rem;
}

.promo-banner__body, .rich-text__body {
  font-size: 1.5rem;
  line-height: 1.75;
  color: rgba(var(--color-foreground), 0.75);
  margin-bottom: 3rem;
}

/* =============================================
   TESTIMONIALS
   ============================================= */
.testimonials-grid {
  display: grid;
  gap: 2rem;
}

@media (min-width: 750px) { .testimonials-grid { grid-template-columns: repeat(3, 1fr); } }

.testimonial-card {
  padding: 3.2rem;
  background: rgba(var(--color-foreground), 0.03);
  border: 0.1rem solid rgba(var(--color-foreground), 0.1);
}

.testimonial-card .stars { display: flex; gap: 0.3rem; margin-bottom: 2rem; }
.testimonial-card .stars svg { width: 1.6rem; height: 1.6rem; fill: rgb(var(--color-foreground)); }

.testimonial-card__quote { font-size: 1.5rem; line-height: 1.75; color: rgba(var(--color-foreground), 0.8); font-style: italic; margin-bottom: 2.5rem; }

.testimonial-card__author { display: flex; align-items: center; gap: 1.2rem; }
.testimonial-card__avatar { width: 4rem; height: 4rem; border-radius: 50%; background: rgba(var(--color-foreground), 0.1); display: flex; align-items: center; justify-content: center; font-size: 1.4rem; font-weight: 700; flex-shrink: 0; }
.testimonial-card__name { font-size: 1.4rem; font-weight: 600; }
.testimonial-card__handle { font-size: 1.3rem; color: rgba(var(--color-foreground), 0.55); }

/* =============================================
   NEWSLETTER
   ============================================= */
.newsletter-section {
  background: rgba(var(--color-foreground), 0.03);
  border-top: 0.1rem solid rgba(var(--color-foreground), 0.1);
  padding: 55px var(--page-width-margin);
  text-align: center;
}

@media (min-width: 750px) { .newsletter-section { padding: 55px 5rem; } }

.newsletter-section .section-eyebrow { margin-bottom: 0.8rem; }
.newsletter-section .section-title { font-size: 2.8rem; margin-bottom: 1.2rem; }
.newsletter-section p { font-size: 1.5rem; color: rgba(var(--color-foreground), 0.7); max-width: 50rem; margin: 0 auto 3rem; line-height: 1.7; }

.newsletter-form {
  display: flex;
  max-width: 42rem;
  margin: 0 auto;
}

.newsletter-form input[type="email"] {
  flex: 1;
  padding: 1.5rem 2rem;
  border: 0.1rem solid rgba(var(--color-foreground), 0.55);
  border-right: none;
  font-size: 1.4rem;
  font-family: var(--font-body-family);
  background: rgb(var(--color-background));
  color: rgb(var(--color-foreground));
  outline: none;
  min-width: 0;
  border-radius: var(--inputs-radius);
}

.newsletter-form button {
  padding: 1.5rem 2.4rem;
  background: rgb(var(--color-button));
  color: rgb(var(--color-button-text));
  border: 0.1rem solid rgb(var(--color-button));
  font-size: 1.4rem;
  font-family: var(--font-body-family);
  font-weight: 600;
  letter-spacing: 0.07rem;
  cursor: pointer;
  border-radius: var(--buttons-radius);
  white-space: nowrap;
  transition: opacity var(--duration);
}

.newsletter-form button:hover { opacity: 0.85; }

/* =============================================
   FOOTER
   ============================================= */
.site-footer {
  background: rgb(var(--color-background));
  border-top: 0.1rem solid rgba(var(--color-foreground), 0.08);
  padding: 55px var(--page-width-margin) 36px;
}

@media (min-width: 750px) { .site-footer { padding: 55px 5rem 36px; } }

.trust-badges {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  padding-bottom: 4rem;
  margin-bottom: 4rem;
  border-bottom: 0.1rem solid rgba(var(--color-foreground), 0.08);
}

@media (min-width: 750px) { .trust-badges { grid-template-columns: repeat(4, 1fr); } }

.trust-badge { display: flex; align-items: flex-start; gap: 1.2rem; }
.trust-badge__icon svg { width: 2.4rem; height: 2.4rem; flex-shrink: 0; }
.trust-badge__title { font-size: 1.4rem; font-weight: 700; margin-bottom: 0.2rem; }
.trust-badge__desc { font-size: 1.3rem; color: rgba(var(--color-foreground), 0.65); }

.footer-grid {
  display: grid;
  gap: 3.5rem;
  grid-template-columns: 1fr 1fr;
  margin-bottom: 4rem;
}

@media (min-width: 750px) { .footer-grid { grid-template-columns: 2fr 1fr 1fr 1fr; } }

.footer-brand {}

.footer-brand .site-logo { font-size: 1.8rem; font-weight: 700; color: rgb(var(--color-foreground)); text-decoration: none; display: inline-block; margin-bottom: 1.5rem; }

.footer-brand p { font-size: 1.4rem; line-height: 1.7; color: rgba(var(--color-foreground), 0.7); margin-bottom: 2rem; }

.footer-social { display: flex; gap: 1.5rem; flex-wrap: wrap; }
.footer-social a { color: rgba(var(--color-foreground), 0.7); transition: color var(--duration); display: flex; align-items: center; }
.footer-social a:hover { color: rgb(var(--color-foreground)); }
.footer-social svg { width: 2rem; height: 2rem; }

.footer-nav__title { font-size: 1.3rem; font-weight: 700; letter-spacing: 0.1rem; text-transform: uppercase; margin-bottom: 2rem; }

.footer-nav__list li { margin-bottom: 1.2rem; }
.footer-nav__list a { font-size: 1.4rem; color: rgba(var(--color-foreground), 0.7); text-decoration: none; transition: color var(--duration); }
.footer-nav__list a:hover { color: rgb(var(--color-foreground)); }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1.5rem;
  padding-top: 3rem;
  border-top: 0.1rem solid rgba(var(--color-foreground), 0.08);
  font-size: 1.3rem;
  color: rgba(var(--color-foreground), 0.55);
}

.footer-bottom a { color: rgba(var(--color-foreground), 0.55); text-decoration: none; }
.footer-bottom a:hover { color: rgb(var(--color-foreground)); text-decoration: underline; }
.footer-bottom-links { display: flex; gap: 2rem; flex-wrap: wrap; }

.footer-payment-icons { display: flex; gap: 0.6rem; flex-wrap: wrap; align-items: center; }
.payment-icon { padding: 0.3rem 0.7rem; border: 0.1rem solid rgba(var(--color-foreground), 0.2); border-radius: 0.3rem; font-size: 1rem; font-weight: 700; color: rgba(var(--color-foreground), 0.55); display: flex; align-items: center; }

/* =============================================
   SHOP / WOOCOMMERCE ARCHIVE
   ============================================= */
.shop-layout {
  display: grid;
  gap: 4rem;
  padding: 36px var(--page-width-margin);
  max-width: var(--page-width);
  margin: 0 auto;
}

@media (min-width: 990px) {
  .shop-layout { grid-template-columns: 24rem 1fr; padding: 55px 5rem; }
}

.shop-sidebar {}

.shop-sidebar__title { font-size: 1.8rem; font-weight: 700; margin-bottom: 2.5rem; }

.filter-group { border-bottom: 0.1rem solid rgba(var(--color-foreground), 0.1); }

.filter-group__toggle {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-size: 1.4rem;
  font-weight: 600;
  padding: 1.5rem 0;
  background: none;
  border: none;
  width: 100%;
  text-align: left;
  color: rgb(var(--color-foreground));
  font-family: var(--font-body-family);
}

.filter-group__toggle svg { width: 1.4rem; height: 1.4rem; transition: transform var(--duration); }
.filter-group.is-open .filter-group__toggle svg { transform: rotate(180deg); }

.filter-group__body { padding-bottom: 1.5rem; display: none; }
.filter-group.is-open .filter-group__body { display: block; }

.filter-group__body label {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.6rem 0;
  cursor: pointer;
  font-size: 1.4rem;
  color: rgba(var(--color-foreground), 0.85);
}

.filter-group__body input[type="checkbox"] {
  width: 1.6rem;
  height: 1.6rem;
  border: 0.1rem solid rgba(var(--color-foreground), 0.55);
  border-radius: 0;
  appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
  flex-shrink: 0;
  background: rgb(var(--color-background));
  position: relative;
}

.filter-group__body input[type="checkbox"]:checked {
  background: rgb(var(--color-foreground));
}

.filter-group__body input[type="checkbox"]:checked::after {
  content: '';
  position: absolute;
  inset: 0.25rem;
  background: rgb(var(--color-background));
  clip-path: polygon(14% 44%, 0 65%, 50% 100%, 100% 16%, 80% 0%, 43% 62%);
}

/* Price filter */
.price-filter { display: flex; gap: 1rem; align-items: center; margin-top: 1rem; }
.price-filter input { flex: 1; padding: 0.8rem; font-size: 1.3rem; width: 100%; border: 0.1rem solid rgba(var(--color-foreground), 0.55); background: rgb(var(--color-background)); color: rgb(var(--color-foreground)); text-align: center; }
.price-filter span { color: rgba(var(--color-foreground), 0.55); font-size: 1.4rem; }

/* Toolbar */
.shop-toolbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 0.1rem solid rgba(var(--color-foreground), 0.1);
  font-size: 1.4rem;
  flex-wrap: wrap;
  gap: 1rem;
}

.shop-results-count { color: rgba(var(--color-foreground), 0.55); }

.shop-sort select {
  padding: 0.9rem 3.2rem 0.9rem 1.2rem;
  border: 0.1rem solid rgba(var(--color-foreground), 0.55);
  background: rgb(var(--color-background));
  font-size: 1.4rem;
  font-family: var(--font-body-family);
  color: rgb(var(--color-foreground));
  cursor: pointer;
  outline: none;
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23121212' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.8rem center;
  background-size: 1.6rem;
}

.mobile-filter-toggle {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-size: 1.4rem;
  font-weight: 600;
  cursor: pointer;
  background: none;
  border: 0.1rem solid rgba(var(--color-foreground), 0.55);
  padding: 0.9rem 1.4rem;
  color: rgb(var(--color-foreground));
  font-family: var(--font-body-family);
}

@media (min-width: 990px) { .mobile-filter-toggle { display: none; } }

.view-toggle { display: flex; gap: 0.4rem; }
.view-toggle button { background: none; border: none; cursor: pointer; padding: 0.5rem; color: rgba(var(--color-foreground), 0.4); }
.view-toggle button.is-active { color: rgb(var(--color-foreground)); }
.view-toggle svg { width: 2rem; height: 2rem; }

/* =============================================
   SINGLE PRODUCT PAGE
   ============================================= */
.breadcrumbs {
  font-size: 1.3rem;
  color: rgba(var(--color-foreground), 0.55);
  padding: 2rem var(--page-width-margin);
  max-width: var(--page-width);
  margin: 0 auto;
}

@media (min-width: 750px) { .breadcrumbs { padding: 2rem 5rem; } }

.breadcrumbs a { color: rgba(var(--color-foreground), 0.55); text-decoration: none; }
.breadcrumbs a:hover { color: rgb(var(--color-foreground)); text-decoration: underline; }
.breadcrumbs span { margin: 0 0.6rem; }

.product-page {
  padding: 36px var(--page-width-margin) 55px;
  max-width: var(--page-width);
  margin: 0 auto;
}

@media (min-width: 750px) { .product-page { padding: 55px 5rem 80px; } }

.product-layout {
  display: grid;
  gap: 4rem;
}

@media (min-width: 750px) {
  .product-layout { grid-template-columns: 1fr 1fr; align-items: start; gap: 6rem; }
}

/* Gallery */
.product-gallery { }

.product-gallery__main {
  position: relative;
  overflow: hidden;
  background: rgba(var(--color-foreground), 0.04);
  margin-bottom: 1rem;
  cursor: zoom-in;
}

.product-gallery__main img { width: 100%; aspect-ratio: 4/5; object-fit: cover; display: block; }

.product-gallery__thumbs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.8rem;
}

.product-gallery__thumb {
  cursor: pointer;
  overflow: hidden;
  border: 0.2rem solid transparent;
  transition: border-color var(--duration);
}

.product-gallery__thumb.is-active,
.product-gallery__thumb:hover { border-color: rgb(var(--color-foreground)); }

.product-gallery__thumb img { width: 100%; aspect-ratio: 1; object-fit: cover; display: block; }

/* Product info panel */
.product-info { display: flex; flex-direction: column; gap: 2.2rem; }

.product-info__vendor { font-size: 1.3rem; text-transform: uppercase; letter-spacing: 0.1rem; color: rgba(var(--color-foreground), 0.55); }
.product-info__title { font-size: 2.8rem; font-weight: 700; letter-spacing: -0.01em; line-height: 1.15; }

.product-info__price-row {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  flex-wrap: wrap;
}

.product-info__price { font-size: 1.8rem; font-weight: 600; }
.product-info__price del { color: rgba(var(--color-foreground), 0.5); font-weight: 400; }
.product-info__price ins { text-decoration: none; }

.product-info__rating { display: flex; align-items: center; gap: 0.6rem; }
.product-info__rating .stars { display: flex; gap: 0.2rem; }
.product-info__rating .stars svg { width: 1.4rem; height: 1.4rem; fill: rgb(var(--color-foreground)); }
.product-info__rating .count { font-size: 1.3rem; color: rgba(var(--color-foreground), 0.55); text-decoration: underline; }

.product-info__description { font-size: 1.5rem; line-height: 1.75; color: rgba(var(--color-foreground), 0.75); }

/* Variant picker */
.variant-picker { display: flex; flex-direction: column; gap: 2rem; }

.variant-option { }
.variant-option__label { font-size: 1.4rem; font-weight: 600; margin-bottom: 1rem; }
.variant-option__label .selected-value { font-weight: 400; color: rgba(var(--color-foreground), 0.7); margin-left: 0.5rem; }

.variant-option__btns { display: flex; flex-wrap: wrap; gap: 0.8rem; }

.variant-btn {
  min-width: 4.5rem;
  height: 4.5rem;
  padding: 0 1.4rem;
  border: 0.1rem solid rgba(var(--color-foreground), 0.3);
  background: rgb(var(--color-background));
  color: rgb(var(--color-foreground));
  font-family: var(--font-body-family);
  font-size: 1.4rem;
  cursor: pointer;
  border-radius: var(--variant-pills-radius);
  transition: all var(--duration);
  display: flex;
  align-items: center;
  justify-content: center;
}

.variant-btn:hover { border-color: rgb(var(--color-foreground)); }
.variant-btn.active { background: rgb(var(--color-foreground)); color: rgb(var(--color-background)); border-color: rgb(var(--color-foreground)); }

.variant-swatch {
  width: 3.2rem;
  height: 3.2rem;
  border-radius: 50%;
  padding: 0;
  min-width: unset;
  border: 0.1rem solid rgba(var(--color-foreground), 0.2);
}

.variant-swatch.active {
  background: unset !important;
  box-shadow: 0 0 0 0.2rem rgb(var(--color-background)), 0 0 0 0.4rem rgb(var(--color-foreground));
  border-color: transparent;
}

/* Add to cart form */
.product-form { display: flex; flex-direction: column; gap: 1rem; }

.product-form__row { display: flex; gap: 1rem; align-items: stretch; }

.qty-control {
  display: flex;
  align-items: center;
  border: 0.1rem solid rgba(var(--color-foreground), 0.55);
  flex-shrink: 0;
}

.qty-btn {
  width: 4.4rem;
  height: 5.5rem;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgb(var(--color-foreground));
  padding: 0;
  transition: background var(--duration);
}

.qty-btn:hover { background: rgba(var(--color-foreground), 0.05); }

.qty-input {
  width: 5rem;
  border: none;
  border-left: 0.1rem solid rgba(var(--color-foreground), 0.15);
  border-right: 0.1rem solid rgba(var(--color-foreground), 0.15);
  text-align: center;
  font-size: 1.5rem;
  font-family: var(--font-body-family);
  color: rgb(var(--color-foreground));
  background: rgb(var(--color-background));
  outline: none;
  -moz-appearance: textfield;
  height: 5.5rem;
}

.qty-input::-webkit-outer-spin-button,
.qty-input::-webkit-inner-spin-button { -webkit-appearance: none; }

.single_add_to_cart_button,
.product-form__atc {
  flex: 1;
  min-height: 5.5rem;
  font-size: 1.5rem;
  letter-spacing: 0.08rem;
}

/* Accordion */
.product-accordion { border-top: 0.1rem solid rgba(var(--color-foreground), 0.1); margin-top: 1rem; }

.accordion-item { border-bottom: 0.1rem solid rgba(var(--color-foreground), 0.1); }

.accordion-trigger {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.8rem 0;
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-body-family);
  font-size: 1.5rem;
  font-weight: 600;
  color: rgb(var(--color-foreground));
  text-align: left;
}

.accordion-trigger svg { width: 1.6rem; height: 1.6rem; transition: transform var(--duration); flex-shrink: 0; }
.accordion-item.is-open .accordion-trigger svg { transform: rotate(180deg); }

.accordion-body { display: none; padding-bottom: 2rem; font-size: 1.4rem; line-height: 1.8; color: rgba(var(--color-foreground), 0.75); }
.accordion-item.is-open .accordion-body { display: block; }

/* Product meta */
.product-meta { font-size: 1.4rem; color: rgba(var(--color-foreground), 0.7); }
.product-meta a { color: rgba(var(--color-foreground), 0.7); text-decoration: underline; }

/* =============================================
   CART PAGE
   ============================================= */
.cart-page {
  padding: 36px var(--page-width-margin);
  max-width: var(--page-width);
  margin: 0 auto;
}

@media (min-width: 750px) { .cart-page { padding: 55px 5rem; } }

.cart-page__title { font-size: 3rem; margin-bottom: 4rem; padding-bottom: 2rem; border-bottom: 0.1rem solid rgba(var(--color-foreground), 0.1); }

.cart-page__layout { display: grid; gap: 4rem; }

@media (min-width: 990px) { .cart-page__layout { grid-template-columns: 1fr 36rem; align-items: start; } }

.cart-items-table { width: 100%; border-collapse: collapse; }

.cart-items-table thead th {
  font-size: 1.2rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1rem;
  padding: 0 0 1.5rem; border-bottom: 0.1rem solid rgba(var(--color-foreground), 0.12);
  text-align: left; color: rgba(var(--color-foreground), 0.55);
}
.cart-items-table thead th:last-child { text-align: right; }

.cart-items-table tbody td {
  padding: 2.5rem 0;
  border-bottom: 0.1rem solid rgba(var(--color-foreground), 0.08);
  vertical-align: top;
}

.cart-items-table td.cart-item__img-cell { width: 9rem; padding-right: 2rem !important; }

.cart-item__img { width: 9rem; height: 9rem; object-fit: cover; display: block; background: rgba(var(--color-foreground), 0.04); }
.cart-item__name { font-size: 1.5rem; font-weight: 600; margin-bottom: 0.4rem; }
.cart-item__meta { font-size: 1.3rem; color: rgba(var(--color-foreground), 0.55); margin-bottom: 1rem; }
.cart-item__remove { font-size: 1.3rem; color: rgba(var(--color-foreground), 0.55); text-decoration: underline; background: none; border: none; cursor: pointer; padding: 0; font-family: var(--font-body-family); }
.cart-item__remove:hover { color: rgb(var(--color-foreground)); }
.cart-item__total { text-align: right; font-weight: 600; font-size: 1.5rem; }

.cart-coupon-row { display: flex; gap: 1.2rem; margin-top: 2rem; flex-wrap: wrap; align-items: center; }
.cart-coupon-row input { flex: 1; min-width: 18rem; padding: 1.2rem 1.6rem; border: 0.1rem solid rgba(var(--color-foreground), 0.55); font-size: 1.4rem; background: rgb(var(--color-background)); color: rgb(var(--color-foreground)); outline: none; font-family: var(--font-body-family); }

/* Cart summary sidebar */
.cart-summary-box { background: rgba(var(--color-foreground), 0.03); padding: 3rem; }

.cart-summary-box h2 { font-size: 1.8rem; margin-bottom: 2.5rem; padding-bottom: 1.5rem; border-bottom: 0.1rem solid rgba(var(--color-foreground), 0.1); }

.cart_totals table { width: 100%; border-collapse: collapse; }
.cart_totals table th, .cart_totals table td { padding: 1rem 0; border-bottom: 0.1rem solid rgba(var(--color-foreground), 0.08); font-size: 1.4rem; }
.cart_totals table th { color: rgba(var(--color-foreground), 0.7); font-weight: 400; }
.cart_totals table td { text-align: right; font-weight: 600; }
.cart_totals table .order-total th, .cart_totals table .order-total td { font-size: 1.6rem; font-weight: 700; border-bottom: none; }
.cart_totals .wc-proceed-to-checkout { display: none; }

.cart-checkout-note { font-size: 1.3rem; color: rgba(var(--color-foreground), 0.6); text-align: center; margin: 1.2rem 0 2rem; }

/* =============================================
   CHECKOUT
   ============================================= */
.checkout-page { padding: 36px var(--page-width-margin); max-width: var(--page-width); margin: 0 auto; }

@media (min-width: 750px) { .checkout-page { padding: 55px 5rem; } }

.checkout-layout { display: grid; gap: 4rem; }

@media (min-width: 990px) { .checkout-layout { grid-template-columns: 1fr 40rem; align-items: start; } }

.checkout-section { margin-bottom: 3.5rem; }
.checkout-section__title { font-size: 1.8rem; margin-bottom: 2rem; padding-bottom: 1.5rem; border-bottom: 0.1rem solid rgba(var(--color-foreground), 0.1); }

.checkout-order-summary { background: rgba(var(--color-foreground), 0.03); padding: 3rem; position: sticky; top: 8rem; }
.checkout-order-summary h2 { font-size: 1.8rem; margin-bottom: 2rem; padding-bottom: 1.5rem; border-bottom: 0.1rem solid rgba(var(--color-foreground), 0.1); }

.checkout-item { display: flex; gap: 1.5rem; align-items: flex-start; padding: 1.2rem 0; border-bottom: 0.1rem solid rgba(var(--color-foreground), 0.08); }
.checkout-item__img-wrap { position: relative; flex-shrink: 0; }
.checkout-item__img { width: 5.6rem; height: 5.6rem; object-fit: cover; background: rgba(var(--color-foreground), 0.04); }
.checkout-item__qty {
  position: absolute; top: -0.8rem; right: -0.8rem;
  min-width: 1.8rem; height: 1.8rem;
  background: rgba(var(--color-foreground), 0.6); color: rgb(var(--color-background));
  border-radius: 50%; font-size: 1.1rem; font-weight: 700;
  display: flex; align-items: center; justify-content: center; padding: 0 0.4rem;
}
.checkout-item__info { flex: 1; min-width: 0; }
.checkout-item__name { font-size: 1.4rem; font-weight: 600; margin-bottom: 0.2rem; }
.checkout-item__variant { font-size: 1.3rem; color: rgba(var(--color-foreground), 0.55); }
.checkout-item__price { font-size: 1.4rem; font-weight: 600; white-space: nowrap; }

.checkout-coupon { display: flex; margin: 2rem 0; }
.checkout-coupon input { flex: 1; border-right: none; padding: 1.2rem 1.6rem; border: 0.1rem solid rgba(var(--color-foreground), 0.55); font-size: 1.4rem; font-family: var(--font-body-family); background: rgb(var(--color-background)); color: rgb(var(--color-foreground)); outline: none; min-width: 0; }
.checkout-coupon button { padding: 1.2rem 2rem; font-size: 1.4rem; }

#order_review { display: none; }
#order_review_heading { display: none; }
#payment { background: none; padding: 0; }
#payment .payment_methods { list-style: none; padding: 0; margin: 0 0 2rem; }
#payment .payment_methods li { padding: 1.5rem 0; border-bottom: 0.1rem solid rgba(var(--color-foreground), 0.08); }
#payment .payment_methods li label { font-size: 1.5rem; font-weight: 500; cursor: pointer; display: inline; }
#payment .payment_box { padding: 1.5rem; background: rgba(var(--color-foreground), 0.03); margin-top: 1rem; font-size: 1.4rem; color: rgba(var(--color-foreground), 0.7); }
#payment #place_order { width: 100%; padding: 1.8rem; background: rgb(var(--color-button)); color: rgb(var(--color-button-text)); border: none; font-size: 1.6rem; font-family: var(--font-body-family); font-weight: 600; letter-spacing: 0.08rem; cursor: pointer; transition: opacity var(--duration); }
#payment #place_order:hover { opacity: 0.85; }

/* =============================================
   MY ACCOUNT
   ============================================= */
.account-page { padding: 36px var(--page-width-margin); max-width: var(--page-width); margin: 0 auto; }
@media (min-width: 750px) { .account-page { padding: 55px 5rem; } }

.account-layout { display: grid; gap: 5rem; }
@media (min-width: 750px) { .account-layout { grid-template-columns: 22rem 1fr; } }

.account-nav__title { font-size: 1.6rem; font-weight: 700; margin-bottom: 1.5rem; }
.account-nav__list li { border-bottom: 0.1rem solid rgba(var(--color-foreground), 0.08); }
.account-nav__list a { display: block; padding: 1.2rem 0; font-size: 1.4rem; color: rgba(var(--color-foreground), 0.7); text-decoration: none; transition: color var(--duration); }
.account-nav__list a:hover, .account-nav__list a.is-active { color: rgb(var(--color-foreground)); font-weight: 600; }

.woocommerce-orders-table { width: 100%; border-collapse: collapse; }
.woocommerce-orders-table th { font-size: 1.2rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1rem; padding: 0 0 1.5rem; border-bottom: 0.1rem solid rgba(var(--color-foreground), 0.12); text-align: left; color: rgba(var(--color-foreground), 0.55); }
.woocommerce-orders-table td { padding: 1.5rem 0; border-bottom: 0.1rem solid rgba(var(--color-foreground), 0.08); font-size: 1.4rem; vertical-align: middle; }
.woocommerce-orders-table .button { padding: 0.8rem 1.6rem; background: none; border: 0.1rem solid rgb(var(--color-foreground)); color: rgb(var(--color-foreground)); font-size: 1.3rem; text-decoration: none; cursor: pointer; transition: all var(--duration); }
.woocommerce-orders-table .button:hover { background: rgb(var(--color-foreground)); color: rgb(var(--color-background)); }

/* =============================================
   WOOCOMMERCE NOTICES
   ============================================= */
.woocommerce-message, .woocommerce-info, .woocommerce-error {
  padding: 1.5rem 2rem;
  margin-bottom: 2rem;
  font-size: 1.4rem;
  list-style: none;
  border-left: 0.3rem solid;
}
.woocommerce-message { background: #f0fdf4; border-color: #22c55e; color: #15803d; }
.woocommerce-info    { background: #eff6ff; border-color: #3b82f6; color: #1e40af; }
.woocommerce-error   { background: #fef2f2; border-color: #ef4444; color: #dc2626; }
.woocommerce-error li { margin: 0; }

/* =============================================
   FORMS
   ============================================= */
.woocommerce form .form-row { margin-bottom: 1.8rem; }
.woocommerce form .form-row label { font-size: 1.3rem; font-weight: 600; display: block; margin-bottom: 0.6rem; }
.woocommerce form .form-row input.input-text,
.woocommerce form .form-row textarea,
.woocommerce form .form-row select {
  width: 100%; padding: 1.2rem 1.6rem;
  border: 0.1rem solid rgba(var(--color-foreground), var(--inputs-border-opacity));
  font-size: 1.4rem; font-family: var(--font-body-family);
  color: rgb(var(--color-foreground)); background: rgb(var(--color-background));
  box-sizing: border-box; outline: none; appearance: none; -webkit-appearance: none;
  transition: border-color var(--duration);
}
.woocommerce form .form-row input.input-text:focus,
.woocommerce form .form-row textarea:focus,
.woocommerce form .form-row select:focus { border-color: rgb(var(--color-foreground)); }
.woocommerce .required { color: #c0392b; }

/* =============================================
   PAGINATION
   ============================================= */
.woocommerce-pagination, .pagination {
  display: flex; justify-content: center; gap: 0.5rem; margin-top: 5rem; flex-wrap: wrap;
}

.woocommerce-pagination a, .woocommerce-pagination span,
.page-numbers {
  display: flex; align-items: center; justify-content: center;
  width: 4rem; height: 4rem; font-size: 1.4rem; font-weight: 500;
  color: rgb(var(--color-foreground)); text-decoration: none;
  border: 0.1rem solid rgba(var(--color-foreground), 0.2);
  transition: all var(--duration);
}

.woocommerce-pagination .current, .page-numbers.current {
  background: rgb(var(--color-foreground)); color: rgb(var(--color-background)); border-color: rgb(var(--color-foreground));
}

.woocommerce-pagination a:hover, .page-numbers:not(.current):hover {
  border-color: rgb(var(--color-foreground));
}

/* =============================================
   BLOG / ARCHIVE
   ============================================= */
.posts-grid { display: grid; gap: 3.5rem; }
@media (min-width: 750px) { .posts-grid { grid-template-columns: repeat(3, 1fr); } }

.post-card__img-wrap { overflow: hidden; margin-bottom: 1.8rem; }
.post-card__img-wrap img { width: 100%; aspect-ratio: 3/2; object-fit: cover; transition: transform 0.5s var(--ease); }
.post-card:hover .post-card__img-wrap img { transform: scale(1.03); }
.post-card__meta { font-size: 1.2rem; text-transform: uppercase; letter-spacing: 0.1rem; color: rgba(var(--color-foreground), 0.55); margin-bottom: 0.8rem; }
.post-card__title { font-size: 1.8rem; font-weight: 700; margin-bottom: 0.8rem; line-height: 1.3; }
.post-card__title a { color: rgb(var(--color-foreground)); text-decoration: none; }
.post-card__title a:hover { text-decoration: underline; }
.post-card__excerpt { font-size: 1.4rem; color: rgba(var(--color-foreground), 0.7); line-height: 1.65; }

/* =============================================
   404
   ============================================= */
.not-found { min-height: 60vh; display: flex; align-items: center; justify-content: center; text-align: center; padding: 6rem var(--page-width-margin); }
.not-found__inner {}
.not-found__number { font-size: 12rem; font-weight: 700; line-height: 1; color: rgba(var(--color-foreground), 0.07); }
.not-found__title { font-size: 3rem; margin-bottom: 1.5rem; }
.not-found__desc { font-size: 1.5rem; color: rgba(var(--color-foreground), 0.7); max-width: 44rem; margin: 0 auto 3rem; line-height: 1.7; }
.not-found__actions { display: flex; gap: 1.2rem; justify-content: center; flex-wrap: wrap; }

/* =============================================
   PAGE CONTENT
   ============================================= */
.page-content { max-width: 82rem; margin: 0 auto; padding: 55px var(--page-width-margin); min-height: 50vh; }
@media (min-width: 750px) { .page-content { padding: 55px 5rem; } }
.page-content h1, .page-content h2, .page-content h3 { margin-top: 3rem; margin-bottom: 1.2rem; }
.page-content p { font-size: 1.5rem; line-height: 1.8; margin-bottom: 1.5rem; color: rgba(var(--color-foreground), 0.85); }
.page-content a { color: rgb(var(--color-foreground)); text-decoration: underline; }
.page-content ul, .page-content ol { padding-left: 2.5rem; margin-bottom: 1.5rem; list-style: revert; }
.page-content li { font-size: 1.5rem; line-height: 1.8; margin-bottom: 0.5rem; }
.page-content img { max-width: 100%; margin: 2.5rem 0; }

/* =============================================
   UTILITY
   ============================================= */
.visually-hidden { border: 0; clip-path: inset(50%); height: 1px; margin: -1px; overflow: hidden; padding: 0; position: absolute; width: 1px; word-wrap: normal !important; }
.hidden { display: none !important; }
.text-center { text-align: center; }

/* =============================================
   ADMIN BAR OFFSET
   ============================================= */
.admin-bar .site-header { top: 32px; }
@media screen and (max-width: 782px) { .admin-bar .site-header { top: 46px; } }

/* =============================================
   FEATURED COLLECTION SECTION (Dawn homepage)
   ============================================= */
.featured-collection-section {
  padding: var(--section-padding-top, 55px) 0 var(--section-padding-bottom, 55px);
}

.featured-collection-section__header {
  text-align: center;
  padding: 0 var(--page-width-margin) 4rem;
  max-width: 80rem;
  margin: 0 auto;
}

@media (min-width: 750px) {
  .featured-collection-section__header { padding: 0 5rem 5rem; }
}

.featured-collection-section__title {
  font-size: clamp(2.4rem, 4vw, 4rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin-bottom: 1.6rem;
  color: rgb(var(--color-foreground));
}

.featured-collection-section__subtitle {
  font-size: 1.5rem;
  color: rgba(var(--color-foreground), 0.65);
  line-height: 1.7;
  max-width: 60rem;
  margin: 0 auto;
}

.featured-collection-section__cta {
  text-align: center;
  margin-top: 4rem;
}

/* =============================================
   COLLAGE SECTION (Dawn homepage)
   ============================================= */
.collage-section {
  padding: 0 0 var(--section-padding-bottom, 55px);
}

.collage-section__eyebrow {
  font-size: 1.4rem;
  font-weight: 600;
  color: rgb(var(--color-foreground));
  margin: 0 0 1.8rem;
  padding: 0 var(--page-width-margin);
  max-width: var(--page-width);
  margin-left: auto;
  margin-right: auto;
}

@media (min-width: 750px) {
  .collage-section__eyebrow { padding: 0 5rem; }
}

/* Two-column grid: left takes ~60%, right ~40% */
.collage-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  padding: 0 var(--page-width-margin);
  max-width: var(--page-width);
  margin: 0 auto;
}

@media (min-width: 750px) {
  .collage-grid {
    grid-template-columns: 1.5fr 1fr;
    gap: 1rem;
    padding: 0 5rem;
  }
}

/* Left column: image + label */
.collage-left {
  display: flex;
  flex-direction: column;
}

.collage-left__img-link {
  display: block;
  overflow: hidden;
  flex: 1;
}

.collage-left__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  aspect-ratio: 3/4;
  transition: transform 0.6s ease;
}

@media (min-width: 750px) {
  .collage-left__img { aspect-ratio: unset; min-height: 60rem; }
}

.collage-left__img-link:hover .collage-left__img { transform: scale(1.03); }

.collage-left__placeholder {
  width: 100%;
  aspect-ratio: 3/4;
  background: rgba(var(--color-foreground), 0.05);
}

@media (min-width: 750px) {
  .collage-left__placeholder { aspect-ratio: unset; min-height: 60rem; }
}

/* Col link (label + arrow) */
.collage-col-link {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 1.4rem;
  font-weight: 600;
  color: rgb(var(--color-foreground));
  text-decoration: none;
  margin-top: 1.4rem;
  padding-bottom: 0.1rem;
  border-bottom: 0.1rem solid rgb(var(--color-foreground));
  transition: opacity var(--duration);
  width: fit-content;
}

.collage-col-link:hover { opacity: 0.65; }
.collage-col-link svg { width: 1.4rem; height: 1.4rem; }

/* Right column: two stacked cards */
.collage-right {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

/* Individual card */
.collage-card {
  display: flex;
  flex-direction: column;
  flex: 1;
}

.collage-card--product {
  text-decoration: none;
  color: rgb(var(--color-foreground));
}

.collage-card__media {
  display: block;
  overflow: hidden;
  flex: 1;
}

.collage-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  aspect-ratio: 4/3;
  transition: transform 0.6s ease;
}

.collage-card__media:hover .collage-card__img,
.collage-card--product:hover .collage-card__img { transform: scale(1.03); }

.collage-card__placeholder {
  width: 100%;
  aspect-ratio: 4/3;
  background: rgba(var(--color-foreground), 0.05);
}

.collage-card__info {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  margin-top: 1.2rem;
}

.collage-card__title {
  font-size: 1.4rem;
  font-weight: 500;
  color: rgb(var(--color-foreground));
}

.collage-card__price {
  font-size: 1.4rem;
  color: rgba(var(--color-foreground), 0.7);
}

/* =============================================
   VIDEO SECTION
   ============================================= */
.video-section {
  position: relative;
  overflow: hidden;
  width: 100%;
  background: #000;
}

.video-section__embed {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.video-section__overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,0.3);
  z-index: 1;
  pointer-events: none;
}

.video-section__overlay-text {
  color: #fff;
  font-size: clamp(1.8rem, 3vw, 3.2rem);
  font-weight: 700;
  text-align: center;
  padding: 0 2rem;
  letter-spacing: -0.01em;
}

/* =============================================
   FOOTER — NEW LAYOUT
   ============================================= */

/* Newsletter bar */
.footer-newsletter {
  padding: 4rem var(--page-width-margin);
}

@media (min-width: 750px) {
  .footer-newsletter { padding: 5rem; }
}

.footer-newsletter__inner {
  max-width: var(--page-width);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  align-items: flex-start;
}

@media (min-width: 750px) {
  .footer-newsletter__inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 4rem;
  }
}

.footer-newsletter__heading {
  font-size: clamp(3rem, 6vw, 5.6rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1;
  margin: 0;
  white-space: nowrap;
}

.footer-newsletter__form {
  display: flex;
  flex: 1;
  max-width: 56rem;
  min-width: 0;
  width: 100%;
}

.footer-newsletter__form input[type="email"] {
  flex: 1;
  padding: 1.6rem 2rem;
  border: none;
  font-size: 1.4rem;
  font-family: var(--font-body-family);
  outline: none;
  min-width: 0;
}

.footer-newsletter__form button {
  padding: 1.6rem 2.8rem;
  border: none;
  font-size: 1.3rem;
  font-weight: 700;
  letter-spacing: 0.1rem;
  text-transform: uppercase;
  cursor: pointer;
  white-space: nowrap;
  font-family: var(--font-body-family);
  transition: opacity 0.2s;
}

.footer-newsletter__form button:hover { opacity: 0.85; }

/* Footer body */
.site-footer {
  border-top: 0.1rem solid rgba(18,18,18,0.1);
  padding: 0;
}

.footer-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  max-width: var(--page-width);
  margin: 0 auto;
}

@media (min-width: 750px) {
  .footer-columns { grid-template-columns: 1.5fr 1fr 1fr 1fr; }
}

.footer-col {
  padding: 4rem var(--page-width-margin);
  border-bottom: 0.1rem solid rgba(18,18,18,0.1);
}

@media (min-width: 750px) {
  .footer-col {
    padding: 5rem;
    border-bottom: none;
    border-right: 0.1rem solid rgba(18,18,18,0.1);
  }
  .footer-col:last-child { border-right: none; }
}

.footer-col--brand {}

.footer-brand-logo {
  font-size: 1.8rem;
  font-weight: 700;
  text-decoration: none;
  display: inline-block;
  margin-bottom: 1.5rem;
}

.footer-brand-desc {
  font-size: 1.4rem;
  line-height: 1.7;
  color: inherit;
  opacity: 0.7;
  margin: 0;
}

.footer-col__title {
  font-size: 1.3rem;
  font-weight: 700;
  letter-spacing: 0.1rem;
  text-transform: uppercase;
  margin-bottom: 2rem;
}

.footer-nav-list { list-style: none; padding: 0; margin: 0; }
.footer-nav-list li { margin-bottom: 1.4rem; }
.footer-nav-list a {
  font-size: 1.4rem;
  color: inherit;
  text-decoration: none;
  opacity: 0.75;
  transition: opacity 0.2s;
}
.footer-nav-list a:hover { opacity: 1; }

/* Social icons */
.footer-social {
  display: flex;
  gap: 1.8rem;
  flex-wrap: wrap;
  align-items: center;
}

.footer-social-link {
  display: flex;
  align-items: center;
  transition: opacity 0.2s;
}
.footer-social-link:hover { opacity: 0.65; }
.footer-social-link svg { width: 2.2rem; height: 2.2rem; display: block; }

/* Footer bottom bar */
.footer-bottom {
  max-width: var(--page-width);
  margin: 0 auto;
  padding: 2.5rem var(--page-width-margin);
  border-top-width: 0.1rem;
  border-top-style: solid;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

@media (min-width: 750px) {
  .footer-bottom { padding: 2.5rem 5rem; }
}

.footer-bottom p { font-size: 1.3rem; margin: 0; }

.footer-disclaimer {
  font-size: 1.2rem !important;
}

/* =============================================
   TYPOGRAPHY — GOOGLE FONTS SUPPORT
   ============================================= */
/* Applied via inline style in wp_head when user selects fonts */

/* =============================================
   WOOCOMMERCE PAGE OVERRIDES
   Fix WC Blocks teal background + layout
   ============================================= */

/* Override any WC blocks background bleeding onto the page */
body.woocommerce,
body.woocommerce-page,
body.post-type-archive-product,
body.single-product {
  background-color: rgb(var(--color-background)) !important;
}

/* WC content area */
.woocommerce-page .site-main,
.woocommerce .site-main {
  background: rgb(var(--color-background));
  min-height: 50vh;
}

/* Fix WC blocks global styles bleeding in */
.wc-block-grid,
.wp-block-query,
.wc-blocks-style {
  background: transparent !important;
}

/* Ensure product images fill their container properly */
.woocommerce ul.products li.product a img {
  width: 100%;
  height: auto;
  display: block;
}

/* Clean up WC shop layout */
.woocommerce .woocommerce-result-count,
.woocommerce .woocommerce-ordering {
  margin-bottom: 2rem;
}

.woocommerce ul.products {
  clear: both;
}

/* =============================================
   DAWNIFY SHOP PAGE — Dawn aesthetic
   ============================================= */
.dawnify-shop {
  padding: 6rem 0 8rem;
}

.dawnify-shop__container {
  max-width: var(--page-width);
  margin: 0 auto;
  padding: 0 var(--page-width-margin);
}

@media (min-width: 750px) {
  .dawnify-shop__container { padding: 0 5rem; }
}

/* Page title */
.dawnify-shop__title {
  font-size: clamp(3.2rem, 5vw, 5.6rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin: 0 0 4rem;
  color: rgb(var(--color-foreground));
}

/* Toolbar */
.dawnify-shop__toolbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 3.5rem;
  padding-bottom: 2rem;
  border-bottom: 0.1rem solid rgba(var(--color-foreground), 0.1);
  font-size: 1.4rem;
  color: rgba(var(--color-foreground), 0.65);
  flex-wrap: wrap;
  gap: 1rem;
}

.dawnify-shop__toolbar .woocommerce-ordering select {
  font-size: 1.4rem;
  font-family: var(--font-body-family);
  border: 0.1rem solid rgba(var(--color-foreground), 0.3);
  background: rgb(var(--color-background));
  color: rgb(var(--color-foreground));
  padding: 0.8rem 1.2rem;
  cursor: pointer;
  outline: none;
}

/* Product grid */
.dawnify-products {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  list-style: none;
  padding: 0;
  margin: 0 0 5rem;
}

@media (min-width: 750px) {
  .dawnify-products { grid-template-columns: repeat(3, 1fr); gap: 2rem; }
}

@media (min-width: 990px) {
  .dawnify-products { grid-template-columns: repeat(4, 1fr); gap: 2.4rem; }
}

/* Product card */
.dawnify-product-card {
  position: relative;
}

.dawnify-product-card__link {
  text-decoration: none;
  color: rgb(var(--color-foreground));
  display: block;
}

/* Image container — grey bg, image centered with padding */
.dawnify-product-card__media {
  position: relative;
  background: #f3f3f3;
  overflow: hidden;
  margin-bottom: 1.4rem;
  /* Aspect ratio matching Dawn's tall card */
  aspect-ratio: 4 / 5;
  display: flex;
  align-items: center;
  justify-content: center;
}

.dawnify-product-card__img {
  width: 100%;
  height: 100%;
  object-fit: contain; /* contain so image sits centered with breathing room */
  padding: 1.5rem;
  display: block;
  transition: transform 0.5s ease;
}

.dawnify-product-card__link:hover .dawnify-product-card__img {
  transform: scale(1.04);
}

.dawnify-product-card__no-img {
  width: 100%;
  height: 100%;
  background: #f3f3f3;
}

/* Badges — blue pill, bottom-left of image, exactly like Dawn */
.dawnify-badge {
  position: absolute;
  bottom: 1rem;
  left: 1rem;
  padding: 0.5rem 1.2rem;
  border-radius: 40px;
  font-size: 1.2rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  line-height: 1;
  z-index: 1;
}

.dawnify-badge--sale {
  background: #005bd3; /* Dawn's exact blue */
  color: #ffffff;
}

.dawnify-badge--sold {
  background: rgba(var(--color-foreground), 0.08);
  color: rgba(var(--color-foreground), 0.6);
}

/* Info below card */
.dawnify-product-card__info {
  padding: 0 0.2rem;
}

.dawnify-product-card__title {
  font-size: 1.5rem;
  font-weight: 400;
  color: rgb(var(--color-foreground));
  margin: 0 0 0.5rem;
  line-height: 1.3;
  font-family: var(--font-body-family);
}

.dawnify-product-card__link:hover .dawnify-product-card__title {
  text-decoration: underline;
  text-underline-offset: 0.2rem;
}

.dawnify-product-card__price {
  font-size: 1.4rem;
  color: rgb(var(--color-foreground));
}

/* WooCommerce price HTML inside card */
.dawnify-product-card__price .woocommerce-Price-amount { font-size: 1.4rem; }
.dawnify-product-card__price del { color: rgba(var(--color-foreground), 0.5); margin-right: 0.5rem; }
.dawnify-product-card__price ins { text-decoration: none; }

/* Pagination */
.woocommerce-pagination {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 4rem;
}

.woocommerce-pagination .page-numbers {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 4rem;
  height: 4rem;
  padding: 0 0.8rem;
  font-size: 1.4rem;
  color: rgb(var(--color-foreground));
  text-decoration: none;
  border: 0.1rem solid rgba(var(--color-foreground), 0.2);
  transition: all var(--duration);
}

.woocommerce-pagination .page-numbers.current,
.woocommerce-pagination .page-numbers:hover {
  background: rgb(var(--color-foreground));
  color: rgb(var(--color-background));
  border-color: rgb(var(--color-foreground));
}

/* =============================================
   CUSTOM LOGO — HEADER & FOOTER
   ============================================= */

/* Header logo image */
.site-header .site-logo .custom-logo-link,
.site-header .site-logo a {
  display: flex;
  align-items: center;
}

.site-header .site-logo .custom-logo {
  max-height: 4rem;
  width: auto;
  display: block;
}

/* Mobile nav logo image */
.mobile-nav .site-logo .custom-logo-link,
.mobile-nav .site-logo a {
  display: flex;
  align-items: center;
}

.mobile-nav .site-logo .custom-logo {
  max-height: 3.2rem;
  width: auto;
  display: block;
}

/* Footer logo image */
.footer-col--brand .custom-logo-link {
  display: inline-flex;
  align-items: center;
  margin-bottom: 1.5rem;
}

.footer-col--brand .custom-logo {
  max-height: 4rem;
  width: auto;
  display: block;
}

/* =============================================
   BLOG / NEWS PAGE — home.php
   ============================================= */
.posts-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3.5rem 2.5rem;
}

@media (min-width: 750px) {
  .posts-grid--col-2 { grid-template-columns: repeat(2, 1fr); }
  .posts-grid--col-3 { grid-template-columns: repeat(3, 1fr); }
  .posts-grid--col-4 { grid-template-columns: repeat(4, 1fr); }
  .posts-grid:not([class*="posts-grid--col"]) { grid-template-columns: repeat(3, 1fr); }
}

.post-card__img-wrap {
  display: block;
  overflow: hidden;
  margin-bottom: 1.6rem;
  aspect-ratio: 3/2;
}

.post-card__img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.post-card:hover .post-card__img-wrap img { transform: scale(1.03); }

.post-card__meta {
  font-size: 1.2rem;
  text-transform: uppercase;
  letter-spacing: 0.1rem;
  color: rgba(var(--color-foreground), 0.55);
  margin-bottom: 0.8rem;
}

.post-card__title {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 0.8rem;
  line-height: 1.3;
  font-family: var(--font-heading-family);
}

.post-card__title a {
  color: rgb(var(--color-foreground));
  text-decoration: none;
}

.post-card__title a:hover { text-decoration: underline; text-underline-offset: 0.2rem; }

.post-card__excerpt {
  font-size: 1.4rem;
  color: rgba(var(--color-foreground), 0.7);
  line-height: 1.65;
  margin: 0;
}

/* =============================================
   RELATED PRODUCTS & UP-SELLS — grid fix
   ============================================= */

/* WooCommerce adds clear:both and float-based layout to these sections —
   override to use our grid properly */
.related.products,
.upsells.products {
  clear: both;
  width: 100%;
  margin-top: 5rem;
}

.related.products h2,
.upsells.products h2 {
  font-size: 2.4rem;
  font-weight: 700;
  margin-bottom: 3rem;
  font-family: var(--font-heading-family);
  color: rgb(var(--color-foreground));
}

/* Force our grid on any ul.products or ul.dawnify-products inside these sections */
.related.products ul.products,
.related.products ul.dawnify-products,
.upsells.products ul.products,
.upsells.products ul.dawnify-products {
  display: grid !important;
  grid-template-columns: repeat(2, 1fr) !important;
  gap: 1.5rem !important;
  list-style: none !important;
  padding: 0 !important;
  margin: 0 !important;
  float: none !important;
  clear: none !important;
}

@media (min-width: 750px) {
  .related.products ul.products,
  .related.products ul.dawnify-products,
  .upsells.products ul.products,
  .upsells.products ul.dawnify-products {
    grid-template-columns: repeat(4, 1fr) !important;
    gap: 2.4rem !important;
  }
}

/* Ensure product cards in related section don't float */
.related.products ul.products li.product,
.related.products ul.dawnify-products li,
.upsells.products ul.products li.product,
.upsells.products ul.dawnify-products li {
  float: none !important;
  clear: none !important;
  width: 100% !important;
  margin: 0 !important;
}

/* Fix WooCommerce's column width classes that interfere */
.related.products li.product.first,
.related.products li.product.last {
  clear: none !important;
}

/* =============================================
   RELATED PRODUCTS — force correct grid
   ============================================= */
.related.products,
.upsells.products {
  clear: both;
  width: 100%;
}

/* Always 4 columns on desktop for related/upsell */
@media (min-width: 750px) {
  .related.products .dawnify-products,
  .upsells.products .dawnify-products {
    grid-template-columns: repeat(4, 1fr) !important;
  }
}

/* WooCommerce clears floats with a clearfix — stop it from
   occupying a grid track and pushing items down */
.related.products .dawnify-products::before,
.related.products .dawnify-products::after,
.upsells.products .dawnify-products::before,
.upsells.products .dawnify-products::after {
  display: none !important;
  content: none !important;
}

/* Remove any float/width WC tries to apply on the li items inside */
.related.products .dawnify-products > li,
.upsells.products .dawnify-products > li {
  float: none !important;
  width: auto !important;
  clear: none !important;
}

/* =============================================
   RELATED PRODUCTS — explicit 4-col grid
   ============================================= */
.dawnify-products--related {
  grid-template-columns: repeat(2, 1fr) !important;
}

@media (min-width: 600px) {
  .dawnify-products--related {
    grid-template-columns: repeat(4, 1fr) !important;
    gap: 2.4rem !important;
  }
}

/* Kill any WC float/width/clear that bleeds in */
.dawnify-products--related > li {
  float: none !important;
  width: auto !important;
  clear: none !important;
  margin: 0 !important;
}

/* =============================================
   SINGLE POST PAGE
   ============================================= */
.single-post__header {
  background: rgba(var(--color-foreground), 0.03);
  padding: 7rem 2rem 5rem;
  text-align: center;
  border-bottom: 0.1rem solid rgba(var(--color-foreground), 0.08);
}

.single-post__header-inner {
  max-width: 76rem;
  margin: 0 auto;
}

.single-post__meta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  font-size: 1.2rem;
  text-transform: uppercase;
  letter-spacing: 0.1rem;
  color: rgba(var(--color-foreground), 0.55);
  margin-bottom: 2rem;
}

.single-post__cat {
  color: rgb(var(--color-foreground));
  text-decoration: none;
  font-weight: 600;
}
.single-post__cat:hover { text-decoration: underline; }

.single-post__meta-sep { opacity: 0.4; }

.single-post__title {
  font-size: clamp(2.8rem, 5vw, 5rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.15;
  color: rgb(var(--color-foreground));
  font-family: var(--font-heading-family);
  margin: 0 0 2.5rem;
}

.single-post__byline {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  font-size: 1.4rem;
  color: rgba(var(--color-foreground), 0.65);
}

.single-post__avatar {
  border-radius: 50%;
  display: block;
}

/* Featured image */
.single-post__featured-img {
  max-width: 110rem;
  margin: 0 auto;
  aspect-ratio: 21 / 9;
  overflow: hidden;
}

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

/* Body */
.single-post__body {
  max-width: 76rem;
  margin: 0 auto;
  padding: 6rem 2rem 8rem;
}

@media (min-width: 750px) {
  .single-post__body { padding: 7rem 3rem 10rem; }
}

/* Content typography */
.single-post__content {
  font-size: 1.7rem;
  line-height: 1.85;
  color: rgb(var(--color-foreground));
  font-family: var(--font-body-family);
}

.single-post__content p { margin-bottom: 2rem; }
.single-post__content h2 { font-size: 2.4rem; font-weight: 700; margin: 4rem 0 1.5rem; font-family: var(--font-heading-family); }
.single-post__content h3 { font-size: 2rem; font-weight: 700; margin: 3rem 0 1.2rem; font-family: var(--font-heading-family); }
.single-post__content a { color: rgb(var(--color-foreground)); }
.single-post__content img { max-width: 100%; height: auto; border-radius: 0.4rem; }
.single-post__content ul, .single-post__content ol { padding-left: 2.5rem; margin-bottom: 2rem; }
.single-post__content li { margin-bottom: 0.6rem; }
.single-post__content blockquote {
  border-left: 0.4rem solid rgb(var(--color-foreground));
  padding: 1rem 0 1rem 2.4rem;
  margin: 3rem 0;
  font-style: italic;
  color: rgba(var(--color-foreground), 0.7);
}

/* Tags */
.single-post__tags {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.8rem;
  margin-top: 4rem;
  padding-top: 3rem;
  border-top: 0.1rem solid rgba(var(--color-foreground), 0.1);
}

.single-post__tags-label {
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 0.1rem;
  color: rgba(var(--color-foreground), 0.5);
}

.single-post__tag {
  font-size: 1.2rem;
  padding: 0.4rem 1.2rem;
  border: 0.1rem solid rgba(var(--color-foreground), 0.2);
  color: rgb(var(--color-foreground));
  text-decoration: none;
  transition: background 0.2s, border-color 0.2s;
}
.single-post__tag:hover {
  background: rgb(var(--color-foreground));
  color: rgb(var(--color-background));
  border-color: rgb(var(--color-foreground));
}

/* Author box */
.single-post__author {
  display: flex;
  gap: 2.4rem;
  align-items: flex-start;
  margin-top: 6rem;
  padding: 3rem;
  background: rgba(var(--color-foreground), 0.03);
  border: 0.1rem solid rgba(var(--color-foreground), 0.08);
}

.single-post__author-avatar {
  border-radius: 50%;
  flex-shrink: 0;
}

.single-post__author-label {
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 0.1rem;
  color: rgba(var(--color-foreground), 0.5);
  margin-bottom: 0.4rem;
}

.single-post__author-name {
  font-size: 1.6rem;
  font-weight: 700;
  margin: 0 0 0.8rem;
  font-family: var(--font-heading-family);
  color: rgb(var(--color-foreground));
}

.single-post__author-bio {
  font-size: 1.4rem;
  color: rgba(var(--color-foreground), 0.65);
  line-height: 1.65;
  margin: 0;
}

/* Prev/Next navigation */
.single-post__nav {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-top: 5rem;
}

.single-post__nav-link {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  padding: 2rem;
  border: 0.1rem solid rgba(var(--color-foreground), 0.15);
  text-decoration: none;
  color: rgb(var(--color-foreground));
  transition: border-color 0.2s;
}

.single-post__nav-link:hover { border-color: rgb(var(--color-foreground)); }

.single-post__nav-link--next { text-align: right; }

.single-post__nav-dir {
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 0.08rem;
  color: rgba(var(--color-foreground), 0.5);
}

.single-post__nav-title {
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 1.35;
}

/* =============================================
   WOOCOMMERCE ACCOUNT / CART / CHECKOUT PAGES
   ============================================= */

/* Base font size fix for all WC pages */
.woocommerce-page .woocommerce,
.woocommerce-account .woocommerce,
.woocommerce-cart .woocommerce,
.woocommerce-checkout .woocommerce {
  font-size: 1.5rem;
  line-height: 1.7;
  color: rgb(var(--color-foreground));
  font-family: var(--font-body-family);
}

/* Page title */
.woocommerce-account .woocommerce h1,
.woocommerce-account .woocommerce h2,
.woocommerce-cart .woocommerce h1,
.woocommerce-cart .woocommerce h2,
.woocommerce-checkout .woocommerce h1,
.woocommerce-checkout .woocommerce h2 {
  font-size: clamp(2.4rem, 4vw, 3.6rem);
  font-weight: 700;
  font-family: var(--font-heading-family);
  color: rgb(var(--color-foreground));
  margin-bottom: 2.5rem;
}

/* My Account nav */
.woocommerce-MyAccount-navigation ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.woocommerce-MyAccount-navigation ul li {
  border-bottom: 0.1rem solid rgba(var(--color-foreground), 0.08);
}

.woocommerce-MyAccount-navigation ul li a {
  display: block;
  padding: 1.2rem 0;
  font-size: 1.5rem;
  color: rgb(var(--color-foreground));
  text-decoration: none;
  transition: opacity 0.2s;
}

.woocommerce-MyAccount-navigation ul li a:hover { opacity: 0.65; }

.woocommerce-MyAccount-navigation ul li.is-active a {
  font-weight: 600;
}

/* Account content area */
.woocommerce-MyAccount-content {
  font-size: 1.5rem;
  line-height: 1.7;
  color: rgb(var(--color-foreground));
}

.woocommerce-MyAccount-content p { margin-bottom: 1.5rem; }

.woocommerce-MyAccount-content a {
  color: rgb(var(--color-foreground));
}

/* WC tables */
.woocommerce table.shop_table {
  font-size: 1.4rem;
  border-color: rgba(var(--color-foreground), 0.1);
}

.woocommerce table.shop_table th {
  font-size: 1.2rem;
  text-transform: uppercase;
  letter-spacing: 0.06rem;
  color: rgba(var(--color-foreground), 0.6);
  font-weight: 600;
}

/* WC form fields */
.woocommerce form .form-row label {
  font-size: 1.3rem;
  font-weight: 600;
  color: rgb(var(--color-foreground));
  margin-bottom: 0.5rem;
}

.woocommerce form .form-row input.input-text,
.woocommerce form .form-row textarea {
  font-size: 1.5rem;
  font-family: var(--font-body-family);
  color: rgb(var(--color-foreground));
  border-color: rgba(var(--color-foreground), 0.25);
  padding: 1rem 1.4rem;
}

/* WC buttons */
.woocommerce .button,
.woocommerce button.button {
  font-size: 1.4rem;
  font-family: var(--font-body-family);
  background: rgb(var(--color-button));
  color: rgb(var(--color-button-text));
  padding: 1.2rem 2.4rem;
  border-radius: 0;
  border: none;
  cursor: pointer;
  transition: opacity 0.2s;
}

.woocommerce .button:hover,
.woocommerce button.button:hover {
  background: rgb(var(--color-button));
  color: rgb(var(--color-button-text));
  opacity: 0.85;
}

/* WC notices */
.woocommerce-message,
.woocommerce-info,
.woocommerce-error {
  font-size: 1.4rem;
}

/* =============================================
   WOOCOMMERCE NOTICES — spacing fix
   ============================================= */
.woocommerce-message,
.woocommerce-info,
.woocommerce-error,
.woocommerce-notices-wrapper .woocommerce-message,
.woocommerce-notices-wrapper .woocommerce-info,
.woocommerce-notices-wrapper .woocommerce-error {
  padding: 1.4rem 2rem 1.4rem 4rem !important;
  font-size: 1.4rem !important;
  font-family: var(--font-body-family) !important;
  color: rgb(var(--color-foreground)) !important;
  border-top-color: rgb(var(--color-button)) !important;
  margin-bottom: 2rem !important;
}

.woocommerce-message::before,
.woocommerce-info::before {
  color: rgb(var(--color-button)) !important;
  top: 1.4rem !important;
}

/* =============================================
   STATIC PAGES (page.php)
   ============================================= */
.dawnify-page {
  max-width: 86rem;
  margin: 0 auto;
  padding: 7rem 2rem 10rem;
  min-height: 60vh;
}

@media (min-width: 750px) {
  .dawnify-page { padding: 8rem 3rem 12rem; }
}

.dawnify-page__header {
  margin-bottom: 4rem;
  padding-bottom: 3.5rem;
  border-bottom: 0.1rem solid rgba(var(--color-foreground), 0.1);
}

.dawnify-page__title {
  font-size: clamp(3rem, 5vw, 5rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin: 0;
  font-family: var(--font-heading-family);
  color: rgb(var(--color-foreground));
}

.dawnify-page__featured-img {
  margin-bottom: 4rem;
  overflow: hidden;
}

.dawnify-page__featured-img img {
  width: 100%;
  height: auto;
  display: block;
}

/* Page content typography */
.dawnify-page__content {
  font-size: 1.6rem;
  line-height: 1.85;
  color: rgb(var(--color-foreground));
  font-family: var(--font-body-family);
}

.dawnify-page__content p   { margin-bottom: 2rem; }
.dawnify-page__content h2  { font-size: 2.6rem; font-weight: 700; margin: 4rem 0 1.5rem; font-family: var(--font-heading-family); color: rgb(var(--color-foreground)); }
.dawnify-page__content h3  { font-size: 2.2rem; font-weight: 700; margin: 3rem 0 1.2rem; font-family: var(--font-heading-family); color: rgb(var(--color-foreground)); }
.dawnify-page__content h4  { font-size: 1.8rem; font-weight: 600; margin: 2.5rem 0 1rem; color: rgb(var(--color-foreground)); }
.dawnify-page__content a   { color: rgb(var(--color-foreground)); }
.dawnify-page__content img { max-width: 100%; height: auto; display: block; margin: 2rem 0; }
.dawnify-page__content ul,
.dawnify-page__content ol  { padding-left: 2.5rem; margin-bottom: 2rem; }
.dawnify-page__content li  { margin-bottom: 0.8rem; }
.dawnify-page__content blockquote {
  border-left: 0.4rem solid rgb(var(--color-foreground));
  padding: 1rem 0 1rem 2.4rem;
  margin: 3rem 0;
  font-style: italic;
  color: rgba(var(--color-foreground), 0.7);
}
.dawnify-page__content table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 2rem;
  font-size: 1.4rem;
}
.dawnify-page__content table th,
.dawnify-page__content table td {
  padding: 1rem 1.5rem;
  border: 0.1rem solid rgba(var(--color-foreground), 0.15);
  text-align: left;
}
.dawnify-page__content table th {
  font-weight: 600;
  background: rgba(var(--color-foreground), 0.03);
}

/* =============================================
   PAGINATION — WORKING FIX (inline-block)
   ============================================= */
.woocommerce nav.woocommerce-pagination ul,
.woocommerce-page nav.woocommerce-pagination ul {
  display: block !important;
  border: none !important;
  padding: 0 !important;
  margin: 3rem 0 !important;
  text-align: center !important;
  overflow: visible !important;
}

.woocommerce nav.woocommerce-pagination ul li,
.woocommerce-page nav.woocommerce-pagination ul li {
  display: inline-block !important;
  float: none !important;
  margin: 0 0.3rem !important;
  padding: 0 !important;
  border: none !important;
  width: auto !important;
  clear: none !important;
}

.woocommerce nav.woocommerce-pagination ul li a,
.woocommerce nav.woocommerce-pagination ul li span,
.woocommerce-page nav.woocommerce-pagination ul li a,
.woocommerce-page nav.woocommerce-pagination ul li span {
  display: inline-block !important;
  padding: 0.8rem 1.2rem !important;
  min-width: 4rem !important;
  line-height: 1 !important;
  text-align: center !important;
  font-size: 1.4rem !important;
  font-family: var(--font-body-family) !important;
  border: 0.1rem solid rgba(var(--color-foreground), 0.2) !important;
  color: rgb(var(--color-foreground)) !important;
  text-decoration: none !important;
  background: transparent !important;
  transition: all 0.2s !important;
}

.woocommerce nav.woocommerce-pagination ul li span.current,
.woocommerce-page nav.woocommerce-pagination ul li span.current {
  background: rgb(var(--color-foreground)) !important;
  color: rgb(var(--color-background)) !important;
  border-color: rgb(var(--color-foreground)) !important;
}

.woocommerce nav.woocommerce-pagination ul li a:hover,
.woocommerce-page nav.woocommerce-pagination ul li a:hover {
  background: rgb(var(--color-foreground)) !important;
  color: rgb(var(--color-background)) !important;
  border-color: rgb(var(--color-foreground)) !important;
}
