/** Shopify CDN: Minification failed

Line 45:0 All "@import" rules must come first
Line 419:15 Unterminated string token

**/
/* ============================================
   ZYNLEE - Handcrafted Jewelry Brand Styles
   "Show the art first. Explain the philosophy later."
   
   Design Philosophy:
   - Organic, flowing shapes
   - Handwritten/script typography feel
   - Nature-inspired decorative elements
   - Product-first, minimal text
   ============================================ */

/* ============================================
   0. CRITICAL FIXES
   ============================================ */

/* Make notify button clickable above product card link overlay */
.zynlee-card-notify-btn {
  position: absolute !important;
  z-index: 100 !important;
  pointer-events: auto !important;
  isolation: isolate;
}

/* Ensure the product card content has a higher stacking context */
product-card .product-card__content {
  position: relative;
  z-index: 2;
}

/* The product card link overlay should not block interactive elements */
product-card .product-card__link {
  z-index: 1;
}

/* ============================================
   1. IMPORT HANDWRITTEN FONTS (via Google Fonts)
   Font Display: swap for better performance
   ============================================ */
@import url('https://fonts.googleapis.com/css2?family=Caveat:wght@400;500;600&family=Great+Vibes&display=swap');

:root {
  /* Fonts - Script fonts via Google Fonts for handcrafted feel */
  --font-script: 'Great Vibes', cursive;
  --font-handwritten: 'Caveat', cursive;
  --font-elegant: 'Playfair Display', serif;
  
  /* Colors */
  --zynlee-cream: #FAF8F5;
  --zynlee-warm-white: #FFFEFB;
  --zynlee-terracotta: #C4A484;
  --zynlee-terracotta-dark: #A67B5B;
  --zynlee-sage: #9CAF88;
  --zynlee-gold: #C9A962;
  --zynlee-gold-light: #E8D5A3;
  --zynlee-charcoal: #2C2C2C;
  --zynlee-charcoal-soft: #4A4A4A;
  --zynlee-text-muted: #7A7A7A;
  --zynlee-border-light: #E8E4DE;
}

/* ============================================
   2. UNIQUE TYPOGRAPHY - HANDCRAFTED FEEL
   ============================================ */

/* Script headings for that handwritten touch */
h2, .h2,
.zynlee-script-heading {
  font-family: var(--font-script) !important;
  font-weight: 500;
  letter-spacing: 0.02em;
}

/* Elegant serif for body content */
body {
  font-family: var(--font-elegant);
  font-size: 16px;
  line-height: 1.7;
  color: var(--zynlee-charcoal-soft);
}

/* Section taglines in handwritten style */
.zynlee-tagline,
.zynlee-handwritten {
  font-family: var(--font-handwritten);
  font-size: 1.4em;
  color: var(--zynlee-terracotta-dark);
  font-weight: 500;
}

/* ============================================
   3. ORGANIC SHAPES & DECORATIONS
   ============================================ */

/* Botanical leaf decoration */
.zynlee-leaf-decoration::before {
  content: "🌿";
  margin-right: 8px;
  font-size: 0.9em;
}

.zynlee-leaf-decoration::after {
  content: "🌿";
  margin-left: 8px;
  font-size: 0.9em;
  transform: scaleX(-1);
  display: inline-block;
}

/* Organic wavy border */
.zynlee-wavy-border {
  position: relative;
}

.zynlee-wavy-border::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 3px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 10'%3E%3Cpath d='M0 5 Q 12.5 0, 25 5 T 50 5 T 75 5 T 100 5' stroke='%23C4A484' stroke-width='2' fill='none'/%3E%3C/svg%3E") no-repeat center;
}

/* Gold sparkle decoration */
.zynlee-sparkle::before {
  content: "✦";
  color: var(--zynlee-gold);
  margin-right: 10px;
}

.zynlee-sparkle::after {
  content: "✦";
  color: var(--zynlee-gold);
  margin-left: 10px;
}

/* ============================================
   4. COMPACT TRUST BAR (Inline USP)
   ============================================ */

.zynlee-trust-strip {
  background: linear-gradient(135deg, rgba(250,248,245,0.95) 0%, rgba(232,228,222,0.95) 100%);
  backdrop-filter: blur(10px);
  border-top: 1px solid var(--zynlee-border-light);
  border-bottom: 1px solid var(--zynlee-border-light);
}

.zynlee-trust-strip__item {
  font-family: var(--font-elegant);
  font-size: 0.9rem;
  letter-spacing: 0.03em;
}

/* ============================================
   5. PRODUCT CARDS - APPLE-INSPIRED DESIGN
   Principles: Simplicity, Delight, Focus
   ============================================ */

.product-card {
  transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
  border-radius: 16px;
  overflow: hidden;
  background: #FFFFFF;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
  position: relative;
}

.product-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 16px;
  border: 1px solid rgba(0, 0, 0, 0.04);
  pointer-events: none;
  z-index: 10;
  transition: border-color 0.4s ease;
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: 
    0 4px 8px rgba(0, 0, 0, 0.04),
    0 12px 24px rgba(0, 0, 0, 0.08),
    0 24px 48px rgba(0, 0, 0, 0.04);
}

.product-card:hover::before {
  border-color: rgba(196, 149, 106, 0.2);
}

/* Image container - smooth zoom */
.product-card .card-gallery,
.product-card .product-card__image-wrapper,
.product-card__image {
  overflow: hidden;
  border-radius: 12px 12px 0 0;
}

.product-card img,
.product-card .card-gallery img {
  transition: transform 0.7s cubic-bezier(0.23, 1, 0.32, 1);
}

.product-card:hover img,
.product-card:hover .card-gallery img {
  transform: scale(1.03);
}

/* Content area - clean spacing */
.product-card .product-card__content,
.product-card__details {
  padding: 16px 14px 18px;
  background: #FFFFFF;
}

/* Product title with elegant font */
.product-card h5,
.product-card [class*="title"] {
  font-family: var(--font-elegant);
  font-weight: 500;
  font-size: 1.05rem;
  line-height: 1.4;
  color: #1d1d1f;
  margin-bottom: 8px;
  transition: color 0.3s ease;
  letter-spacing: -0.01em;
}

.product-card:hover h5,
.product-card:hover [class*="title"] {
  color: #C4956A;
}

/* Price styling - Apple-clean */
.product-card .price,
.product-card .money {
  color: #1d1d1f;
  font-weight: 600;
  font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Display', sans-serif;
  font-size: 1rem;
  letter-spacing: -0.02em;
}

/* Sale badge - refined */
.product-card .badge--sale,
.product-card [class*="sale"] {
  background: linear-gradient(135deg, #C4956A 0%, #D4A574 100%);
  color: white;
  font-size: 0.7rem;
  font-weight: 600;
  padding: 5px 10px;
  border-radius: 20px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  box-shadow: 0 2px 8px rgba(196, 149, 106, 0.3);
}

/* Wishlist button - Apple touch - properly sized */
.product-card .zynlee-wishlist-btn,
product-card .zynlee-wishlist-btn {
  background: rgba(255, 255, 255, 0.95) !important;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: 50%;
  width: 34px !important;
  height: 34px !important;
  min-width: 34px !important;
  min-height: 34px !important;
  padding: 0 !important;
  display: flex !important;
  align-items: center;
  justify-content: center;
  transition: all 0.3s cubic-bezier(0.23, 1, 0.32, 1);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.8) !important;
}

/* Smaller heart icon inside */
.product-card .zynlee-wishlist-btn svg,
product-card .zynlee-wishlist-btn svg {
  width: 16px !important;
  height: 16px !important;
}

.product-card .zynlee-wishlist-btn:hover,
product-card .zynlee-wishlist-btn:hover {
  transform: scale(1.08);
  box-shadow: 0 4px 14px rgba(196, 149, 106, 0.25);
  background: #FFFFFF !important;
}

.product-card .zynlee-wishlist-btn.is-active,
product-card .zynlee-wishlist-btn.is-active {
  background: linear-gradient(135deg, #ff6b6b 0%, #ee5a5a 100%) !important;
  border-color: transparent !important;
}

.product-card .zynlee-wishlist-btn.is-active svg,
product-card .zynlee-wishlist-btn.is-active svg path {
  fill: white !important;
  stroke: white !important;
  color: white !important;
}

/* Quick add button - Apple-refined (desktop only) */
@media screen and (min-width: 750px) {
  /* Override the color-background variable on hover for the quick-add area */
  product-card:hover .quick-add,
  .product-card:hover .quick-add {
    --color-background: rgba(255, 255, 255, 0.98);
  }

  .product-card .quick-add__button,
  .product-card .quick-add button.button,
  product-card .quick-add__button,
  product-card quick-add-component .quick-add__button {
    border-radius: 24px !important;
    border: 1px solid rgba(0, 0, 0, 0.08) !important;
    font-weight: 600 !important;
    font-size: 0.85rem !important;
    letter-spacing: 0.02em;
    transition: all 0.35s cubic-bezier(0.23, 1, 0.32, 1) !important;
    opacity: 0;
    transform: translateY(6px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08) !important;
    min-height: 44px !important;
  }

  .product-card:hover .quick-add__button,
  .product-card:hover .quick-add button.button,
  product-card:hover .quick-add__button,
  product-card:hover quick-add-component .quick-add__button {
    opacity: 1 !important;
    transform: translateY(0);
  }

  /* HOVER STATE - Override --color-background variable to terracotta */
  .quick-add__button:hover,
  button.quick-add__button:hover,
  .quick-add__button--add:hover,
  .quick-add__button--choose:hover,
  product-card .quick-add__button:hover,
  .product-card .quick-add__button:hover {
    --color-background: #C4956A !important;
    --color-foreground: white !important;
    border-color: #C4956A !important;
    transform: scale(1.02) !important;
    box-shadow: 0 6px 20px rgba(196, 149, 106, 0.4) !important;
  }

  /* Inner text container also needs background override */
  .quick-add__button:hover .add-to-cart-text {
    background: #C4956A !important;
  }

  /* Button text & icon on hover */
  .quick-add__button:hover .add-to-cart-text,
  .quick-add__button:hover .add-to-cart-text__content,
  .quick-add__button:hover .quick-add__button-content,
  .quick-add__button:hover .quick-add__button-text,
  .quick-add__button:hover span {
    color: white !important;
  }

  .quick-add__button:hover svg,
  .quick-add__button:hover .svg-wrapper,
  .quick-add__button:hover .add-to-cart-icon {
    color: white !important;
  }

  .quick-add__button:hover svg path {
    stroke: white !important;
  }
}

/* Mobile refinements */
@media screen and (max-width: 749px) {
  .product-card {
    border-radius: 12px;
  }
  
  .product-card:hover {
    transform: translateY(-4px);
  }
  
  .product-card .product-card__content,
  .product-card__details {
    padding: 12px 10px 14px;
  }
  
  .product-card h5,
  .product-card [class*="title"] {
    font-size: 0.95rem;
  }
}

/* ============================================
   6. FLOATING TESTIMONIAL STYLE
   ============================================ */

.zynlee-testimonial {
  background: var(--zynlee-warm-white);
  border-left: 3px solid var(--zynlee-gold);
  padding: 24px 28px;
  border-radius: 0 12px 12px 0;
  position: relative;
  font-family: var(--font-elegant);
  font-style: italic;
}

.zynlee-testimonial::before {
  content: """;
  font-family: var(--font-script);
  font-size: 4rem;
  color: var(--zynlee-gold-light);
  position: absolute;
  top: -10px;
  left: 15px;
  line-height: 1;
}

.zynlee-testimonial-author {
  font-family: var(--font-handwritten);
  font-size: 1.2rem;
  color: var(--zynlee-terracotta-dark);
  font-style: normal;
}

/* ============================================
   7. MINIMAL BRAND STORY (Image-focused)
   ============================================ */

.zynlee-brand-story {
  position: relative;
}

.zynlee-brand-story__tagline {
  font-family: var(--font-handwritten);
  font-size: 1.6rem;
  color: var(--zynlee-terracotta-dark);
  text-transform: none;
  letter-spacing: 0.02em;
}

.zynlee-brand-story__heading {
  font-family: var(--font-script);
  font-size: 2.5rem;
  line-height: 1.3;
}

/* Short, impactful text only */
.zynlee-brand-story__content {
  font-family: var(--font-elegant);
  font-size: 1.1rem;
  line-height: 1.8;
  max-width: 500px;
}

/* ============================================
   8. USP SECTION - COMPACT & ELEGANT
   ============================================ */

.zynlee-usp-section {
  padding: 40px 0;
}

.zynlee-usp-section__heading {
  font-family: var(--font-script);
  font-size: 2rem;
}

.zynlee-usp {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.zynlee-usp-item {
  text-align: center;
  padding: 20px 16px;
}

.zynlee-usp-icon {
  font-size: 1.8em;
  margin-bottom: 10px;
}

.zynlee-usp-title {
  font-family: var(--font-elegant);
  font-weight: 600;
  font-size: 1rem;
  margin-bottom: 6px;
}

.zynlee-usp-text {
  font-size: 0.85rem;
  color: var(--zynlee-text-muted);
  line-height: 1.5;
}

@media (max-width: 749px) {
  .zynlee-usp {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  
  .zynlee-usp-item {
    display: flex;
    align-items: center;
    text-align: left;
    gap: 16px;
    padding: 12px 16px;
  }
  
  .zynlee-usp-icon {
    margin-bottom: 0;
    font-size: 1.5em;
  }
  
  .zynlee-usp-title {
    margin-bottom: 2px;
  }
}

/* ============================================
   9. BUTTONS - ORGANIC ROUNDED
   ============================================ */

.button,
[class*="button--primary"] {
  border-radius: 30px;
  font-family: var(--font-elegant);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.85rem;
  transition: all 0.3s ease;
}

.button:hover,
[class*="button"]:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(166, 123, 91, 0.25);
}

/* ============================================
   10. DECORATIVE DIVIDERS
   ============================================ */

.zynlee-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin: 30px 0;
}

.zynlee-divider::before,
.zynlee-divider::after {
  content: "";
  height: 1px;
  width: 60px;
  background: linear-gradient(to right, transparent, var(--zynlee-gold), transparent);
}

.zynlee-divider-icon {
  color: var(--zynlee-gold);
  font-size: 1rem;
}

/* ============================================
   11. BADGE STYLES - NATURE-INSPIRED
   ============================================ */

.zynlee-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: linear-gradient(135deg, var(--zynlee-gold-light) 0%, var(--zynlee-gold) 100%);
  color: var(--zynlee-charcoal);
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 0.75em;
  font-family: var(--font-elegant);
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.zynlee-badge--handcrafted {
  background: var(--zynlee-sage);
  color: white;
}

.zynlee-badge--preserved {
  background: var(--zynlee-terracotta);
  color: white;
}

/* ============================================
   12. HEADER - CLEAN & ELEGANT
   ============================================ */

.header a,
nav a {
  font-family: var(--font-elegant);
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-size: 0.85rem;
  transition: color 0.2s ease;
}

.header a:hover,
nav a:hover {
  color: var(--zynlee-terracotta-dark);
}

/* ============================================
   13. SECTION SPACING - COMPACT
   ============================================ */

.zynlee-usp-section,
section:has(.zynlee-usp) {
  padding-top: 30px;
  padding-bottom: 30px;
}

.zynlee-testimonials-section {
  padding-top: 40px;
  padding-bottom: 40px;
}

/* ============================================
   14. FOOTER CLEANUP
   ============================================ */

footer mark,
.footer mark {
  background: transparent;
  color: inherit;
}

/* ============================================
   15. SUBTLE ANIMATIONS
   ============================================ */

@media (prefers-reduced-motion: no-preference) {
  .zynlee-fade-up {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
  }
  
  .zynlee-fade-up.visible {
    opacity: 1;
    transform: translateY(0);
  }
  
  /* Gentle float animation for decorations */
  @keyframes zynlee-float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
  }
  
  .zynlee-float {
    animation: zynlee-float 3s ease-in-out infinite;
  }
}

/* ============================================
   16. MOBILE OPTIMIZATIONS
   ============================================ */

@media (max-width: 749px) {
  h2, .h2 {
    font-size: 1.8rem;
  }
  
  .zynlee-brand-story__heading {
    font-size: 1.8rem;
  }
  
  .zynlee-testimonial {
    padding: 20px;
  }
  
  .button,
  [class*="button--primary"] {
    padding: 14px 28px;
  }
}

/* ============================================
   17. PRINT STYLES
   ============================================ */

@media print {
  .header, .footer {
    display: none;
  }
}

/* ============================================
   17b. PRODUCT CARD PRICE FIX
   ============================================ */

/* 
   PRICING PSYCHOLOGY:
   - Sale price: Bold, dark = confidence, "this is what you pay"
   - Original price: Muted red with strikethrough = "savings", "deal"
   - Prices must ALWAYS be visible - hidden prices = lost sales
   - Use SIMPLE, readable font for prices - no decorative fonts
*/

/* FORCE prices to use simple, readable font */
.price,
.price *,
.product-card .price,
.product-card .price *,
[class*="price"],
.price-item,
.price-item--sale,
.price-item--regular {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif !important;
  font-style: normal !important;
}

/* FORCE prices to be visible on all product cards */
.product-card .price,
.product-card [class*="price"],
.product-card-content .price,
.card__content .price,
[class*="product-card"] .price {
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
  color: #2C2C2C !important;
  font-weight: 600 !important;
  font-size: 1rem !important;
  margin-top: 4px;
}

/* Current/Sale price - bold and prominent (what you pay) */
.price-item--sale,
.price--on-sale .price-item--sale,
.price__current,
.price .money:first-child {
  color: #2C2C2C !important;
  font-weight: 700 !important;
  font-size: 1.05em;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif !important;
}

/* Original/Compare price - coral-red with strikethrough (savings trigger) */
.compare-at-price,
.compare-at-price *,
.price-item--regular.price-item--last,
.price--on-sale .price-item--regular,
.price__was,
.price s,
.price del,
s .money,
del .money,
s,
del,
[class*="compare"],
.price-item--compare,
.price span s,
.price span del,
.product-card s,
.product-card del,
.product-card .price s,
.product-card .price del {
  color: #C75050 !important;  /* Coral-red for "deal" psychology */
  text-decoration: line-through !important;
  text-decoration-thickness: 1.5px !important;
  font-weight: 500 !important;
  font-size: 0.9em !important;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif !important;
  opacity: 1 !important;  /* Override the 0.4 opacity from base.css */
}

/* Target the money class inside strikethrough specifically */
s > *,
del > *,
s .money,
del .money,
s span,
del span,
.compare-at-price .money,
.compare-at-price span {
  color: #C75050 !important;
  opacity: 1 !important;
}

/* Regular price (non-sale items) */
.price:not(.price--on-sale) .price-item,
.product-card .price:not(.price--on-sale) {
  color: var(--zynlee-charcoal) !important;
  font-weight: 600 !important;
}

/* Product titles - darker for better readability */
.product-card__title,
.product-card [class*="title"],
.card__heading,
.product-card h3,
.product-card h4,
.product-card h5 {
  color: #2C2C2C !important;
  font-weight: 500 !important;
}

/* Sold out badge - create urgency with muted styling */
.badge--sold-out,
[class*="sold-out"] {
  background: #E8E4DE !important;
  color: #666 !important;
  font-size: 0.75rem;
  padding: 4px 8px;
  border-radius: 4px;
}

/* Sale badge - make it pop to trigger "deal" response */
.badge--sale,
[class*="sale-badge"] {
  background: #B85C5C !important;
  color: white !important;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 4px;
}

/* ============================================
   18. HEADER FIX - Show inline menu on desktop
   ============================================ */

/* Simple menu - remove bullets globally */
.zynlee-simple-menu,
.menu-list__list {
  list-style: none !important;
  padding-left: 0 !important;
  margin: 0 !important;
}

.zynlee-simple-menu li::before,
.zynlee-simple-menu li::marker,
.menu-list__list-item::before,
.menu-list__list-item::marker {
  display: none !important;
  content: none !important;
}

/* Force inline menu to show on screens wider than 750px */
@media screen and (min-width: 750px) {
  /* Ultra-aggressive override - prevent ANY hiding of header-menu */
  header-menu,
  header-menu.hidden,
  .header-menu,
  .header-menu.hidden,
  [class*="header-menu"] {
    display: flex !important;
    visibility: visible !important;
    opacity: 1 !important;
  }
  
  /* Hide the mobile drawer completely */
  .header__drawer,
  [class*="header__drawer"] {
    display: none !important;
  }
  
  /* Target overflow-list shadow parts to hide "More" button */
  overflow-list::part(more) {
    display: none !important;
  }
  
  overflow-list::part(overflow) {
    display: none !important;
  }
  
  /* Ensure menu list stays visible */
  .menu-list,
  .overflow-menu {
    display: block !important;
    visibility: visible !important;
  }
  
  .menu-list__list {
    display: flex !important;
    flex-wrap: nowrap !important;
    gap: 32px !important;
    list-style: none !important;
  }
  
  .menu-list__list-item {
    flex-shrink: 0 !important;
    display: list-item !important;
    list-style: none !important;
  }
  
  .menu-list__list-item::before,
  .menu-list__list-item::marker {
    display: none !important;
    content: none !important;
  }
  
  /* Prevent slot overflow from hiding items */
  .menu-list__list-item[slot="overflow"] {
    slot: unset !important;
    display: list-item !important;
  }
}

/* ============================================
   19. MOBILE HEADER & CART FIXES
   ============================================ */

/* Fix cart drawer close button icon */
.cart-drawer__close-button .svg-wrapper svg {
  width: 20px;
  height: 20px;
}

.cart-drawer__close-button .svg-wrapper svg path {
  stroke: var(--color-foreground, #2C2C2C);
  stroke-width: 1.5px;
}

/* Ensure close button is visible */
.cart-drawer__close-button {
  display: flex !important;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  padding: 10px;
}

/* Fix close button in dialogs */
.close-button .svg-wrapper svg path {
  stroke: currentColor;
  stroke-width: 1.5px;
}

/* Mobile header adjustments */
@media screen and (max-width: 749px) {
  /* Force single row header */
  .header__row {
    display: flex !important;
    flex-wrap: nowrap !important;
    align-items: center !important;
  }
  
  .header__columns {
    display: flex !important;
    flex-wrap: nowrap !important;
    align-items: center !important;
    justify-content: space-between !important;
    width: 100% !important;
  }
  
  /* Left column - hamburger menu */
  .header__column--left {
    flex: 0 0 auto !important;
    order: 1 !important;
  }
  
  /* Center column - logo */
  .header__column--center {
    flex: 1 1 auto !important;
    order: 2 !important;
    display: flex !important;
    justify-content: center !important;
  }
  
  /* Right column - actions (search + profile + cart) */
  .header__column--right {
    flex: 0 0 auto !important;
    order: 3 !important;
    display: flex !important;
    align-items: center !important;
    gap: 0 !important;
  }
  
  /* Ensure header-actions displays inline */
  header-actions {
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    gap: 0 !important;
  }
  
  /* Hide desktop account popover on mobile */
  .account-popover.mobile\:hidden {
    display: none !important;
  }
  
  /* Make action buttons consistent size */
  .header-actions__action,
  .header__icon {
    padding: 8px !important;
    flex-shrink: 0 !important;
  }
  
  /* Reduce logo size on mobile to fit everything */
  .header__logo-image {
    max-height: 32px !important;
  }
}

/* ============================================
   20. MAKER'S MARK - DISTINCTIVE BRAND ELEMENT
   A subtle signature mark that appears on sections
   ============================================ */

.zynlee-makers-mark {
  position: relative;
}

.zynlee-makers-mark::after {
  content: '';
  position: absolute;
  width: 40px;
  height: 40px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 50 50'%3E%3Cpath d='M25 5 L30 20 L45 25 L30 30 L25 45 L20 30 L5 25 L20 20 Z' fill='none' stroke='%23C9A962' stroke-width='1' opacity='0.4'/%3E%3Ccircle cx='25' cy='25' r='3' fill='%23C9A962' opacity='0.3'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
  opacity: 0.5;
  pointer-events: none;
}

.zynlee-makers-mark--top-right::after {
  top: 20px;
  right: 20px;
}

.zynlee-makers-mark--bottom-left::after {
  bottom: 20px;
  left: 20px;
}

.zynlee-makers-mark--bottom-right::after {
  bottom: 20px;
  right: 20px;
}

/* Decorative botanical corner */
.zynlee-botanical-corner {
  position: relative;
  overflow: hidden;
}

.zynlee-botanical-corner::before {
  content: '🌿';
  position: absolute;
  font-size: 2rem;
  opacity: 0.15;
  top: -5px;
  left: -5px;
  transform: rotate(-45deg);
}

.zynlee-botanical-corner::after {
  content: '🌿';
  position: absolute;
  font-size: 2rem;
  opacity: 0.15;
  bottom: -5px;
  right: -5px;
  transform: rotate(135deg);
}

/* Handcrafted seal/stamp */
.zynlee-stamp {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  border: 2px solid var(--zynlee-terracotta, #C4A484);
  border-radius: 50%;
  position: relative;
}

.zynlee-stamp::before {
  content: 'Z';
  font-family: var(--font-script, 'Great Vibes', cursive);
  font-size: 2rem;
  color: var(--zynlee-terracotta-dark, #A67B5B);
}

.zynlee-stamp::after {
  content: '';
  position: absolute;
  inset: 4px;
  border: 1px dashed var(--zynlee-gold-light, #E8D5A3);
  border-radius: 50%;
}

/* ============================================
   21. SKELETON LOADING STATES
   Smooth loading placeholders for product cards
   ============================================ */

@keyframes zynlee-shimmer {
  0% {
    background-position: -200px 0;
  }
  100% {
    background-position: calc(200px + 100%) 0;
  }
}

.zynlee-skeleton {
  background: linear-gradient(
    90deg,
    var(--zynlee-cream, #FAF8F5) 0px,
    #f0ece5 40px,
    var(--zynlee-cream, #FAF8F5) 80px
  );
  background-size: 200px 100%;
  animation: zynlee-shimmer 1.5s ease-in-out infinite;
  border-radius: 4px;
}

.zynlee-skeleton--image {
  aspect-ratio: 1;
  border-radius: 8px;
}

.zynlee-skeleton--title {
  height: 20px;
  width: 80%;
  margin-top: 12px;
}

.zynlee-skeleton--price {
  height: 16px;
  width: 40%;
  margin-top: 8px;
}

.zynlee-skeleton--text {
  height: 14px;
  width: 100%;
  margin-top: 6px;
}

.zynlee-skeleton--text-short {
  height: 14px;
  width: 60%;
  margin-top: 6px;
}

/* Product card skeleton */
.zynlee-product-skeleton {
  display: flex;
  flex-direction: column;
  padding: 12px;
}

.zynlee-product-skeleton__image {
  aspect-ratio: 1;
  background: linear-gradient(
    90deg,
    var(--zynlee-cream, #FAF8F5) 0px,
    #f0ece5 40px,
    var(--zynlee-cream, #FAF8F5) 80px
  );
  background-size: 200px 100%;
  animation: zynlee-shimmer 1.5s ease-in-out infinite;
  border-radius: 8px;
}

.zynlee-product-skeleton__content {
  padding: 12px 0;
}

.zynlee-product-skeleton__title {
  height: 18px;
  width: 75%;
  background: linear-gradient(
    90deg,
    var(--zynlee-cream, #FAF8F5) 0px,
    #f0ece5 40px,
    var(--zynlee-cream, #FAF8F5) 80px
  );
  background-size: 200px 100%;
  animation: zynlee-shimmer 1.5s ease-in-out infinite;
  border-radius: 4px;
  margin-bottom: 8px;
}

.zynlee-product-skeleton__price {
  height: 16px;
  width: 35%;
  background: linear-gradient(
    90deg,
    var(--zynlee-cream, #FAF8F5) 0px,
    #f0ece5 40px,
    var(--zynlee-cream, #FAF8F5) 80px
  );
  background-size: 200px 100%;
  animation: zynlee-shimmer 1.5s ease-in-out infinite;
  border-radius: 4px;
}

/* ============================================
   22. ADDITIONAL UTILITY CLASSES
   ============================================ */

/* Subtle image zoom on hover */
.zynlee-image-zoom {
  overflow: hidden;
}

.zynlee-image-zoom img {
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.zynlee-image-zoom:hover img {
  transform: scale(1.05);
}

/* Underline link animation */
.zynlee-link-underline {
  position: relative;
  text-decoration: none;
}

.zynlee-link-underline::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background: currentColor;
  transition: width 0.3s ease;
}

.zynlee-link-underline:hover::after {
  width: 100%;
}

/* Fade in animation */
.zynlee-fade-in {
  animation: zynlee-fadeInUp 0.6s ease forwards;
  opacity: 0;
}

@keyframes zynlee-fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Staggered animation delays */
.zynlee-stagger-1 { animation-delay: 0.1s; }
.zynlee-stagger-2 { animation-delay: 0.2s; }
.zynlee-stagger-3 { animation-delay: 0.3s; }
.zynlee-stagger-4 { animation-delay: 0.4s; }
.zynlee-stagger-5 { animation-delay: 0.5s; }
/* ============================================
   21. MOBILE PRODUCT CARD - ALWAYS VISIBLE ADD TO CART
   Makes the quick-add button always visible on mobile
   for better conversion and accessibility
   ============================================ */

/* Mobile: Always show Add to Cart button on product cards */
@media screen and (max-width: 749px) {
  /* Ensure the quick-add container is above the product link overlay */
  product-card .quick-add,
  product-card quick-add-component {
    z-index: 5 !important;
    position: absolute !important;
  }
  
  /* Style the visible quick-add button on mobile - but respect the Add/Choose logic */
  product-card .quick-add__button {
    opacity: 1 !important;
    /* Terracotta branded styling */
    background: linear-gradient(135deg, var(--zynlee-terracotta) 0%, var(--zynlee-terracotta-dark) 100%) !important;
    border: none !important;
    color: white !important;
    box-shadow: 0 2px 8px rgba(196, 164, 132, 0.3);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    width: 40px !important;
    height: 40px !important;
    min-width: 40px !important;
    min-height: 40px !important;
    padding: 0 !important;
    justify-content: center;
    align-items: center;
    /* Critical: ensure button is clickable and above product link */
    pointer-events: auto !important;
    cursor: pointer !important;
    -webkit-tap-highlight-color: rgba(196, 164, 132, 0.3);
    touch-action: manipulation;
    z-index: 10 !important;
    position: relative !important;
  }
  
  /* IMPORTANT: Respect the Add/Choose button visibility logic from the theme */
  /* When "Choose" mode is active, hide the Add button (inside add-to-cart-component) */
  product-card [data-quick-add-button='choose'] add-to-cart-component {
    display: none !important;
  }
  
  /* When "Add" mode is active, hide the Choose button */
  product-card [data-quick-add-button='add'] .quick-add__button--choose {
    display: none !important;
  }
  
  /* Show the correct button based on mode */
  product-card [data-quick-add-button='add'] .quick-add__button--add,
  product-card [data-quick-add-button='choose'] .quick-add__button--choose {
    display: flex !important;
  }
  
  /* Ensure product-form-component inside quick-add is clickable */
  product-card .quick-add product-form-component,
  product-card .quick-add quick-add-component,
  product-card quick-add-component {
    pointer-events: auto !important;
  }
  
  /* Ensure the form inside is clickable */
  product-card .quick-add form,
  product-card .quick-add__product-form-component {
    pointer-events: auto !important;
  }
  
  /* Icon wrapper styling */
  product-card .quick-add__button .add-to-cart-icon,
  product-card .quick-add__button .svg-wrapper,
  product-card .quick-add__button .quick-add__button-icon {
    display: flex !important;
    align-items: center;
    justify-content: center;
    width: 20px !important;
    height: 20px !important;
    color: white !important;
    pointer-events: none; /* Let clicks pass through to button */
  }
  
  /* SVG icon styling - stroke-based icon, not fill */
  product-card .quick-add__button svg {
    width: 18px !important;
    height: 18px !important;
    color: white !important;
    pointer-events: none; /* Let clicks pass through to button */
  }
  
  /* The icon uses stroke, not fill */
  product-card .quick-add__button svg path {
    stroke: white !important;
    fill: none !important;
  }
  
  /* Text wrapper - hide completely on mobile */
  product-card .quick-add__button .add-to-cart-text {
    background: transparent !important;
    color: white !important;
    display: flex !important;
    align-items: center;
    justify-content: center;
    padding: 0 !important;
    gap: 0 !important;
    height: 100% !important;
    pointer-events: none; /* Let clicks pass through to button */
  }
  
  /* Hide text on mobile, show only icon */
  product-card .quick-add__button .add-to-cart-text__content,
  product-card .quick-add__button .quick-add__button-text {
    display: none !important;
  }
  
  /* Pressed/Active state for touch feedback */
  product-card .quick-add__button:active {
    transform: scale(0.92) !important;
    box-shadow: 0 1px 4px rgba(196, 164, 132, 0.2);
    background: linear-gradient(135deg, var(--zynlee-terracotta-dark) 0%, var(--zynlee-terracotta-dark) 100%) !important;
  }
  
  /* Loading/success states */
  product-card .quick-add__button[aria-disabled="true"] {
    opacity: 0.7 !important;
    cursor: wait;
  }
  
  /* Sold out state */
  product-card .quick-add__button:disabled,
  product-card .quick-add__button[disabled] {
    background: var(--zynlee-charcoal-soft) !important;
    opacity: 0.6 !important;
    cursor: not-allowed;
  }
}

/* Tablet and up: show on hover only (existing behavior) */
@media screen and (min-width: 750px) {
  product-card:hover .quick-add__button,
  product-card:focus-within .quick-add__button {
    opacity: 1 !important;
  }
}

/* ============================================
   22. ZOOM DIALOG CLOSE BUTTON - IMPROVED VISIBILITY
   Makes the close button clearly visible on image zoom
   ============================================ */

.dialog-zoomed-gallery__close-button,
zoom-dialog .close-button {
  /* Remove blend mode that makes it invisible */
  mix-blend-mode: normal !important;
  /* Solid background for visibility */
  background: rgba(0, 0, 0, 0.6) !important;
  border-radius: 50% !important;
  width: 44px !important;
  height: 44px !important;
  min-width: 44px !important;
  min-height: 44px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  padding: 10px !important;
  /* Position */
  position: fixed !important;
  top: 16px !important;
  right: 16px !important;
  z-index: 9999 !important;
  /* Ensure visibility */
  opacity: 1 !important;
  visibility: visible !important;
  /* Interaction */
  cursor: pointer !important;
  pointer-events: auto !important;
  -webkit-tap-highlight-color: rgba(255, 255, 255, 0.2);
  touch-action: manipulation;
  /* Transition */
  transition: background 0.2s ease, transform 0.2s ease;
}

.dialog-zoomed-gallery__close-button:hover,
zoom-dialog .close-button:hover {
  background: rgba(0, 0, 0, 0.8) !important;
}

.dialog-zoomed-gallery__close-button:active,
zoom-dialog .close-button:active {
  transform: scale(0.95);
  background: rgba(0, 0, 0, 0.9) !important;
}

/* SVG icon inside close button */
.dialog-zoomed-gallery__close-button svg,
zoom-dialog .close-button svg {
  width: 20px !important;
  height: 20px !important;
  color: white !important;
}

.dialog-zoomed-gallery__close-button svg path,
zoom-dialog .close-button svg path {
  stroke: white !important;
  stroke-width: 2px !important;
}

/* Safe area padding for notched devices */
@supports (padding-top: env(safe-area-inset-top)) {
  .dialog-zoomed-gallery__close-button,
  zoom-dialog .close-button {
    top: max(16px, env(safe-area-inset-top)) !important;
    right: max(16px, env(safe-area-inset-right)) !important;
  }
}

/* ============================================
   MOBILE PRODUCT GALLERY PAGINATION INDICATOR
   Shows dots/counter to indicate multiple images
   ============================================ */

@media screen and (max-width: 749px) {
  /* Ensure mobile gallery controls are visible and properly positioned */
  media-gallery slideshow-controls.media-gallery__mobile-controls,
  media-gallery slideshow-controls[controls-on-media] {
    position: absolute;
    bottom: 16px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex !important;
    justify-content: center;
    align-items: center;
    min-height: auto;
    width: auto;
    background: transparent;
  }

  /* Style the dots container for better visibility on mobile */
  media-gallery .slideshow-controls__dots {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    padding: 6px 12px;
    border-radius: 12px;
    gap: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
  }

  media-gallery .slideshow-controls__dots button {
    --size: 6px;
    width: 16px;
    height: 16px;
    margin: 0;
    padding: 0;
  }

  media-gallery .slideshow-controls__dots button::after {
    background-color: rgba(0, 0, 0, 0.25);
    box-shadow: none;
    width: 6px;
    height: 6px;
    border-radius: 50%;
  }

  media-gallery .slideshow-controls__dots button[aria-selected='true']::after {
    background-color: rgba(0, 0, 0, 0.8);
    width: 6px;
    height: 6px;
  }

  /* Style the counter for better visibility on mobile */
  media-gallery .slideshow-controls__counter {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    color: #333;
    padding: 4px 10px;
    border-radius: 10px;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.3px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
  }

  media-gallery .slideshow-controls__counter .slash {
    color: rgba(0, 0, 0, 0.4);
  }

  /* Ensure slideshow component has relative positioning for absolute controls */
  media-gallery slideshow-component {
    position: relative;
  }

  /* Override any mix-blend-mode that might affect visibility */
  media-gallery slideshow-controls:has(.slideshow-controls__dots),
  media-gallery slideshow-controls:has(.slideshow-controls__counter) {
    mix-blend-mode: normal;
  }
}

/* ============================================
   PRODUCT CARD GALLERY - MOBILE SCROLL INDICATOR
   Shows visual indicator for multiple images on product cards
   ============================================ */

@media screen and (max-width: 749px) {
  /* Product card gallery - add scroll indicator when multiple images exist */
  .card-gallery slideshow-component:has(slideshow-slide + slideshow-slide) {
    position: relative;
  }

  /* Create dots container indicator for product cards */
  .card-gallery slideshow-component:has(slideshow-slide + slideshow-slide)::after {
    content: '● ●';
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 5px 10px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 10px;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.15);
    z-index: 5;
    pointer-events: none;
    font-size: 6px;
    letter-spacing: 4px;
    color: rgba(0, 0, 0, 0.3);
  }

  /* 3 or more images - show 3 dots */
  .card-gallery slideshow-component:has(slideshow-slide + slideshow-slide + slideshow-slide)::after {
    content: '● ● ●';
  }

  /* 4 or more images - show 4 dots */
  .card-gallery slideshow-component:has(slideshow-slide + slideshow-slide + slideshow-slide + slideshow-slide)::after {
    content: '● ● ● ●';
  }

  /* 5 or more images - show 5 dots max */
  .card-gallery slideshow-component:has(slideshow-slide + slideshow-slide + slideshow-slide + slideshow-slide + slideshow-slide)::after {
    content: '● ● ● ● ●';
  }
}