/** Shopify CDN: Minification failed

Line 31:0 All "@import" rules must come first

**/
/* ══════════════════════════════════════════════════
   product-dawn.css  —  Aurelio / Dawn luxury theme
   Upload to: assets/product-dawn.css
══════════════════════════════════════════════════ */

/* ── RESET & TOKENS ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --cream:      #F2EDE4;
  --cream-dark: #E8E1D5;
  --ink:        #1A1714;
  --ink-mid:    #3D3830;
  --ink-light:  #6B6560;
  --ink-faint:  #605046;
  --white:      #FDFAF5;
  --divider:    rgba(26, 23, 20, 0.12);
  --success:    #4caf50;
  --error:      #e53935;
  --font-head:  '"EB Garamond", serif';
  --font-body:  'Futura PT', sans-serif;
  --ease:       0.22s ease;
}

/* Google Fonts import */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;1,300;1,400&family=Jost:wght@300;400;500;600&display=swap');

body { background: var(--cream); color: var(--ink); font-family: var(--font-body); }

/* ── NAV ── */
.pd-nav {
  background: var(--white);
  border-bottom: 1px solid var(--divider);
  padding: 0 48px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: sticky;
  top: 0;
  z-index: 200;
}
.pd-nav__links {
  display: flex;
  gap: 32px;
  list-style: none;
}
.pd-nav__links a,
.pd-nav__right a {
  text-decoration: none;
  color: var(--ink-light);
  font-size: 11px;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  transition: color var(--ease);
}
.pd-nav__links a:hover,
.pd-nav__right a:hover { color: var(--ink); }
.pd-nav__logo {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-head);
  font-size: 22px;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink);
  text-decoration: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  line-height: 1.1;
}
.pd-nav__logo span {
  font-family: var(--font-body);
  font-size: 8px;
  letter-spacing: 0.35em;
  color: var(--ink-faint);
  text-align: center;
}
.pd-nav__right { display: flex; align-items: center; gap: 24px; }
.pd-nav__cart {
  display: flex;
  align-items: center;
  gap: 6px;
  text-decoration: none;
  color: var(--ink-light);
}
.pd-cart-count {
  background: var(--ink);
  color: var(--white);
  border-radius: 50%;
  width: 18px;
  height: 18px;
  font-size: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-body);
  transition: transform 0.2s;
}

/* ── BREADCRUMB ── */
.pd-breadcrumb {
  padding: 16px 0px;
  font-size: 10px;
  letter-spacing: 0.12em;
  color: var(--ink-faint);
  text-transform: uppercase;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 4px;
}
.pd-breadcrumb a { color: inherit; text-decoration: none; transition: color var(--ease); }
.pd-breadcrumb a:hover { color: var(--ink-light); }
.pd-breadcrumb span { color: var(--ink-faint); }

/* ── LAYOUT ── */
.pd-layout {
  display: grid;
  grid-template-columns: 1fr 480px;
  gap: 0;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 48px 96px;
  align-items: start;
}

/* ══════════════════════
   GALLERY
══════════════════════ */
.pd-gallery {
  position: sticky;
  top: 64px;
  display: grid;
  grid-template-columns: 84px 1fr;
  gap: 12px;
  padding-right: 48px;
}
.pd-thumbs {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.pd-thumb {
  width: 80px;
  height: 80px;
  background: var(--cream-dark);
  border: 1.5px solid transparent;
  cursor: pointer;
  overflow: hidden;
  transition: border-color var(--ease);
  padding: 0;
  flex-shrink: 0;
}
.pd-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.pd-thumb.active { border-color: var(--ink); }
.pd-thumb:hover:not(.active) { border-color: var(--ink-faint); }
.pd-thumb-count {
  font-size: 10px;
  letter-spacing: 0.1em;
  color: var(--ink-faint);
  text-align: center;
  padding-top: 8px;
}

.pd-main-img-wrap {
  position: relative;
  background: var(--cream-dark);
  aspect-ratio: 3/4;
  overflow: hidden;
}
.pd-main-img {
  width: 100%;
  height: 100%;
  position: relative;
}
.pd-main-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: opacity 0.3s ease;
}

/* Badges */
.pd-badges {
  position: absolute;
  top: 16px;
  left: 16px;
  display: flex;
  gap: 8px;
  z-index: 2;
}
.pd-badge {
  background: var(--ink);
  color: var(--white);
  font-size: 9px;
  letter-spacing: 0.18em;
  padding: 5px 10px;
  font-family: var(--font-body);
  font-weight: 500;
}
.pd-badge--outline {
  background: transparent;
  border: 1px solid var(--ink);
  color: var(--ink);
}

/* Zoom */
.pd-zoom-btn {
  position: absolute;
  top: 16px;
  right: 16px;
  background: var(--white);
  border: none;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--ease);
  z-index: 2;
}
.pd-zoom-btn:hover { background: var(--cream); }

/* Image Nav */
.pd-img-nav {
  position: absolute;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 2;
}
.pd-img-btn {
  background: rgba(253, 250, 245, 0.88);
  border: none;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 20px;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ink);
  transition: background var(--ease);
}
.pd-img-btn:hover { background: var(--white); }
.pd-img-counter {
  font-size: 11px;
  letter-spacing: 0.1em;
  color: var(--ink-mid);
  background: rgba(253, 250, 245, 0.88);
  padding: 4px 12px;
  border-radius: 20px;
  white-space: nowrap;
}

/* ══════════════════════
   PRODUCT INFO
══════════════════════ */
.pd-info { padding-top: 8px; }

.pd-meta {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 14px;
  flex-wrap: wrap;
  gap: 8px;
}
.pd-category {
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-faint);
}
.pd-stars-row {
  display: flex;
  align-items: center;
  gap: 8px;
}
.pd-stars {
  color: var(--ink);
  font-size: 12px;
  letter-spacing: 2px;
}
.pd-review-link {
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-light);
  text-decoration: underline;
  text-underline-offset: 3px;
  cursor: pointer;
}

.pd-name {
  font-family: var(--font-head);
  font-size: 52px;
  font-weight: 400;
  line-height: 1.04;
  letter-spacing: -0.01em;
  color: var(--ink);
  margin-bottom: 8px;
}
.pd-designer {
  font-family: var(--font-head);
  font-style: italic;
  font-size: 15px;
  color: var(--ink-light);
  margin-bottom: 0;
}

.pd-divider {
  border: none;
  border-top: 1px solid var(--divider);
  margin: 20px 0;
}

/* Price */
.pd-price-row {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin-bottom: 6px;
}
.pd-price {
  font-family: var(--font-head);
  font-size: 34px;
  font-weight: 300;
  color: var(--ink);
}
.pd-price-orig {
  font-family: var(--font-head);
  font-size: 18px;
  font-weight: 300;
  color: var(--ink-faint);
  text-decoration: line-through;
}
.pd-price-note {
  font-size: 11px;
  letter-spacing: 0.08em;
  color: var(--ink-faint);
  text-transform: uppercase;
  margin-bottom: 18px;
}
.pd-desc {
  font-size: 14px;
  line-height: 1.8;
  color: var(--ink-mid);
}
.pd-desc p { margin-bottom: 12px; }
.pd-desc p:last-child { margin-bottom: 0; }

/* ── Option labels ── */
.pd-option { margin-bottom: 0; }
.pd-section-label {
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-faint);
  margin-bottom: 12px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.pd-finish-name {
  font-family: var(--font-head);
  font-style: italic;
  font-size: 14px;
  color: var(--ink-light);
  text-transform: none;
  letter-spacing: 0;
}

/* ── Swatches ── */
.pd-swatches { display: flex; gap: 10px; flex-wrap: wrap; }
.pd-swatch {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 2px solid transparent;
  cursor: pointer;
  transition: border-color var(--ease), box-shadow var(--ease), transform 0.15s;
  outline: none;
  background-clip: content-box;
}
.pd-swatch:hover { transform: scale(1.08); }
.pd-swatch.selected,
.pd-swatch[aria-pressed="true"] {
  border-color: var(--ink);
  box-shadow: 0 0 0 3px var(--cream), 0 0 0 5px var(--ink);
}

/* ── Dropdown ── */
.pd-select-wrap {
  position: relative;
  display: inline-flex;
  align-items: center;
}
.pd-select {
  appearance: none;
  background: var(--white);
  border: 1px solid var(--ink);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 13px;
  letter-spacing: 0.05em;
  padding: 10px 40px 10px 14px;
  cursor: pointer;
  min-width: 200px;
  outline: none;
  transition: border-color var(--ease);
}
.pd-select:hover { border-color: var(--ink-mid); }
.pd-select-arrow {
  position: absolute;
  right: 14px;
  pointer-events: none;
  stroke: var(--ink-light);
}

/* ── Purchase Row ── */
.pd-purchase-row {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 12px;
  margin-bottom: 16px;
}
.pd-qty-box {
  display: flex;
  align-items: center;
  border: 1px solid var(--ink);
  height: 54px;
  user-select: none;
}
.pd-qty-btn {
  background: none;
  border: none;
  width: 38px;
  height: 100%;
  cursor: pointer;
  font-size: 18px;
  color: var(--ink);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--ease);
  flex-shrink: 0;
}
.pd-qty-btn:hover { background: var(--cream-dark); }
.pd-qty-val {
  flex: 1;
  text-align: center;
  font-size: 15px;
  font-weight: 500;
  color: var(--ink);
}
.pd-add-btn {
  background: var(--ink);
  color: var(--white);
  border: none;
  height: 54px;
  font-family: var(--font-body);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  transition: background var(--ease), opacity var(--ease);
  font-weight: 500;
  width: 100%;
}
.pd-add-btn:hover:not(:disabled) { background: var(--ink-mid); }
.pd-add-btn:disabled {
  opacity: 0.45;
  cursor: not-allowed;
}
.pd-btn-price { opacity: 0.65; }

/* Favourite */
.pd-fav-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--ink-light);
  cursor: pointer;
  background: none;
  border: none;
  padding: 0;
  margin-bottom: 16px;
  font-family: var(--font-body);
  transition: color var(--ease);
}
.pd-fav-btn:hover { color: var(--ink); }
.pd-fav-btn svg { width: 14px; height: 14px; stroke: currentColor; fill: none; stroke-width: 1.5; transition: fill var(--ease); }
.pd-fav-btn.active svg { fill: var(--ink); }

/* Stock */
.pd-stock {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-light);
  margin-bottom: 20px;
}
.pd-stock-dot { width: 7px; height: 7px; border-radius: 50%; flex-shrink: 0; }
.pd-stock-dot--in  { background: var(--success); }
.pd-stock-dot--out { background: var(--error); }

/* ── Features ── */
.pd-features-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.pd-feature { display: flex; gap: 12px; align-items: flex-start; }
.pd-feature-icon {
  width: 32px;
  height: 32px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.pd-feature-icon svg {
  width: 20px;
  height: 20px;
  stroke: var(--ink-light);
  fill: none;
  stroke-width: 1.5;
}
.pd-feature-title {
  display: block;
  font-size: 12px;
  font-weight: 500;
  color: var(--ink);
  letter-spacing: 0.05em;
  margin-bottom: 2px;
}
.pd-feature-desc {
  display: block;
  font-size: 11px;
  color: var(--ink-faint);
  line-height: 1.4;
}

/* ── Accordion ── */
.pd-accordion { border-top: 1px solid var(--divider); }
.pd-acc-item  { border-bottom: 1px solid var(--divider); }
.pd-acc-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 0;
  cursor: pointer;
  background: none;
  border: none;
  width: 100%;
  text-align: left;
  font-family: var(--font-body);
  transition: opacity var(--ease);
}
.pd-acc-header:hover { opacity: 0.65; }
.pd-acc-title {
  font-size: 10px;
  letter-spacing: 0.22em;
  font-weight: 500;
  color: var(--ink);
}
.pd-acc-icon {
  font-size: 20px;
  color: var(--ink-light);
  line-height: 1;
  transition: transform 0.3s ease;
  flex-shrink: 0;
}
.pd-acc-icon.open { transform: rotate(45deg); }
.pd-acc-body {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.4s ease;
}
.pd-acc-body:not([hidden]) { max-height: 600px; }
.pd-acc-body[hidden] { display: block !important; max-height: 0; }
.pd-acc-content {
  font-size: 14px;
  line-height: 1.85;
  color: var(--ink-mid);
  padding-bottom: 20px;
}
.pd-acc-content p { margin-bottom: 10px; }
.pd-acc-content p:last-child { margin-bottom: 0; }

/* ── Lightbox ── */
.pd-lightbox {
  position: fixed;
  inset: 0;
  background: rgba(26, 23, 20, 0.92);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
}
.pd-lightbox[hidden] { display: none; }
.pd-lb-img { max-width: 90vw; max-height: 90vh; object-fit: contain; }
.pd-lb-close {
  position: absolute;
  top: 24px;
  right: 28px;
  background: none;
  border: none;
  color: var(--white);
  font-size: 32px;
  cursor: pointer;
  line-height: 1;
  opacity: 0.8;
  transition: opacity var(--ease);
}
.pd-lb-close:hover { opacity: 1; }

/* ── Toast ── */
.pd-toast {
  position: fixed;
  bottom: 32px;
  right: 32px;
  background: var(--ink);
  color: var(--white);
  padding: 14px 22px;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  z-index: 500;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.28s, transform 0.28s;
  pointer-events: none;
  font-family: var(--font-body);
}
.pd-toast.show { opacity: 1; transform: translateY(0); }

/* ════════════════════════
   RESPONSIVE
════════════════════════ */
@media (max-width: 1100px) {
  .pd-layout {
    grid-template-columns: 1fr;
    padding: 0 24px 64px;
  }
  .pd-gallery {
    position: static;
    padding-right: 0;
    margin-bottom: 40px;
  }
  .pd-name { font-size: 42px; }
}
@media (max-width: 768px) {
  .pd-nav { padding: 0 20px; }
  .pd-nav__links { display: none; }
  .pd-breadcrumb { padding: 12px 0px; }
  .pd-layout { padding: 0 20px 56px; }
  .pd-name { font-size: 36px; }
  .pd-purchase-row { grid-template-columns: 100px 1fr; }
}
@media (max-width: 480px) {
  .pd-gallery { grid-template-columns: 60px 1fr; gap: 8px; }
  .pd-thumb   { width: 58px; height: 58px; }
  .pd-name    { font-size: 30px; }
  .pd-features-grid { grid-template-columns: 1fr; }
  .pd-toast   { right: 16px; left: 16px; text-align: center; }
}
