/** Shopify CDN: Minification failed

Line 22:7 Expected identifier but found whitespace
Line 22:9 Unexpected "{"
Line 22:19 Expected ":"
Line 23:12 Expected identifier but found whitespace
Line 23:14 Unexpected "{"
Line 23:24 Expected ":"
Line 24:14 Expected identifier but found whitespace
Line 24:16 Unexpected "{"
Line 24:26 Expected ":"
Line 25:9 Expected identifier but found whitespace
... and 11 more hidden warnings

**/
/* ============================================================
   ZORASKIN THEME — STYLES
   Premium beauty aesthetic · Cormorant Garamond + DM Sans
   ============================================================ */

:root {
  --bg: {{ settings.color_background | default: '#faf6f0' }};
  --surface: {{ settings.color_surface | default: '#ffffff' }};
  --surface-2: {{ settings.color_surface_alt | default: '#f5f0e8' }};
  --text: {{ settings.color_text | default: '#1a1410' }};
  --text-muted: {{ settings.color_muted | default: '#8a7d72' }};
  --text-muted-2: #5a4f47;
  --border: rgba(0,0,0,0.08);
  --border-strong: rgba(0,0,0,0.16);
  --accent: {{ settings.color_accent | default: '#c9956a' }};
  --accent-dark: #8b5e3c;
  --sage: {{ settings.color_sage | default: '#3d7a5c' }};
  --gold: #d4a853;
  --error: #c0392b;
  --shadow-sm: 0 2px 8px rgba(26,20,16,0.04);
  --shadow-md: 0 8px 30px rgba(26,20,16,0.08);
  --shadow-lg: 0 20px 60px rgba(26,20,16,0.12);
  --radius: 4px;
  --radius-md: 8px;
  --radius-lg: 14px;
  --container: 1280px;
  --header-h: 80px;
  --font-display: 'Cormorant Garamond', 'Playfair Display', Georgia, serif;
  --font-body: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
}

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

html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  font-size: 15px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img, svg, video { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; transition: color .2s ease, opacity .2s ease; }
a:hover { color: var(--accent); }
button { font-family: inherit; cursor: pointer; border: 0; background: none; }
input, textarea, select { font-family: inherit; font-size: inherit; }

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: -0.005em;
  color: var(--text);
}
h1 { font-size: clamp(2.5rem, 6vw, 4.75rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: clamp(1.5rem, 2.5vw, 2rem); }
h4 { font-size: 1.25rem; }
p { margin: 0 0 1rem; }
.eyebrow {
  font-family: var(--font-body);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent-dark);
  font-weight: 500;
  display: inline-block;
}

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 clamp(1rem, 4vw, 2.5rem);
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.95rem 2rem;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: var(--radius);
  transition: all .25s cubic-bezier(.4,0,.2,1);
  cursor: pointer;
  border: 1px solid transparent;
  white-space: nowrap;
  line-height: 1;
}
.btn-primary {
  background: var(--text);
  color: #fff;
  border-color: var(--text);
}
.btn-primary:hover {
  background: var(--accent-dark);
  border-color: var(--accent-dark);
  color: #fff;
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}
.btn-accent {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
}
.btn-accent:hover {
  background: var(--accent-dark);
  border-color: var(--accent-dark);
  color: #fff;
  transform: translateY(-1px);
}
.btn-outline {
  background: transparent;
  color: var(--text);
  border-color: var(--border-strong);
}
.btn-outline:hover {
  background: var(--text);
  color: #fff;
  border-color: var(--text);
}
.btn-link {
  padding: 0;
  background: none;
  color: var(--text);
  border-bottom: 1px solid currentColor;
  border-radius: 0;
  text-transform: none;
  letter-spacing: 0.02em;
  font-size: 14px;
}
.btn-link:hover { color: var(--accent); }
.btn-block { width: 100%; }
.btn[disabled], .btn:disabled { opacity: .5; cursor: not-allowed; transform: none; }

/* ============================================================
   ANNOUNCEMENT BAR + HEADER
   ============================================================ */
.announcement {
  background: var(--text);
  color: #fff;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.6rem 0;
  text-align: center;
  font-weight: 400;
}
.announcement a { color: var(--gold); border-bottom: 1px solid currentColor; }

.site-header {
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.site-header .container {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  height: var(--header-h);
  gap: 2rem;
}
.site-logo {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 500;
  letter-spacing: 0.32em;
  color: var(--text);
  grid-column: 2;
  text-align: center;
}
.site-logo:hover { color: var(--accent-dark); }

.site-nav {
  display: flex;
  gap: 2.25rem;
  list-style: none;
}
.site-nav a {
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text);
  font-weight: 500;
  position: relative;
  padding: 0.5rem 0;
}
.site-nav a::after {
  content: '';
  position: absolute;
  left: 0; right: 0;
  bottom: 0;
  height: 1px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .3s ease;
}
.site-nav a:hover::after { transform: scaleX(1); transform-origin: left; }

.header-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 1.25rem;
  grid-column: 3;
}
.header-actions button, .header-actions a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px; height: 36px;
  border-radius: 50%;
  position: relative;
  color: var(--text);
}
.header-actions button:hover, .header-actions a:hover {
  background: var(--surface-2);
}
.cart-count {
  position: absolute;
  top: -2px; right: -2px;
  min-width: 18px; height: 18px;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  font-size: 10px;
  font-weight: 600;
  display: flex; align-items: center; justify-content: center;
  padding: 0 4px;
}
.cart-count[data-empty="true"] { display: none; }

.menu-toggle { display: none; }

@media (max-width: 880px) {
  :root { --header-h: 64px; }
  .site-header .container { grid-template-columns: auto auto auto; }
  .site-nav { display: none; }
  .menu-toggle { display: inline-flex; }
  .site-logo { font-size: 22px; letter-spacing: 0.22em; }
  .header-actions { gap: 0.5rem; }
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: clamp(520px, 80vh, 760px);
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--surface-2);
}
.hero-image {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-image img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.hero-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, rgba(26,20,16,0.55) 0%, rgba(26,20,16,0.15) 50%, rgba(26,20,16,0) 75%);
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 640px;
  padding: 4rem 0;
  color: #fff;
}
.hero[data-text="dark"] .hero-content { color: var(--text); }
.hero-eyebrow {
  font-size: 12px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
  display: inline-block;
  opacity: 0.9;
  font-weight: 400;
}
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.75rem, 6.5vw, 5.5rem);
  font-weight: 300;
  line-height: 1.05;
  letter-spacing: -0.01em;
  margin-bottom: 1.5rem;
  color: inherit;
}
.hero-title em {
  font-style: italic;
  color: var(--gold);
}
.hero-text {
  font-size: clamp(1rem, 1.5vw, 1.125rem);
  line-height: 1.65;
  margin-bottom: 2rem;
  max-width: 480px;
  opacity: 0.92;
}
.hero-actions {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}
.hero[data-text="light"] .btn-outline { color: #fff; border-color: rgba(255,255,255,0.5); }
.hero[data-text="light"] .btn-outline:hover { background: #fff; color: var(--text); border-color: #fff; }

/* ============================================================
   TRUST BAR
   ============================================================ */
.trust-bar {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 2rem 0;
}
.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}
.trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.5rem;
}
.trust-icon {
  width: 36px; height: 36px;
  color: var(--accent-dark);
  margin-bottom: 0.25rem;
}
.trust-title {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--text);
}
.trust-text {
  font-size: 12px;
  color: var(--text-muted);
  letter-spacing: 0.02em;
  line-height: 1.5;
}
@media (max-width: 760px) {
  .trust-grid { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
}

/* ============================================================
   SECTION HEADER
   ============================================================ */
.section { padding: clamp(3.5rem, 8vw, 6rem) 0; }
.section-header {
  text-align: center;
  margin-bottom: clamp(2rem, 5vw, 3.5rem);
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}
.section-header .eyebrow { margin-bottom: 1rem; }
.section-header h2 {
  font-weight: 300;
  margin-bottom: 1rem;
}
.section-header h2 em { font-style: italic; color: var(--accent-dark); }
.section-header p {
  font-size: 1.05rem;
  color: var(--text-muted-2);
  max-width: 580px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ============================================================
   PRODUCT GRID + CARD
   ============================================================ */
.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(1.5rem, 2.5vw, 2.25rem) clamp(1rem, 2vw, 1.75rem);
}
@media (max-width: 1024px) { .product-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 760px)  { .product-grid { grid-template-columns: repeat(2, 1fr); gap: 1.5rem 1rem; } }
@media (max-width: 460px)  { .product-grid { grid-template-columns: repeat(2, 1fr); } }

.product-card {
  display: flex;
  flex-direction: column;
  position: relative;
  transition: transform .35s ease;
}
.product-card:hover { transform: translateY(-4px); }

.product-card-media {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: var(--surface-2);
  border-radius: var(--radius-md);
  margin-bottom: 1rem;
}
.product-card-media img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .8s ease, opacity .35s ease;
}
.product-card:hover .product-card-media img { transform: scale(1.06); }
.product-card-media .img-secondary {
  position: absolute; inset: 0;
  opacity: 0;
}
.product-card:hover .img-secondary { opacity: 1; }

.product-card-badge {
  position: absolute;
  top: 0.85rem; left: 0.85rem;
  background: var(--accent);
  color: #fff;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.35rem 0.65rem;
  border-radius: var(--radius);
  z-index: 2;
}
.product-card-badge.sale { background: var(--error); }
.product-card-badge.new { background: var(--sage); }
.product-card-quickadd {
  position: absolute;
  left: 1rem; right: 1rem; bottom: 1rem;
  background: var(--text);
  color: #fff;
  padding: 0.75rem 1rem;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 500;
  border-radius: var(--radius);
  opacity: 0;
  transform: translateY(8px);
  transition: all .3s ease;
  text-align: center;
}
.product-card:hover .product-card-quickadd {
  opacity: 1;
  transform: translateY(0);
}
.product-card-quickadd:hover { background: var(--accent-dark); color: #fff; }
@media (max-width: 760px) { .product-card-quickadd { display: none; } }

.product-card-vendor {
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.35rem;
}
.product-card-title {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 500;
  line-height: 1.3;
  margin-bottom: 0.4rem;
  color: var(--text);
}
.product-card-title a:hover { color: var(--accent-dark); }
.product-card-rating {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  font-size: 11px;
  color: var(--text-muted);
  margin-bottom: 0.4rem;
}
.product-card-rating .stars { color: var(--gold); letter-spacing: 1px; }

.price {
  display: flex;
  align-items: baseline;
  gap: 0.6rem;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text);
  font-feature-settings: "tnum";
}
.price-compare {
  text-decoration: line-through;
  color: var(--text-muted);
  font-weight: 400;
  font-size: 0.85rem;
}
.price-sale { color: var(--error); }

/* ============================================================
   IMAGE WITH TEXT
   ============================================================ */
.image-with-text {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 6vw, 5rem);
  align-items: center;
}
.image-with-text[data-flip="true"] .iwt-image { order: 2; }
.iwt-image {
  aspect-ratio: 4 / 5;
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
}
.iwt-image img { width: 100%; height: 100%; object-fit: cover; }
.iwt-content .eyebrow { margin-bottom: 1rem; }
.iwt-content h2 { margin-bottom: 1.25rem; font-weight: 300; }
.iwt-content h2 em { font-style: italic; color: var(--accent-dark); }
.iwt-content p { color: var(--text-muted-2); margin-bottom: 1.5rem; line-height: 1.75; font-size: 1.025rem; }

@media (max-width: 760px) {
  .image-with-text { grid-template-columns: 1fr; gap: 2rem; }
  .image-with-text[data-flip="true"] .iwt-image { order: 0; }
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials { background: var(--surface-2); }
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.testimonial {
  background: var(--surface);
  padding: 2rem 1.75rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  position: relative;
}
.testimonial-stars {
  color: var(--gold);
  letter-spacing: 2px;
  margin-bottom: 1rem;
  font-size: 14px;
}
.testimonial-text {
  font-family: var(--font-display);
  font-size: 1.15rem;
  line-height: 1.55;
  color: var(--text);
  margin-bottom: 1.5rem;
  font-style: italic;
  font-weight: 400;
}
.testimonial-author {
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted-2);
  font-weight: 500;
}
.testimonial-product {
  display: block;
  font-family: var(--font-body);
  font-size: 11px;
  letter-spacing: 0.08em;
  color: var(--accent-dark);
  margin-top: 0.25rem;
  text-transform: none;
}
@media (max-width: 880px) { .testimonial-grid { grid-template-columns: 1fr; } }

/* ============================================================
   COLLECTION TILES (categories)
   ============================================================ */
.collection-tiles {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
.collection-tile {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: block;
}
.collection-tile img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .8s ease;
}
.collection-tile:hover img { transform: scale(1.05); }
.collection-tile::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0) 40%, rgba(26,20,16,0.7) 100%);
}
.collection-tile-text {
  position: absolute;
  left: 1.5rem; bottom: 1.5rem;
  z-index: 2;
  color: #fff;
}
.collection-tile-text h3 {
  font-family: var(--font-display);
  font-size: 1.65rem;
  font-weight: 400;
  color: #fff;
  margin-bottom: 0.4rem;
}
.collection-tile-text span {
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  border-bottom: 1px solid currentColor;
  padding-bottom: 2px;
}
@media (max-width: 760px) { .collection-tiles { grid-template-columns: 1fr 1fr; } }

/* ============================================================
   NEWSLETTER
   ============================================================ */
.newsletter {
  background: var(--text);
  color: #fff;
  padding: clamp(3rem, 7vw, 5rem) 0;
  text-align: center;
}
.newsletter h2 { color: #fff; font-weight: 300; margin-bottom: 0.75rem; }
.newsletter h2 em { color: var(--gold); font-style: italic; }
.newsletter p { color: rgba(255,255,255,0.7); max-width: 480px; margin: 0 auto 2rem; }
.newsletter-form {
  display: flex;
  gap: 0.5rem;
  max-width: 480px;
  margin: 0 auto;
}
.newsletter-form input {
  flex: 1;
  padding: 1rem 1.25rem;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: var(--radius);
  color: #fff;
  font-size: 14px;
}
.newsletter-form input::placeholder { color: rgba(255,255,255,0.45); }
.newsletter-form input:focus { outline: none; border-color: var(--gold); }
.newsletter-form .btn { background: var(--gold); border-color: var(--gold); color: var(--text); }
.newsletter-form .btn:hover { background: #fff; border-color: #fff; }
@media (max-width: 600px) {
  .newsletter-form { flex-direction: column; }
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--surface-2);
  padding: 4rem 0 2rem;
  border-top: 1px solid var(--border);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 1fr);
  gap: 3rem;
  margin-bottom: 3rem;
}
.footer-brand-logo {
  font-family: var(--font-display);
  font-size: 24px;
  letter-spacing: 0.3em;
  color: var(--text);
  margin-bottom: 1rem;
  display: block;
}
.footer-brand p { color: var(--text-muted-2); font-size: 14px; line-height: 1.7; max-width: 320px; }
.footer-col h4 {
  font-family: var(--font-body);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 1rem;
}
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 0.6rem; }
.footer-col a {
  font-size: 14px;
  color: var(--text-muted-2);
}
.footer-col a:hover { color: var(--accent-dark); }
.footer-social {
  display: flex; gap: 0.75rem;
}
.footer-social a {
  display: inline-flex;
  align-items: center; justify-content: center;
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 1px solid var(--border-strong);
  color: var(--text);
  transition: all .2s ease;
}
.footer-social a:hover { background: var(--text); color: #fff; border-color: var(--text); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
  font-size: 12px;
  color: var(--text-muted);
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-payment { display: flex; gap: 0.5rem; flex-wrap: wrap; align-items: center; }
.footer-payment img { height: 22px; opacity: 0.6; }

@media (max-width: 880px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
}
@media (max-width: 540px) {
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

/* ============================================================
   PRODUCT PAGE
   ============================================================ */
.product {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: clamp(2rem, 5vw, 4.5rem);
  padding: clamp(2rem, 5vw, 4rem) 0;
}
.product-gallery { position: sticky; top: calc(var(--header-h) + 1rem); align-self: start; }
.product-gallery-main {
  aspect-ratio: 1 / 1;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--surface-2);
  margin-bottom: 0.75rem;
}
.product-gallery-main img { width: 100%; height: 100%; object-fit: cover; }
.product-gallery-thumbs {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0.5rem;
}
.product-gallery-thumbs button {
  aspect-ratio: 1 / 1;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--surface-2);
  padding: 0;
  cursor: pointer;
  transition: border-color .2s ease;
}
.product-gallery-thumbs button:hover,
.product-gallery-thumbs button.active { border-color: var(--accent); }
.product-gallery-thumbs img { width: 100%; height: 100%; object-fit: cover; }

.product-info .vendor {
  font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--accent-dark); font-weight: 500; margin-bottom: 0.75rem;
}
.product-info h1 {
  font-size: clamp(2rem, 4vw, 2.85rem);
  font-weight: 300;
  line-height: 1.15;
  margin-bottom: 1rem;
}
.product-rating-row {
  display: flex; align-items: center; gap: 0.5rem;
  margin-bottom: 1.25rem;
  font-size: 13px;
  color: var(--text-muted-2);
}
.product-rating-row .stars { color: var(--gold); letter-spacing: 2px; }
.product-info .price-row {
  display: flex; align-items: baseline; gap: 0.85rem;
  margin-bottom: 1.5rem;
}
.product-info .price-row .price-current { font-size: 1.85rem; font-weight: 500; color: var(--text); }
.product-info .price-row .price-compare { font-size: 1.15rem; }
.product-info .price-row .save-pill {
  display: inline-block;
  background: var(--error); color: #fff;
  font-size: 10px; font-weight: 600;
  letter-spacing: 0.12em; text-transform: uppercase;
  padding: 0.3rem 0.6rem;
  border-radius: var(--radius);
}
.product-description {
  font-size: 1rem;
  color: var(--text-muted-2);
  line-height: 1.75;
  margin-bottom: 1.75rem;
}
.product-description ul { padding-left: 1.25rem; margin: 1rem 0; }
.product-description li { margin-bottom: 0.5rem; }
.product-description strong, .product-description em { color: var(--text); }

.variant-group {
  margin-bottom: 1.5rem;
}
.variant-label {
  display: block;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted-2);
  margin-bottom: 0.6rem;
  font-weight: 500;
}
.variant-options {
  display: flex; flex-wrap: wrap; gap: 0.5rem;
}
.variant-options label {
  display: inline-flex;
  align-items: center; justify-content: center;
  min-width: 56px;
  padding: 0.65rem 1rem;
  border: 1px solid var(--border-strong);
  border-radius: var(--radius);
  cursor: pointer;
  font-size: 13px;
  font-weight: 500;
  background: var(--surface);
  transition: all .2s ease;
}
.variant-options input { display: none; }
.variant-options input:checked + span,
.variant-options label:has(input:checked) {
  background: var(--text);
  color: #fff;
  border-color: var(--text);
}

.product-form-actions {
  display: flex; gap: 0.75rem; margin-bottom: 1.5rem; align-items: stretch;
}
.qty-selector {
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--border-strong);
  border-radius: var(--radius);
  background: var(--surface);
}
.qty-selector button {
  width: 44px; height: 100%;
  font-size: 18px;
  color: var(--text);
}
.qty-selector input {
  width: 44px;
  text-align: center;
  border: 0;
  background: transparent;
  font-weight: 500;
  -moz-appearance: textfield;
}
.qty-selector input::-webkit-outer-spin-button,
.qty-selector input::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }

.product-meta {
  border-top: 1px solid var(--border);
  padding-top: 1.5rem;
  margin-top: 1.5rem;
  display: grid;
  gap: 0.85rem;
}
.product-meta-item {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  font-size: 13px;
  color: var(--text-muted-2);
}
.product-meta-item svg {
  width: 20px; height: 20px;
  color: var(--accent-dark);
  flex-shrink: 0;
  margin-top: 2px;
}
.product-meta-item strong { color: var(--text); display: block; font-size: 13px; }

@media (max-width: 880px) {
  .product { grid-template-columns: 1fr; }
  .product-gallery { position: static; }
}

/* ============================================================
   COLLECTION (CATEGORY) PAGE
   ============================================================ */
.collection-hero {
  text-align: center;
  padding: clamp(3rem, 6vw, 5rem) 0 clamp(2rem, 4vw, 3rem);
  border-bottom: 1px solid var(--border);
  margin-bottom: 3rem;
}
.collection-hero h1 { font-weight: 300; margin-bottom: 1rem; }
.collection-hero p { color: var(--text-muted-2); max-width: 580px; margin: 0 auto; }
.collection-toolbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 13px;
}
.collection-count { color: var(--text-muted); font-size: 13px; letter-spacing: 0.04em; }
.collection-sort select {
  padding: 0.6rem 1rem;
  border: 1px solid var(--border-strong);
  border-radius: var(--radius);
  background: var(--surface);
  font-size: 13px;
}

.empty-state {
  text-align: center;
  padding: 4rem 0;
  color: var(--text-muted);
}

/* ============================================================
   CART PAGE
   ============================================================ */
.cart-page { padding: 3rem 0; }
.cart-page h1 { margin-bottom: 2rem; font-weight: 300; }
.cart-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 3rem;
  align-items: start;
}
.cart-items { border-top: 1px solid var(--border); }
.cart-item {
  display: grid;
  grid-template-columns: 100px 1fr auto;
  gap: 1.25rem;
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--border);
  align-items: center;
}
.cart-item-img {
  aspect-ratio: 1 / 1;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--surface-2);
}
.cart-item-img img { width: 100%; height: 100%; object-fit: cover; }
.cart-item-title { font-family: var(--font-display); font-size: 1.1rem; margin-bottom: 0.25rem; }
.cart-item-options { font-size: 12px; color: var(--text-muted); margin-bottom: 0.6rem; }
.cart-item-meta { display: flex; justify-content: space-between; align-items: center; gap: 1rem; flex-wrap: wrap; }
.cart-item-remove {
  font-size: 12px;
  color: var(--text-muted);
  border-bottom: 1px solid currentColor;
}
.cart-item-remove:hover { color: var(--error); }
.cart-summary {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  position: sticky;
  top: calc(var(--header-h) + 1rem);
}
.cart-summary h3 { margin-bottom: 1rem; font-weight: 500; font-size: 1.25rem; }
.cart-summary-row {
  display: flex;
  justify-content: space-between;
  padding: 0.5rem 0;
  font-size: 14px;
}
.cart-summary-row.total {
  border-top: 1px solid var(--border);
  margin-top: 0.5rem;
  padding-top: 1rem;
  font-size: 1.05rem;
  font-weight: 500;
}

@media (max-width: 880px) {
  .cart-grid { grid-template-columns: 1fr; }
  .cart-summary { position: static; }
  .cart-item { grid-template-columns: 80px 1fr; }
  .cart-item > :nth-child(3) { grid-column: 1 / -1; text-align: right; }
}

/* ============================================================
   PAGE / SEARCH / 404
   ============================================================ */
.page-content {
  max-width: 760px;
  margin: 0 auto;
  padding: 4rem 0;
}
.page-content h1 { margin-bottom: 2rem; text-align: center; font-weight: 300; }
.page-content p { line-height: 1.8; color: var(--text-muted-2); margin-bottom: 1.25rem; }
.page-content h2, .page-content h3 { margin-top: 2rem; margin-bottom: 1rem; }

/* ============================================================
   FORMS / NOTICES
   ============================================================ */
.field {
  margin-bottom: 1rem;
  display: flex;
  flex-direction: column;
}
.field label {
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
  color: var(--text-muted-2);
  font-weight: 500;
}
.field input, .field textarea, .field select {
  padding: 0.85rem 1rem;
  border: 1px solid var(--border-strong);
  border-radius: var(--radius);
  background: var(--surface);
  font-size: 14px;
  color: var(--text);
  font-family: inherit;
}
.field input:focus, .field textarea:focus, .field select:focus {
  outline: none; border-color: var(--accent);
}
.notice {
  padding: 1rem 1.25rem;
  border-radius: var(--radius);
  margin-bottom: 1.5rem;
  font-size: 14px;
}
.notice-success { background: rgba(61,122,92,.08); color: var(--sage); border: 1px solid rgba(61,122,92,.2); }
.notice-error { background: rgba(192,57,43,.08); color: var(--error); border: 1px solid rgba(192,57,43,.2); }

/* ============================================================
   ANIMATIONS
   ============================================================ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: translateY(0); }
}
.reveal {
  opacity: 0;
  animation: fadeUp .8s ease forwards;
}
.reveal-1 { animation-delay: .05s; }
.reveal-2 { animation-delay: .15s; }
.reveal-3 { animation-delay: .25s; }
.reveal-4 { animation-delay: .35s; }

/* ============================================================
   UTILITIES
   ============================================================ */
.visually-hidden {
  position: absolute !important;
  width: 1px; height: 1px;
  margin: -1px; padding: 0;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}
.text-center { text-align: center; }
.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
