/** Shopify CDN: Minification failed

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

**/
/* ============================================================
   SHAHZADI DESIGN SYSTEM — shz-design.css
   Tokens · Cards · Animations · Layout
   ============================================================ */

/* ── 1. TOKENS ──────────────────────────────────────────── */
:root {
  --shz-aubergine:       #5D2E5C;
  --shz-aubergine-light: #7A3D79;
  --shz-aubergine-dark:  #3E1E3D;
  --shz-gold:            #C9A961;
  --shz-gold-light:      #E0C882;
  --shz-gold-text:       #9A7A3A;
  --shz-cream:           #FBF6EE;
  --shz-cream-2:         #F3EDE4;
  --shz-text:            #2A1A29;
  --shz-text-soft:       #6B4E6A;
  --shz-serif:           'Cormorant Garamond', 'Cormorant', 'Palatino Linotype', Georgia, serif;
  --shz-sans:            'Jost', 'Inter', system-ui, sans-serif;
  --shz-transition:      0.3s cubic-bezier(.4,0,.2,1);
}

/* ── 2. GOOGLE FONTS IMPORT ─────────────────────────────── */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400;1,500&family=Jost:wght@300;400;500;600&display=swap');

/* ── 3. BASE RESETS ─────────────────────────────────────── */
.shz { box-sizing: border-box; }
.shz *, .shz *::before, .shz *::after { box-sizing: inherit; }
.shz-serif { font-family: var(--shz-serif); }
.shz-sans  { font-family: var(--shz-sans); }
.shz-eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--shz-sans); font-size: 11px; font-weight: 500;
  letter-spacing: .3em; text-transform: uppercase;
  color: var(--shz-gold-text); padding-left: .3em;
}
.shz-eyebrow::before, .shz-eyebrow::after {
  content: ''; display: inline-block; width: 28px; height: 1px; background: var(--shz-gold);
}
.shz-gem {
  display: inline-block; width: 7px; height: 7px;
  background: var(--shz-gold); transform: rotate(45deg);
}

/* ── 4. PRODUCT CARD ────────────────────────────────────── */
.shz-card {
  display: flex; flex-direction: column; min-width: 0;
  font-family: var(--shz-sans);
}

/* Media container — fixed 4:5, neutral cream bg */
.shz-card-media {
  position: relative; display: block;
  aspect-ratio: 4 / 5; background: var(--shz-cream);
  overflow: hidden; text-decoration: none;
  border: 1px solid rgba(201,169,97,.18);
}
.shz-card-media-inner {
  position: absolute; inset: 6%;   /* padding so image never touches edge */
  display: flex; align-items: center; justify-content: center;
}
.shz-card-img-primary,
.shz-card-img-hover {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: contain;             /* CONTAIN — no cropping */
  transition: opacity var(--shz-transition), transform var(--shz-transition);
}
.shz-card-img-hover { opacity: 0; }

/* Hover: show second image + subtle zoom */
.shz-card-has-hover:hover .shz-card-img-primary { opacity: 0; transform: scale(1.03); }
.shz-card-has-hover:hover .shz-card-img-hover   { opacity: 1; }
.shz-card-has-hover:not(:hover) .shz-card-img-primary { opacity: 1; transform: scale(1); }

/* Sale badge */
.shz-card-badge {
  position: absolute; top: 12px; left: 12px; z-index: 2;
  background: var(--shz-aubergine); color: var(--shz-gold-light);
  font-family: var(--shz-sans); font-size: 10.5px; font-weight: 600;
  letter-spacing: .12em; text-transform: uppercase;
  padding: 5px 10px; pointer-events: none;
}

/* Gold corner brackets */
.shz-card-corner {
  position: absolute; width: 18px; height: 18px; z-index: 1;
  border-color: var(--shz-gold); border-style: solid;
  transition: opacity .3s; opacity: 0; pointer-events: none;
}
.shz-card-media:hover .shz-card-corner { opacity: 1; }
.shz-card-corner--tl { top: 8px; left: 8px; border-width: 1px 0 0 1px; }
.shz-card-corner--br { bottom: 8px; right: 8px; border-width: 0 1px 1px 0; }

/* Placeholder */
.shz-card-placeholder {
  position: absolute; inset: 0; display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 14px;
}
.shz-card-placeholder-label {
  font-family: var(--shz-sans); font-size: 10px; letter-spacing: .2em;
  text-transform: uppercase; color: var(--shz-gold-text); opacity: .6;
}

/* Info section */
.shz-card-info {
  padding: 16px 2px 0; display: flex; flex-direction: column; gap: 6px;
}
.shz-card-title {
  font-weight: 500; font-size: 20px; line-height: 1.2;
  color: var(--shz-text); margin: 0;
}
.shz-card-price-row {
  display: flex; align-items: baseline; gap: 8px; flex-wrap: wrap;
}
.shz-card-price {
  font-family: var(--shz-serif); font-size: 18px; font-weight: 500;
  color: var(--shz-aubergine);
}
.shz-card-compare {
  font-family: var(--shz-serif); font-size: 14px;
  color: var(--shz-text-soft); opacity: .55; text-decoration: line-through;
}

/* ── 5. PRODUCT GRID ────────────────────────────────────── */
.shz-product-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0,1fr));
  gap: 30px 20px;
}
@media (max-width: 1023px) {
  .shz-product-grid { grid-template-columns: repeat(3, minmax(0,1fr)); gap: 24px 16px; }
}
@media (max-width: 640px) {
  .shz-product-grid { grid-template-columns: repeat(2, minmax(0,1fr)); gap: 16px 12px; }
}

/* ── 6. BUTTONS ─────────────────────────────────────────── */
.shz-btn {
  display: inline-flex; align-items: center; justify-content: center;
  font-family: var(--shz-sans); font-size: 12.5px; font-weight: 500;
  letter-spacing: .18em; text-transform: uppercase;
  padding: 15px 36px; text-decoration: none; border: none;
  cursor: pointer; transition: background var(--shz-transition), color var(--shz-transition), transform .15s;
}
.shz-btn:active { transform: scale(.97); }
.shz-btn-primary {
  background: var(--shz-gold); color: var(--shz-aubergine-dark);
}
.shz-btn-primary:hover { background: var(--shz-gold-light); }
.shz-btn-outline {
  background: transparent; color: var(--shz-cream);
  border: 1px solid rgba(201,169,97,.6);
}
.shz-btn-outline:hover { background: rgba(201,169,97,.12); border-color: var(--shz-gold); }
.shz-btn-dark {
  background: var(--shz-aubergine); color: var(--shz-cream);
}
.shz-btn-dark:hover { background: var(--shz-aubergine-dark); }

/* ── 7. SCROLL-REVEAL ANIMATION ─────────────────────────── */
[data-shz-reveal] {
  opacity: 0; transform: translateY(28px);
  transition: opacity .65s ease, transform .65s ease;
}
[data-shz-reveal].shz-visible {
  opacity: 1; transform: translateY(0);
}
@media (prefers-reduced-motion: reduce) {
  [data-shz-reveal] { opacity: 1; transform: none; transition: none; }
}

/* ── 8. TRUST ICONS BAR ──────────────────────────────────── */
.shz-trust-bar {
  display: flex; align-items: center; gap: 22px; flex-wrap: wrap;
}
.shz-trust-item {
  display: flex; align-items: center; gap: 8px;
  font-family: var(--shz-sans); font-size: 12.5px; color: var(--shz-text-soft);
}
.shz-trust-icon { color: var(--shz-gold); flex-shrink: 0; }

/* ── 9. ACCORDION (product description / reviews) ──────── */
.shz-accordion details {
  border-bottom: 1px solid rgba(201,169,97,.25);
}
.shz-accordion summary {
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 0; cursor: pointer; list-style: none;
  font-family: var(--shz-serif); font-size: 17px; font-weight: 500;
  color: var(--shz-aubergine); letter-spacing: .02em;
}
.shz-accordion summary::-webkit-details-marker { display: none; }
.shz-accordion summary::after {
  content: '+'; color: var(--shz-gold); font-size: 20px; font-family: var(--shz-sans);
  font-weight: 300; transition: transform .2s;
}
.shz-accordion details[open] summary::after { content: '−'; }
.shz-accordion .shz-acc-body {
  font-family: var(--shz-sans); font-size: 14.5px; font-weight: 300;
  line-height: 1.8; color: var(--shz-text-soft); padding: 0 0 20px;
}

/* ── 10. SECTION DIVIDER ─────────────────────────────────── */
.shz-divider {
  display: flex; align-items: center; justify-content: center; gap: 14px;
  margin: 12px 0;
}
.shz-divider-line {
  flex: 1; max-width: 80px; height: 1px; background: var(--shz-gold); opacity: .4;
}

/* ── 11. SCROLL REVEAL SCRIPT INIT ──────────────────────── */
/* ── 12. CART DRAWER ─────────────────────────────────────── */
#shz-drawer-overlay {
  position: fixed; inset: 0; background: rgba(42,26,41,.5);
  z-index: 9998; opacity: 0; pointer-events: none;
  transition: opacity .3s ease;
}
#shz-drawer-overlay.shz-open { opacity: 1; pointer-events: auto; }

#shz-cart-drawer {
  position: fixed; top: 0; right: 0; bottom: 0;
  width: 420px; max-width: 100vw;
  background: var(--shz-cream); z-index: 9999;
  transform: translateX(100%);
  transition: transform .35s cubic-bezier(.32,.72,0,1);
  display: flex; flex-direction: column;
  box-shadow: -6px 0 40px rgba(42,26,41,.18);
}
#shz-cart-drawer.shz-open { transform: translateX(0); }

.shz-drw-head {
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px 24px; background: var(--shz-aubergine);
  color: var(--shz-cream); flex-shrink: 0;
}
.shz-drw-title {
  font-family: var(--shz-serif); font-size: 20px; font-weight: 400;
  margin: 0; color: var(--shz-cream); letter-spacing: .02em;
}
.shz-drw-close {
  background: none; border: none; cursor: pointer;
  color: var(--shz-cream); padding: 4px; display: flex;
  opacity: .7; transition: opacity .2s;
}
.shz-drw-close:hover { opacity: 1; }

.shz-drw-body { flex: 1; overflow-y: auto; padding: 0 24px; }
.shz-drw-empty {
  color: var(--shz-text-soft); font-family: var(--shz-sans);
  font-size: 14px; text-align: center; padding: 48px 0;
}

.shz-drw-item {
  display: flex; gap: 14px; padding: 18px 0;
  border-bottom: 1px solid rgba(201,169,97,.2);
}
.shz-drw-item-img {
  width: 76px; height: 96px; object-fit: cover; flex-shrink: 0;
  border: 1px solid rgba(201,169,97,.2);
}
.shz-drw-item-info { flex: 1; min-width: 0; font-family: var(--shz-sans); }
.shz-drw-item-title {
  font-size: 13.5px; font-weight: 500; color: var(--shz-text);
  text-decoration: none; line-height: 1.3; display: block;
}
.shz-drw-item-title:hover { color: var(--shz-aubergine); }
.shz-drw-item-variant { font-size: 12px; color: var(--shz-text-soft); margin-top: 3px; }
.shz-drw-item-price {
  display: flex; align-items: baseline; gap: 7px; flex-wrap: wrap;
  font-family: var(--shz-serif); font-size: 15px; font-weight: 500;
  color: var(--shz-aubergine); margin-top: 8px;
}
.shz-drw-orig {
  text-decoration: line-through;
  font-family: var(--shz-sans); font-size: 12px;
  color: var(--shz-text-soft); opacity: .55; font-weight: 400;
}
.shz-drw-disc {
  background: var(--shz-aubergine); color: var(--shz-gold-light);
  font-family: var(--shz-sans); font-size: 9.5px; font-weight: 700;
  padding: 2px 5px; letter-spacing: .06em;
}
.shz-drw-qty {
  display: flex; align-items: center; gap: 10px; margin-top: 10px;
}
.shz-drw-qty button {
  width: 28px; height: 28px;
  border: 1px solid rgba(201,169,97,.4); background: none;
  cursor: pointer; color: var(--shz-text); font-size: 16px;
  display: flex; align-items: center; justify-content: center;
  transition: border-color .15s;
}
.shz-drw-qty button:hover { border-color: var(--shz-gold); }
.shz-drw-qty span {
  font-family: var(--shz-sans); font-size: 14px;
  min-width: 24px; text-align: center;
}
.shz-drw-remove {
  background: none; border: none; cursor: pointer;
  color: var(--shz-text-soft); font-size: 16px; padding: 0;
  align-self: flex-start; opacity: .55; transition: opacity .15s; flex-shrink: 0;
}
.shz-drw-remove:hover { opacity: 1; }

.shz-drw-foot {
  padding: 16px 24px 28px; border-top: 1px solid rgba(201,169,97,.2);
  background: white; flex-shrink: 0;
}
.shz-drw-subtotal {
  display: flex; justify-content: space-between;
  font-family: var(--shz-serif); font-size: 17px; font-weight: 500;
  color: var(--shz-text); margin-bottom: 6px;
}
.shz-drw-shipping-note {
  font-family: var(--shz-sans); font-size: 12px;
  color: var(--shz-text-soft); margin: 0 0 14px; text-align: center;
}
.shz-drw-checkout {
  display: block; width: 100%; text-align: center; margin-bottom: 10px;
}
.shz-drw-viewcart {
  display: block; text-align: center;
  font-family: var(--shz-sans); font-size: 12px; letter-spacing: .08em;
  color: var(--shz-text-soft); text-decoration: underline;
  text-underline-offset: 3px;
}

/* Cart count badge */
.shz-cart-wrap { position: relative; display: flex; }
.shz-cart-count {
  position: absolute; top: -7px; right: -8px;
  background: var(--shz-aubergine); color: var(--shz-gold-light);
  font-family: var(--shz-sans); font-size: 9.5px; font-weight: 700;
  min-width: 16px; height: 16px; border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  padding: 0 3px; pointer-events: none;
  border: 1.5px solid var(--shz-cream);
}
.shz-drw-savings {
  background: rgba(201,169,97,.12); border: 1px solid rgba(201,169,97,.3);
  color: var(--shz-aubergine); font-family: var(--shz-sans); font-size: 12.5px;
  text-align: center; padding: 8px 12px; margin-bottom: 12px;
}
.shz-drw-savings strong { font-weight: 700; color: var(--shz-aubergine); }