/* =============================================================
   朱珠鈎勾 Crochet a Dream — Brand Site
   Design tokens from brand CI (40-page proposal)
============================================================= */
:root {
  /* Brand color */
  --red:        #B63A2B;   /* 品牌紅 Crochet Red */
  --red-deep:   #9A3024;
  --ivory:      #F5EFE6;   /* 珍珠白 Pearl Ivory */
  --gold:       #C8A97E;   /* 暖金 Warm Gold */
  --gold-soft:  #DCC6A6;
  --brown:      #5D463C;   /* 深棕 Dark Brown */
  --brown-soft: #7c6358;
  --cream:      #FBF8F2;
  --white:      #ffffff;

  --text:       #4a3a33;
  --text-muted: #897a72;
  --line:       rgba(93, 70, 60, .14);
  --line-soft:  rgba(93, 70, 60, .08);

  /* Type */
  --serif:  'Noto Serif TC', 'Songti TC', serif;
  --sans:   'Noto Sans TC', -apple-system, 'PingFang TC', sans-serif;
  --script: 'Great Vibes', cursive;

  /* Spacing rhythm */
  --gut: clamp(20px, 5vw, 64px);
  --sec: clamp(64px, 9vw, 132px);
  --maxw: 1240px;

  --shadow-sm: 0 6px 22px rgba(93, 70, 60, .08);
  --shadow-md: 0 18px 50px rgba(93, 70, 60, .14);

  --ease: cubic-bezier(.22, .61, .36, 1);
}

/* ---------- reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--sans);
  font-weight: 300;
  color: var(--text);
  background: var(--cream);
  line-height: 1.85;
  letter-spacing: .02em;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font-family: inherit; border: none; background: none; cursor: pointer; color: inherit; }
:focus-visible { outline: 2px solid var(--red); outline-offset: 3px; border-radius: 2px; }

/* ---------- layout helpers ---------- */
.container { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--gut); }
.section { padding-block: var(--sec); }
.section--cream { background: var(--cream); }
.section--ivory { background: var(--ivory); }
.section--white { background: var(--white); }
section[id] { scroll-margin-top: 128px; }

.eyebrow {
  font-family: var(--script);
  font-size: clamp(1.5rem, 3vw, 2.1rem);
  color: var(--gold);
  line-height: 1;
  margin-bottom: .3em;
}
.kicker {
  font-size: .72rem;
  letter-spacing: .34em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
  margin-bottom: 1rem;
}
h1, h2, h3, h4 { font-family: var(--serif); font-weight: 500; color: var(--brown); line-height: 1.3; letter-spacing: .04em; }
.h-display { font-size: clamp(2rem, 5vw, 3.2rem); font-weight: 600; }
.h-section  { font-size: clamp(1.7rem, 3.6vw, 2.5rem); }
.lead { font-size: clamp(1rem, 1.4vw, 1.12rem); color: var(--text-muted); max-width: 58ch; }

.section__head { max-width: 720px; margin-bottom: clamp(36px, 5vw, 60px); }
.section__head--center { margin-inline: auto; text-align: center; }
.section__head .h-section { margin-bottom: .6rem; }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: .6em;
  padding: .95em 2.1em;
  font-size: .9rem; font-weight: 500; letter-spacing: .12em;
  border-radius: 999px;
  transition: all .4s var(--ease);
  will-change: transform;
}
.btn svg { width: 1em; height: 1em; transition: transform .4s var(--ease); }
.btn:hover svg { transform: translateX(4px); }
.btn--primary { background: var(--red); color: var(--ivory); box-shadow: 0 10px 24px rgba(182,58,43,.24); }
.btn--primary:hover { background: var(--red-deep); transform: translateY(-2px); box-shadow: 0 16px 30px rgba(182,58,43,.30); }
.btn--ghost { border: 1px solid var(--brown); color: var(--brown); }
.btn--ghost:hover { background: var(--brown); color: var(--ivory); transform: translateY(-2px); }
.btn--light { border: 1px solid rgba(255,255,255,.7); color: #fff; }
.btn--light:hover { background: #fff; color: var(--brown); }

/* ---------- header ---------- */
.site-header {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px var(--gut);
  transition: background .45s var(--ease), box-shadow .45s var(--ease), padding .45s var(--ease);
}
.site-header.is-solid {
  background: rgba(251, 248, 242, .92);
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 var(--line-soft);
  padding-block: 10px;
}
.brand { display: flex; align-items: center; gap: 12px; z-index: 2; }
.brand__mark { width: 46px; height: 46px; border-radius: 50%; transition: width .4s, height .4s; }
.site-header.is-solid .brand__mark { width: 40px; height: 40px; }
.brand__name { line-height: 1.1; }
.brand__zh { font-family: var(--serif); font-size: 1.15rem; font-weight: 600; color: var(--brown); letter-spacing: .14em; }
.brand__en { font-family: var(--script); font-size: 1rem; color: var(--gold); }
/* over-hero (transparent) light text */
body.is-front-page .site-header:not(.is-solid) .brand__zh { color: #fff; text-shadow: 0 1px 8px rgba(0,0,0,.3); }
body.is-front-page .site-header:not(.is-solid) .nav__link { color: rgba(255,255,255,.92); text-shadow: 0 1px 8px rgba(0,0,0,.3); }
body.is-front-page .site-header:not(.is-solid) .nav-toggle span { background: #fff; }

.nav { display: flex; align-items: center; gap: clamp(18px, 2.4vw, 40px); }
.nav__list { display: flex; gap: clamp(18px, 2.4vw, 38px); }
.nav__link {
  position: relative; font-size: .92rem; font-weight: 400; letter-spacing: .12em;
  color: var(--brown); padding-block: 6px;
}
.nav__link::after {
  content: ''; position: absolute; left: 0; bottom: 0; width: 0; height: 1.5px;
  background: var(--red); transition: width .4s var(--ease);
}
.nav__link:hover::after, .nav__link.is-active::after { width: 100%; }
.site-header:not(.is-solid) .nav__link::after { background: #fff; }

.nav-toggle { display: none; flex-direction: column; gap: 5px; width: 30px; height: 24px; justify-content: center; z-index: 2; }
.nav-toggle span { display: block; height: 2px; width: 100%; background: var(--brown); border-radius: 2px; transition: transform .4s var(--ease), opacity .3s; }

/* mobile menu */
.mobile-menu {
  position: fixed; inset: 0; z-index: 99;
  background: var(--ivory);
  display: flex; flex-direction: column; justify-content: center; align-items: center; gap: 8px;
  opacity: 0; visibility: hidden; transform: translateY(-12px);
  transition: opacity .45s var(--ease), transform .45s var(--ease), visibility .45s;
}
.mobile-menu.is-open { opacity: 1; visibility: visible; transform: none; }
.mobile-menu a { font-family: var(--serif); font-size: 1.7rem; color: var(--brown); padding: .35em; letter-spacing: .1em; }
.mobile-menu a span { font-family: var(--script); font-size: 1rem; color: var(--gold); display: block; }
body.menu-open { overflow: hidden; }

/* ---------- hero ---------- */
.hero { position: relative; min-height: 100svh; display: flex; align-items: center; overflow: hidden; }
.hero__media { position: absolute; inset: 0; z-index: 0; }
.hero__media video, .hero__media img { width: 100%; height: 100%; object-fit: cover; }
.hero__media::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(105deg, rgba(60,40,33,.62) 0%, rgba(60,40,33,.28) 45%, rgba(60,40,33,.10) 100%);
}
.hero__inner { position: relative; z-index: 1; color: #fff; padding-block: 120px; max-width: 760px; }
.hero .eyebrow { color: var(--gold-soft); }
.hero h1 { color: #fff; font-size: clamp(2.3rem, 6vw, 4.1rem); font-weight: 600; letter-spacing: .05em; text-shadow: 0 2px 20px rgba(0,0,0,.28); }
.hero__title-line { display: block; }
.hero__sub > span { display: block; }
.hero h1 em { font-style: normal; color: var(--gold-soft); }
.hero__sub { margin: 1.4rem 0 2.2rem; font-size: clamp(1rem, 1.6vw, 1.2rem); color: rgba(255,255,255,.92); font-weight: 300; max-width: 30ch; text-shadow: 0 1px 12px rgba(0,0,0,.3); }
.hero__actions { display: flex; flex-wrap: wrap; gap: 14px; }
.hero__scroll {
  position: absolute; bottom: 28px; left: 50%; transform: translateX(-50%); z-index: 1;
  color: rgba(255,255,255,.8); font-size: .68rem; letter-spacing: .3em; text-transform: uppercase;
  display: flex; flex-direction: column; align-items: center; gap: 8px;
}
.hero__scroll::after { content: ''; width: 1px; height: 38px; background: rgba(255,255,255,.6); animation: scrollline 2s var(--ease) infinite; transform-origin: top; }
@keyframes scrollline { 0%{transform:scaleY(.2)} 50%{transform:scaleY(1)} 100%{transform:scaleY(.2)} }

/* ---------- page hero (sub pages) ---------- */
.page-hero { position: relative; padding: clamp(140px, 18vh, 220px) 0 clamp(48px, 8vw, 90px); text-align: center; overflow: hidden; }
.page-hero--img { color: #fff; }
.page-hero--img .page-hero__bg { position: absolute; inset: 0; z-index: 0; }
.page-hero--img .page-hero__bg img { width: 100%; height: 100%; object-fit: cover; }
.page-hero--img .page-hero__bg::after { content: ''; position: absolute; inset: 0; background: rgba(60,40,33,.5); }
.page-hero__inner { position: relative; z-index: 1; }
.page-hero--img h1 { color: #fff; }
.page-hero--img .lead { color: rgba(255,255,255,.9); margin-inline: auto; }
.page-hero h1 { font-size: clamp(2.1rem, 5vw, 3.3rem); font-weight: 600; margin-bottom: .5rem; }

/* ---------- scallop divider (echoes logo border) ---------- */
.scallop { display: block; width: 100%; height: 26px; color: var(--cream); }
.scallop--ivory { color: var(--ivory); }
.scallop svg { display: block; width: 100%; height: 100%; }

/* ---------- collections grid ---------- */
.coll-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: clamp(16px, 2vw, 26px); }
.coll-card {
  position: relative; aspect-ratio: 3/4; border-radius: 4px; overflow: hidden;
  display: flex; align-items: flex-end; isolation: isolate;
  box-shadow: var(--shadow-sm); transition: box-shadow .5s var(--ease);
}
.coll-card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: -2; transition: transform 1.1s var(--ease); }
.coll-card::after { content: ''; position: absolute; inset: 0; z-index: -1; background: linear-gradient(to top, rgba(60,40,33,.78) 0%, rgba(60,40,33,.12) 55%, transparent 100%); }
.coll-card:hover { box-shadow: var(--shadow-md); }
.coll-card:hover img { transform: scale(1.06); }
.coll-card__body { padding: 26px; color: #fff; }
.coll-card__en { font-family: var(--script); font-size: 1.5rem; color: var(--gold-soft); line-height: 1; }
.coll-card__zh { font-family: var(--serif); font-size: 1.35rem; font-weight: 600; color: #fff; margin: 2px 0 6px; letter-spacing: .08em; }
.coll-card__desc { font-size: .85rem; color: rgba(255,255,255,.85); font-weight: 300; }

/* ---------- values ---------- */
.values-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: clamp(28px, 4vw, 54px); }
.value { text-align: center; }
.value__icon { width: 56px; height: 56px; margin: 0 auto 18px; color: var(--red); }
.value__icon svg { width: 100%; height: 100%; }
.value__en { font-family: var(--script); font-size: 1.5rem; color: var(--gold); line-height: 1; }
.value h3 { font-size: 1.2rem; margin: 4px 0 10px; letter-spacing: .1em; }
.value p { font-size: .92rem; color: var(--text-muted); }

/* ---------- product grid + lightbox ---------- */
.prod-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: clamp(14px, 2vw, 24px); }
.prod-card { background: var(--white); border-radius: 4px; overflow: hidden; box-shadow: var(--shadow-sm); transition: transform .5s var(--ease), box-shadow .5s var(--ease); cursor: pointer; }
.prod-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.prod-card__img { aspect-ratio: 1; overflow: hidden; background: var(--ivory); }
.prod-card__img img { width: 100%; height: 100%; object-fit: cover; transition: transform 1s var(--ease); }
.prod-card:hover .prod-card__img img { transform: scale(1.07); }
.prod-card__body { padding: 16px 18px 20px; }
.prod-card__series { font-size: .68rem; letter-spacing: .2em; text-transform: uppercase; color: var(--gold); }
.prod-card__name { font-family: var(--serif); font-size: 1.05rem; color: var(--brown); margin: 4px 0 2px; }
.prod-card__price { font-size: .85rem; color: var(--text-muted); }

.lightbox { position: fixed; inset: 0; z-index: 200; background: rgba(40,28,24,.88); display: flex; align-items: center; justify-content: center; padding: 5vw; opacity: 0; visibility: hidden; transition: opacity .4s var(--ease), visibility .4s; }
.lightbox.is-open { opacity: 1; visibility: visible; }
.lightbox img { max-width: min(680px, 90vw); max-height: 84vh; border-radius: 4px; box-shadow: var(--shadow-md); transform: scale(.94); transition: transform .45s var(--ease); }
.lightbox.is-open img { transform: scale(1); }
.lightbox__close { position: absolute; top: 22px; right: 26px; width: 44px; height: 44px; color: #fff; font-size: 1.8rem; line-height: 1; }

/* ---------- editorial split ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px, 5vw, 80px); align-items: center; }
.split--reverse .split__media { order: 2; }
.split__media { position: relative; }
.split__media img { width: 100%; aspect-ratio: 4/5; object-fit: cover; border-radius: 4px; box-shadow: var(--shadow-md); }
.split__media--tall img { aspect-ratio: 3/4; }
.split__deco { position: absolute; inset: -14px -14px auto auto; width: 64%; height: 70%; border: 1px solid var(--gold); border-radius: 4px; z-index: -1; }
.split__body p + p { margin-top: 1.1rem; }
.split__body .signature { font-family: var(--script); font-size: 2rem; color: var(--gold); margin-top: 1.4rem; }

/* ---------- steps ---------- */
.steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: clamp(24px, 3vw, 40px); counter-reset: step; }
.step { position: relative; padding-top: 14px; }
.step__num { font-family: var(--serif); font-size: 2.6rem; color: var(--gold-soft); line-height: 1; }
.step h3 { font-size: 1.2rem; margin: 8px 0 10px; letter-spacing: .08em; }
.step p { font-size: .92rem; color: var(--text-muted); }

/* ---------- cta band ---------- */
.cta-band { position: relative; text-align: center; color: #fff; overflow: hidden; }
.cta-band__bg { position: absolute; inset: 0; z-index: 0; }
.cta-band__bg img { width: 100%; height: 100%; object-fit: cover; }
.cta-band__bg::after { content: ''; position: absolute; inset: 0; background: rgba(154,48,36,.78); }
.cta-band .container { position: relative; z-index: 1; padding-block: clamp(64px, 9vw, 110px); }
.cta-band h2 { color: #fff; font-size: clamp(1.8rem, 4vw, 2.7rem); margin-bottom: 1rem; }
.cta-band p { color: rgba(255,255,255,.9); max-width: 46ch; margin: 0 auto 2rem; }

/* ---------- gallery strip ---------- */
.gallery { display: grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); gap: 8px; }
.gallery img { width: 100%; aspect-ratio: 1; object-fit: cover; border-radius: 3px; transition: filter .5s, transform .8s var(--ease); }
.gallery img:hover { filter: saturate(1.1); transform: scale(1.03); }

/* ---------- form ---------- */
.form { display: grid; gap: 20px; max-width: 620px; }
.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.field { display: flex; flex-direction: column; gap: 7px; }
.field label { font-size: .8rem; letter-spacing: .1em; color: var(--brown); font-weight: 500; }
.field label .req { color: var(--red); }
.field input, .field textarea, .field select {
  font-family: inherit; font-size: .95rem; color: var(--text);
  padding: 13px 16px; border: 1px solid var(--line); border-radius: 4px;
  background: var(--white); transition: border-color .3s, box-shadow .3s;
}
.field textarea { resize: vertical; min-height: 130px; }
.field input:focus, .field textarea:focus, .field select:focus { outline: none; border-color: var(--gold); box-shadow: 0 0 0 3px rgba(200,169,126,.18); }
.form__note { font-size: .8rem; color: var(--text-muted); }

/* ---------- footer ---------- */
.site-footer { background: var(--brown); color: rgba(245,239,230,.78); }
.site-footer .container { padding-block: clamp(56px, 7vw, 80px); }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: clamp(32px, 5vw, 64px); }
.footer-brand__name { font-family: var(--serif); font-size: 1.3rem; color: #fff; font-weight: 600; letter-spacing: .1em; }
.footer-brand__en { font-family: var(--script); font-size: 1.4rem; color: var(--gold); }
.footer-brand p { font-size: .88rem; max-width: 34ch; margin-top: 14px; }
.footer-col h4 { color: #fff; font-size: .78rem; letter-spacing: .22em; text-transform: uppercase; margin-bottom: 16px; font-family: var(--sans); font-weight: 600; }
.footer-col a { display: block; font-size: .9rem; padding: 5px 0; color: rgba(245,239,230,.72); transition: color .3s; }
.footer-col a:hover { color: var(--gold); }
.social { display: flex; gap: 14px; margin-top: 18px; }
.social a { width: 40px; height: 40px; border: 1px solid rgba(245,239,230,.28); border-radius: 50%; display: grid; place-items: center; transition: all .35s var(--ease); }
.social a:hover { background: var(--gold); border-color: var(--gold); color: var(--brown); transform: translateY(-3px); }
.social svg { width: 18px; height: 18px; }
.footer-base { border-top: 1px solid rgba(245,239,230,.14); padding-top: 24px; margin-top: clamp(40px,5vw,56px); display: flex; flex-wrap: wrap; justify-content: space-between; gap: 12px; font-size: .78rem; color: rgba(245,239,230,.55); }

/* ---------- scroll reveal ---------- */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .9s var(--ease), transform .9s var(--ease); }
.reveal.is-in { opacity: 1; transform: none; }
.reveal[data-d="1"] { transition-delay: .1s; }
.reveal[data-d="2"] { transition-delay: .2s; }
.reveal[data-d="3"] { transition-delay: .3s; }
.reveal[data-d="4"] { transition-delay: .4s; }

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
}

/* ---------- responsive ---------- */
@media (max-width: 860px) {
  .nav__list { display: none; }
  .nav-toggle { display: flex; }
  .nav-toggle.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav-toggle.is-open span:nth-child(2) { opacity: 0; }
  .nav-toggle.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  .split { grid-template-columns: 1fr; gap: 32px; }
  .split--reverse .split__media { order: 0; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}
@media (max-width: 520px) {
  .form__row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .brand__en { display: none; }
}


/* ---------- WooCommerce shop / product archive ---------- */
.woocommerce-page .site-main { background: var(--cream); }
.woocommerce-page .page-hero.shop-hero { min-height: 420px; display: flex; align-items: end; }
.shop-hero .page-hero__bg::after { background: linear-gradient(105deg, rgba(60,40,33,.64), rgba(60,40,33,.24)); }
.shop-hero__description { margin-inline: auto; }

.shop-hero__lead { margin-inline: auto; }
.shop-hero__lead-line { display: block; }

.shop-section { padding-top: clamp(42px, 6vw, 84px); }
.shop-toolbar {
  display: flex; align-items: center; justify-content: space-between; gap: 18px;
  padding: 18px 22px; margin-bottom: 34px;
  background: rgba(255,255,255,.7); border: 1px solid var(--line-soft); border-radius: 999px;
  box-shadow: var(--shadow-sm); backdrop-filter: blur(10px);
}
.shop-toolbar__count, .woocommerce-result-count { color: var(--text-muted); font-size: .9rem; margin: 0; }
.woocommerce-ordering { margin: 0; }
.woocommerce-ordering select, .woocommerce .orderby {
  appearance: none; border: 1px solid var(--line); border-radius: 999px;
  background: var(--white); color: var(--brown); font-family: var(--sans);
  padding: .72em 2.4em .72em 1.2em; min-width: 190px;
}
.woocommerce ul.products, .woocommerce-page ul.products {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: clamp(14px, 2vw, 24px);
  margin: 0; padding: 0; list-style: none;
}
.woocommerce ul.products::before, .woocommerce ul.products::after { display: none; }
.woocommerce ul.products li.product, .woocommerce-page ul.products li.product {
  float: none; width: auto; margin: 0;
}
.woocommerce span.onsale {
  min-height: auto; min-width: auto; line-height: 1; padding: .5em .75em;
  border-radius: 999px; background: var(--red); color: var(--ivory);
  font-family: var(--sans); font-size: .72rem; letter-spacing: .08em; z-index: 2;
}
.prod-card__action { margin-top: 14px; }
.woocommerce .prod-card__action .button, .woocommerce a.button, .woocommerce button.button, .woocommerce input.button {
  display: inline-flex; align-items: center; justify-content: center; gap: .45em;
  padding: .72em 1.25em; border-radius: 999px; border: 1px solid var(--red);
  background: var(--red); color: var(--ivory); font-family: var(--sans);
  font-size: .78rem; font-weight: 500; letter-spacing: .1em; line-height: 1.2;
  transition: transform .3s var(--ease), background .3s var(--ease), color .3s var(--ease);
}
.woocommerce .prod-card__action .button:hover, .woocommerce a.button:hover, .woocommerce button.button:hover, .woocommerce input.button:hover {
  background: var(--red-deep); color: var(--ivory); transform: translateY(-1px);
}
.woocommerce .price { color: var(--brown); font-weight: 400; }
.woocommerce .price del { color: var(--text-muted); opacity: .75; }
.woocommerce .price ins { text-decoration: none; color: var(--red); }
.woocommerce-notices-wrapper { max-width: var(--maxw); margin: 0 auto; padding-inline: var(--gut); }
.woocommerce-message, .woocommerce-info, .woocommerce-error {
  border-top: 0; border-left: 3px solid var(--red); background: var(--white); color: var(--text);
  box-shadow: var(--shadow-sm); border-radius: 10px; padding: 1em 1.2em; margin: 22px 0;
}
.woocommerce-message::before, .woocommerce-info::before { color: var(--red); }
.woocommerce-pagination { margin-top: 46px; text-align: center; }
.woocommerce nav.woocommerce-pagination ul { border: 0; display: inline-flex; gap: 8px; }
.woocommerce nav.woocommerce-pagination ul li { border: 0; }
.woocommerce nav.woocommerce-pagination ul li a, .woocommerce nav.woocommerce-pagination ul li span {
  min-width: 38px; min-height: 38px; display: inline-flex; align-items: center; justify-content: center;
  border-radius: 999px; background: var(--white); color: var(--brown); border: 1px solid var(--line);
}
.woocommerce nav.woocommerce-pagination ul li span.current, .woocommerce nav.woocommerce-pagination ul li a:hover {
  background: var(--red); color: var(--ivory); border-color: var(--red);
}
.woocommerce .empty-state .woocommerce-info { display: inline-block; }
@media (max-width: 680px) {
  .shop-toolbar { border-radius: 18px; align-items: stretch; flex-direction: column; }
  .woocommerce-ordering select, .woocommerce .orderby { width: 100%; }
  .woocommerce ul.products, .woocommerce-page ul.products { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .prod-card__body { padding: 14px 12px 16px; }
}


/* ---------- WooCommerce single product ---------- */
.single-product-shell { background: var(--cream); padding-top: 76px; }
.product-detail-section { padding-top: clamp(48px, 7vw, 96px); }
.product-detail {
  display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(320px, .95fr);
  gap: clamp(32px, 6vw, 78px); align-items: start;
}
.product-detail__gallery {
  position: relative; background: var(--ivory); border-radius: 6px; overflow: hidden;
  box-shadow: var(--shadow-md);
}

/* Product gallery alignment: keep zoom trigger floating over the image, not in document flow. */
.product-detail__gallery .woocommerce-product-gallery { position: relative; margin: 0; }
.woocommerce div.product div.images .woocommerce-product-gallery__wrapper { margin: 0; display: block; }
.woocommerce div.product div.images .flex-viewport { margin: 0; display: block; }
.woocommerce div.product div.images .woocommerce-product-gallery__trigger {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 5;
  width: 38px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: rgba(255,255,255,.86);
  color: var(--brown);
  box-shadow: var(--shadow-sm);
  text-indent: -9999px;
  overflow: hidden;
}
.woocommerce div.product div.images .woocommerce-product-gallery__trigger::before {
  content: "";
  width: 14px;
  height: 14px;
  border: 2px solid currentColor;
  border-radius: 50%;
  position: absolute;
  left: 10px;
  top: 9px;
}
.woocommerce div.product div.images .woocommerce-product-gallery__trigger::after {
  content: "";
  width: 8px;
  height: 2px;
  background: currentColor;
  transform: rotate(45deg);
  position: absolute;
  left: 22px;
  top: 23px;
}

.woocommerce div.product div.images { width: 100%; float: none; margin: 0; }
.woocommerce div.product div.images img { width: 100%; height: auto; object-fit: cover; }
.woocommerce div.product div.images .flex-control-thumbs { display: grid; grid-template-columns: repeat(4, 1fr); gap: 8px; padding: 10px; background: var(--white); }
.woocommerce div.product div.images .flex-control-thumbs li { width: auto; float: none; }
.product-detail__summary {
  background: rgba(255,255,255,.72); border: 1px solid var(--line-soft); border-radius: 18px;
  box-shadow: var(--shadow-sm); padding: clamp(26px, 4vw, 46px); backdrop-filter: blur(10px);
}
.woocommerce div.product .product_title, .product-detail__summary .product_title {
  font-family: var(--serif); color: var(--brown); font-size: clamp(1.9rem, 4vw, 3rem);
  line-height: 1.25; letter-spacing: .06em; margin: 0 0 16px;
}
.product-detail__price .price, .woocommerce div.product p.price, .woocommerce div.product span.price {
  color: var(--red); font-family: var(--serif); font-size: clamp(1.25rem, 2.5vw, 1.75rem); margin: 0 0 18px;
}
.product-detail__excerpt { color: var(--text-muted); font-size: 1rem; margin-bottom: 26px; }
.product-detail__cart form.cart { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; margin: 0 0 24px; }
.woocommerce .quantity .qty {
  width: 84px; border: 1px solid var(--line); border-radius: 999px; padding: .72em .7em;
  background: var(--white); color: var(--brown); font-family: var(--sans); text-align: center;
}
.product-detail__cart .single_add_to_cart_button {
  min-height: 46px; padding-inline: 2rem !important;
}
.product-detail__meta, .woocommerce div.product .product_meta {
  display: grid; gap: 6px; color: var(--text-muted); font-size: .88rem; border-top: 1px solid var(--line-soft); padding-top: 18px;
}
.product-detail__meta a { color: var(--brown); text-decoration: underline; text-decoration-color: var(--gold-soft); text-underline-offset: 3px; }
.product-detail__safe-note {
  margin-top: 26px; padding: 18px 20px; border-radius: 14px; background: var(--ivory); border: 1px solid var(--line-soft);
}
.product-detail__safe-note h3 { font-size: 1rem; margin-bottom: 6px; }
.product-detail__safe-note p { color: var(--text-muted); font-size: .92rem; margin: 0; }
.product-detail__tabs, .product-detail__related { margin-top: clamp(54px, 7vw, 96px); }
.woocommerce div.product .woocommerce-tabs ul.tabs {
  display: flex; gap: 10px; padding: 0; margin: 0 0 24px; border-bottom: 1px solid var(--line);
}
.woocommerce div.product .woocommerce-tabs ul.tabs::before { display: none; }
.woocommerce div.product .woocommerce-tabs ul.tabs li {
  border: 0; background: transparent; border-radius: 999px 999px 0 0; padding: 0; margin: 0;
}
.woocommerce div.product .woocommerce-tabs ul.tabs li::before,
.woocommerce div.product .woocommerce-tabs ul.tabs li::after { display: none; }
.woocommerce div.product .woocommerce-tabs ul.tabs li a {
  padding: .8em 1.25em; color: var(--text-muted); font-weight: 500;
}
.woocommerce div.product .woocommerce-tabs ul.tabs li.active a { color: var(--red); }
.woocommerce div.product .woocommerce-tabs .panel {
  background: var(--white); border: 1px solid var(--line-soft); border-radius: 14px; padding: clamp(22px, 3vw, 34px);
  box-shadow: var(--shadow-sm); color: var(--text);
}
.related.products > h2, .upsells.products > h2 {
  font-family: var(--serif); color: var(--brown); font-size: clamp(1.6rem, 3vw, 2.2rem); margin-bottom: 28px; text-align: center;
}
@media (max-width: 860px) {
  .product-detail { grid-template-columns: 1fr; }
  .single-product-shell { padding-top: 66px; }
  .product-detail__summary { padding: 24px 20px; }
  .product-detail__cart form.cart { align-items: stretch; }
  .product-detail__cart .single_add_to_cart_button { flex: 1; }
}


/* ---------- WooCommerce cart and checkout ---------- */
.cart-shell, .checkout-shell { padding-top: clamp(88px, 9vw, 132px); }
.cart-layout, .checkout-layout { margin-top: 10px; }
.cart-table-wrap, .checkout-card, .cart-summary .cart-collaterals {
  background: rgba(255,255,255,.78); border: 1px solid var(--line-soft); border-radius: 18px;
  box-shadow: var(--shadow-sm); overflow: hidden;
}
.cart-table, .woocommerce table.shop_table { border: 0; margin: 0; border-collapse: collapse; color: var(--text); }
.woocommerce table.shop_table th {
  font-family: var(--sans); font-size: .78rem; letter-spacing: .16em; text-transform: uppercase;
  color: var(--brown); font-weight: 600; background: var(--ivory); padding: 16px 14px;
}
.woocommerce table.shop_table td { border-top: 1px solid var(--line-soft); padding: 16px 14px; vertical-align: middle; }
.woocommerce table.shop_table .product-thumbnail img { width: 86px; border-radius: 8px; }
.woocommerce table.shop_table .product-name a { font-family: var(--serif); color: var(--brown); font-weight: 500; }
.woocommerce a.remove { color: var(--red) !important; font-size: 1.4rem; line-height: 1; }
.woocommerce a.remove:hover { background: var(--red); color: var(--ivory) !important; }
.woocommerce-cart-form .actions { background: var(--cream); }
.woocommerce-cart-form .coupon { display: inline-flex; gap: 10px; flex-wrap: wrap; align-items: center; }
.woocommerce-cart-form .coupon .input-text,
.woocommerce form .form-row input.input-text,
.woocommerce form .form-row textarea,
.woocommerce form .form-row select,
.select2-container--default .select2-selection--single {
  border: 1px solid var(--line); border-radius: 12px; background: var(--white); color: var(--text);
  font-family: var(--sans); padding: .86em 1em; min-height: 46px;
}
.woocommerce form .form-row label { color: var(--brown); font-weight: 500; font-size: .9rem; margin-bottom: 5px; }
.woocommerce form .form-row .required { color: var(--red); }
.cart-summary { margin-top: 32px; display: flex; justify-content: flex-end; }
.cart-summary .cart-collaterals { width: min(100%, 460px); padding: clamp(22px, 3vw, 32px); }
.woocommerce .cart_totals h2, .checkout-card h3, #order_review_heading {
  font-family: var(--serif); color: var(--brown); font-size: clamp(1.25rem, 2.4vw, 1.65rem); margin: 0 0 18px;
}
.woocommerce .cart_totals table.shop_table { width: 100%; }
.woocommerce .wc-proceed-to-checkout { padding: 1em 0 0; }
.woocommerce .wc-proceed-to-checkout a.checkout-button {
  width: 100%; margin: 0; text-align: center; justify-content: center; font-size: .92rem;
}
.checkout-layout { display: grid; grid-template-columns: minmax(0, 1fr) minmax(330px, 440px); gap: clamp(24px, 4vw, 46px); align-items: start; }
.checkout-card { padding: clamp(22px, 3vw, 34px); }
.checkout-review { min-width: 0; }
.checkout-customer { min-width: 0; }

.checkout-card__section + .checkout-card__section { margin-top: 28px; padding-top: 28px; border-top: 1px solid var(--line-soft); }
.checkout-card--sticky { position: sticky; top: 96px; }
.woocommerce-checkout-review-order table.shop_table { width: 100%; }
.woocommerce-checkout-payment, #payment {
  background: var(--ivory) !important; border-radius: 14px; border: 1px solid var(--line-soft); margin-top: 22px;
}
.woocommerce-checkout-payment ul.payment_methods, #payment ul.payment_methods { border-bottom: 1px solid var(--line-soft) !important; padding: 18px !important; }
.woocommerce-checkout-payment div.form-row, #payment div.form-row { padding: 18px !important; }
.woocommerce-terms-and-conditions-wrapper { color: var(--text-muted); font-size: .88rem; }
.woocommerce form.checkout_coupon, .woocommerce form.login, .woocommerce form.register {
  border: 1px solid var(--line-soft); border-radius: 14px; background: var(--white); box-shadow: var(--shadow-sm);
}
@media (max-width: 900px) {
  .checkout-layout { grid-template-columns: 1fr; }
  .checkout-card--sticky { position: static; }
  .cart-summary { justify-content: stretch; }
  .cart-summary .cart-collaterals { width: 100%; }
}
@media (max-width: 680px) {
  .woocommerce table.shop_table_responsive tr { display: block; margin-bottom: 14px; background: var(--white); border: 1px solid var(--line-soft); border-radius: 14px; overflow: hidden; }
  .woocommerce table.shop_table_responsive tr td { display: flex; justify-content: space-between; align-items: center; border-top: 1px solid var(--line-soft); }
  .woocommerce table.shop_table_responsive tr td::before { color: var(--brown); font-weight: 600; }
  .woocommerce table.shop_table_responsive thead { display: none; }
  .woocommerce table.shop_table .product-thumbnail img { width: 72px; }
  .woocommerce-cart-form .coupon, .woocommerce-cart-form .coupon .input-text, .woocommerce-cart-form .actions .button { width: 100%; }
}


/* Defensive WooCommerce gallery fix for default and overridden single-product templates. */
.single-product div.product div.images,
.single-product .woocommerce-product-gallery {
  position: relative !important;
  margin-top: 0 !important;
  padding-top: 0 !important;
}
.single-product div.product div.images .woocommerce-product-gallery__trigger,
.single-product .woocommerce-product-gallery__trigger {
  position: absolute !important;
  top: 14px !important;
  left: 14px !important;
  right: auto !important;
  z-index: 20 !important;
  margin: 0 !important;
  transform: none !important;
}
.single-product div.product div.images .woocommerce-product-gallery__wrapper,
.single-product div.product div.images .flex-viewport {
  margin-top: 0 !important;
  padding-top: 0 !important;
}


/* ---------- Brand page custom inquiry contact methods ---------- */
.inquiry--contact { background: var(--ivory); }
.inquiry-contact {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(360px, 1.1fr);
  gap: clamp(34px, 6vw, 88px);
  align-items: center;
}
.inquiry-contact__copy p:not(.eyebrow) {
  max-width: 46ch;
  color: var(--text-muted);
  margin: 0 0 1.6rem;
}
.inquiry-contact__actions { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; }
.contact-methods {
  display: grid;
  gap: 18px;
  padding: clamp(20px, 3vw, 30px);
  border: 1px solid rgba(93,70,60,.08);
  border-radius: 28px;
  background:
    radial-gradient(circle at 88% 10%, rgba(200,169,126,.18), transparent 34%),
    rgba(255,255,255,.66);
  box-shadow: 0 22px 60px rgba(93,70,60,.10);
  backdrop-filter: blur(10px);
}
.contact-method {
  display: grid;
  grid-template-columns: 82px minmax(0, 1fr);
  gap: clamp(16px, 2.5vw, 24px);
  align-items: center;
  padding: clamp(18px, 2.6vw, 26px);
  min-height: 150px;
  border: 1px solid var(--line-soft);
  border-radius: 22px;
  background: rgba(255,255,255,.92);
  color: inherit;
  box-shadow: 0 10px 28px rgba(93,70,60,.06);
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), border-color .35s var(--ease);
}
.contact-method:hover {
  transform: translateY(-4px);
  border-color: rgba(182,58,43,.22);
  box-shadow: 0 18px 42px rgba(93,70,60,.12);
}
.contact-method__logo {
  width: 74px;
  height: 74px;
  border-radius: 22px;
  display: grid;
  place-items: center;
  background: var(--cream);
  box-shadow: inset 0 0 0 1px rgba(93,70,60,.06);
}
.contact-method__logo img { width: 58px; height: 58px; object-fit: contain; }
.contact-method__body { display: grid; gap: 3px; min-width: 0; }
.contact-method__label {
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold);
}
.contact-method__title {
  font-family: var(--serif);
  font-size: clamp(1.18rem, 2vw, 1.45rem);
  color: var(--brown);
  letter-spacing: .06em;
  line-height: 1.35;
}
.contact-method__value {
  color: var(--red);
  font-weight: 500;
  overflow-wrap: anywhere;
}
.contact-method__note {
  color: var(--text-muted);
  font-size: .9rem;
  line-height: 1.65;
}
@media (max-width: 900px) {
  .inquiry-contact { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
  .inquiry-contact__actions { align-items: stretch; }
  .inquiry-contact__actions .btn { width: 100%; justify-content: center; }
  .contact-methods { padding: 14px; border-radius: 22px; }
  .contact-method { grid-template-columns: 1fr; text-align: center; justify-items: center; }
}


/* Product card CTA layout fix: keep Add to Cart horizontal and readable. */
.prod-card { display: flex; flex-direction: column; height: 100%; cursor: default; }
.prod-card__img { flex: none; }
.prod-card__body { display: flex; flex-direction: column; flex: 1; min-width: 0; }
.prod-card__name { min-height: 2.8em; }
.prod-card__price { margin-top: 4px; }
.prod-card__action { margin-top: auto; padding-top: 16px; }
.woocommerce ul.products li.product .prod-card__action .button,
.woocommerce-page ul.products li.product .prod-card__action .button,
.woocommerce .prod-card__action .button {
  width: 100%;
  min-width: 0;
  max-width: 100%;
  min-height: 44px;
  white-space: nowrap;
  writing-mode: horizontal-tb;
  text-orientation: mixed;
  word-break: keep-all;
  line-break: strict;
  padding: .86em 1em;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.woocommerce ul.products li.product .button.added::after,
.woocommerce .prod-card__action .button.added::after {
  margin-left: .45em;
}
.woocommerce ul.products li.product .added_to_cart {
  display: inline-flex;
  justify-content: center;
  width: 100%;
  margin-top: 8px;
  color: var(--brown);
  font-size: .82rem;
  text-decoration: underline;
  text-underline-offset: 3px;
}


/* ---------- Shop gallery filter layout ---------- */
.filterbar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 6px;
  width: fit-content;
  max-width: calc(100vw - 32px);
  margin: -34px auto 42px;
  padding: 8px 10px;
  background: rgba(255,255,255,.88);
  border: 1px solid var(--line-soft);
  border-radius: 999px;
  box-shadow: var(--shadow-sm);
  backdrop-filter: blur(14px);
  position: relative;
  z-index: 5;
}
.fb-trigger {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
  padding: .58em 1em;
  border-radius: 999px;
  color: var(--brown);
  font-size: .86rem;
  transition: background .25s var(--ease), color .25s var(--ease);
}
.fb-trigger:hover { background: var(--ivory); color: var(--red); }

.fb-group { position: relative; }
.fb-menu {
  position: absolute;
  top: calc(100% + 9px);
  left: 50%;
  transform: translateX(-50%) translateY(-6px);
  min-width: 178px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 12px;
  box-shadow: var(--shadow-md);
  padding: 7px;
  z-index: 10;
  display: flex;
  flex-direction: column;
  gap: 2px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .25s var(--ease), transform .25s var(--ease), visibility .25s;
}
.fb-group:hover .fb-menu,
.fb-group:focus-within .fb-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}
.fb-opt {
  display: block;
  padding: .58em .85em;
  border-radius: 8px;
  color: var(--brown);
  font-size: .86rem;
  white-space: nowrap;
  text-align: left;
}
.fb-opt:hover { background: var(--cream); color: var(--red); }

.fb-dot {
  display: inline-block;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 1px solid rgba(93,70,60,.26);
  flex: none;
  margin-right: 8px;
  vertical-align: -1px;
}
.fb-dot[data-color-slug="metal"],
.fb-dot[data-color-slug="white"] {
  border: 1px solid rgba(93,70,60,.38);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.75);
}
.fb-opt { display: flex; align-items: center; gap: 0; }

.fb-opt.is-active { background: var(--ivory); color: var(--red); font-weight: 600; }
.fb-trigger.is-set { background: var(--red); color: var(--ivory); }

.fb-clear {
  display: inline-flex;
  align-items: center;
  padding: .58em .85em;
  color: var(--red);
  font-size: .84rem;
  white-space: nowrap;
}
.catalog-hint {
  text-align: center;
  color: var(--text-muted);
  font-size: .92rem;
  margin: 0 auto 34px;
  max-width: 760px;
}
.catalog-hint .em {
  display: block;
  font-family: var(--script);
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  color: var(--gold);
  line-height: 1;
  margin-bottom: 8px;
}
.prod-card__link {
  display: flex;
  flex-direction: column;
  height: 100%;
  color: inherit;
  text-decoration: none;
}
.prod-card__link:hover .prod-card__name { color: var(--red); }
.woocommerce ul.products li.product .prod-card__link .prod-card__img,
.woocommerce-page ul.products li.product .prod-card__link .prod-card__img {
  display: block;
}
@media (max-width: 680px) {
  .filterbar { margin-top: -22px; border-radius: 18px; justify-content: flex-start; }
  .fb-trigger, .fb-clear { font-size: .82rem; padding: .5em .72em; }
}


/* ---------- Shop screenshot-match overrides: Browse & Filter gallery ---------- */
.shop-section--filter-gallery {
  min-height: 100vh;
  padding-top: clamp(84px, 7vw, 112px);
  padding-bottom: clamp(72px, 8vw, 118px);
  background: var(--cream);
}
.shop-section--filter-gallery > .container {
  max-width: 1360px;
}
.shop-section--filter-gallery .filterbar {
  position: sticky;
  top: 14px;
  margin: 0 auto clamp(28px, 3.2vw, 42px);
  padding: 8px 12px;
  background: rgba(255, 255, 255, .94);
  border: 1px solid rgba(93, 70, 60, .08);
  box-shadow: 0 10px 30px rgba(93, 70, 60, .07);
  z-index: 60;
}
.shop-section--filter-gallery .catalog-hint {
  margin-bottom: clamp(34px, 4vw, 54px);
}
.shop-section--filter-gallery .catalog-hint .em {
  font-size: clamp(2.15rem, 3.2vw, 3rem);
}
.shop-section--filter-gallery .catalog-hint p {
  margin: 0 auto;
  max-width: 760px;
}
.woocommerce .shop-section--filter-gallery ul.products,
.woocommerce-page .shop-section--filter-gallery ul.products {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(18px, 2vw, 28px);
  align-items: stretch;
}
.woocommerce .shop-section--filter-gallery ul.products li.product,
.woocommerce-page .shop-section--filter-gallery ul.products li.product {
  width: auto !important;
  margin: 0 !important;
  float: none !important;
}
.shop-section--filter-gallery .prod-card {
  background: var(--white);
  border: 0;
  border-radius: 4px;
  box-shadow: 0 8px 28px rgba(93, 70, 60, .07);
  overflow: hidden;
}
.shop-section--filter-gallery .prod-card__img {
  aspect-ratio: 4 / 5;
  background: var(--ivory);
}
.shop-section--filter-gallery .prod-card__img img,
.woocommerce .shop-section--filter-gallery ul.products li.product a img {
  width: 100%;
  height: 100%;
  margin: 0;
  object-fit: cover;
}
.shop-section--filter-gallery .prod-card__body {
  padding: 18px 20px 22px;
  background: var(--white);
}
.shop-section--filter-gallery .prod-card__series,
.shop-section--filter-gallery .prod-card__series a {
  color: var(--gold);
  font-size: .72rem;
  font-weight: 500;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.shop-section--filter-gallery .prod-card__name {
  display: block;
  min-height: 0;
  margin: 4px 0 3px;
  color: var(--brown);
  font-size: clamp(1.03rem, 1.2vw, 1.18rem);
  letter-spacing: .06em;
  line-height: 1.45;
}
.shop-section--filter-gallery .prod-card__craft-note {
  display: block;
  color: var(--text-muted);
  font-size: .86rem;
  line-height: 1.6;
}
.shop-section--filter-gallery .prod-card__price {
  display: none !important;
}
@media (max-width: 1100px) {
  .woocommerce .shop-section--filter-gallery ul.products,
  .woocommerce-page .shop-section--filter-gallery ul.products { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}
@media (max-width: 780px) {
  .shop-section--filter-gallery { padding-top: 76px; }
  .shop-section--filter-gallery .filterbar {
    position: relative;
    top: auto;
    width: 100%;
    max-width: 100%;
    justify-content: center;
    border-radius: 22px;
  }
  .woocommerce .shop-section--filter-gallery ul.products,
  .woocommerce-page .shop-section--filter-gallery ul.products { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 480px) {
  .woocommerce .shop-section--filter-gallery ul.products,
  .woocommerce-page .shop-section--filter-gallery ul.products { grid-template-columns: 1fr; }
}
