/** Shopify CDN: Minification failed

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

**/
/*
 * Pretiosus Luxury Theme - Custom Styling
 * Version: 2.0.0
 * Mobile-First Design for Luxury Jewelry
 */

/* ========================================
   CSS VARIABLES - LUXURY COLOR PALETTE
   ======================================== */
:root {
  /* Brand Gold Colors */
  --color-gold-primary: #D4AF37;
  --color-gold-accent: #C9A961;
  --color-gold-light: #E8D7A4;
  --color-gold-dark: #B8941F;
  
  /* Neutral Luxury Colors */
  --color-charcoal: #1A1A1A;
  --color-warm-white: #FAF9F6;
  --color-warm-gray: #F5F5F3;
  --color-mid-gray: #8B8B8B;
  
  /* Trust & Action Colors */
  --color-trust-green: #2D5016;
  --color-error-red: #C41E3A;
  
  /* Shadows & Effects */
  --shadow-subtle: 0 2px 8px rgba(212, 175, 55, 0.08);
  --shadow-medium: 0 4px 16px rgba(26, 26, 26, 0.12);
  --shadow-gold-glow: 0 4px 20px rgba(212, 175, 55, 0.25);
  
  /* Typography Scale */
  --font-primary: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-heading: 'Playfair Display', Georgia, serif;
  
  /* Spacing */
  --spacing-xs: 0.5rem;
  --spacing-sm: 1rem;
  --spacing-md: 1.5rem;
  --spacing-lg: 2.5rem;
  --spacing-xl: 4rem;
  
  /* Transitions */
  --transition-fast: 0.2s ease;
  --transition-smooth: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ========================================
   GOOGLE FONTS IMPORT
   ======================================== */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600;700&family=Montserrat:wght@300;400;500;600;700&display=swap');

/* ========================================
   GLOBAL TYPOGRAPHY OVERRIDES
   ======================================== */
body {
  font-family: var(--font-primary) !important;
  color: var(--color-charcoal);
  background-color: var(--color-warm-white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6,
.h1, .h2, .h3, .h4, .h5, .h6 {
  font-family: var(--font-heading) !important;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--color-charcoal);
}

/* ========================================
   PRODUCT PAGE ENHANCEMENTS
   ======================================== */

/* Product Title - Luxury Treatment */
.product__title {
  font-family: var(--font-heading) !important;
  font-size: clamp(1.75rem, 5vw, 2.5rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  margin-bottom: var(--spacing-sm);
  line-height: 1.2;
}

/* Price Display - Premium Styling */
.price {
  font-family: var(--font-primary);
  font-weight: 600;
  font-size: 1.5rem;
  color: var(--color-charcoal);
}

.price--on-sale .price__regular {
  color: var(--color-mid-gray);
  text-decoration: line-through;
  font-size: 1.25rem;
  margin-right: var(--spacing-xs);
}

.price--on-sale .price__sale {
  color: var(--color-gold-primary);
  font-weight: 700;
}

/* Sale Badge - Gold Accent */
.badge--sale,
.price__badge-sale {
  background: linear-gradient(135deg, var(--color-gold-primary) 0%, var(--color-gold-accent) 100%);
  color: var(--color-warm-white);
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-size: 0.75rem;
  padding: 0.35rem 0.75rem;
  border-radius: 20px;
  box-shadow: var(--shadow-gold-glow);
}

/* ========================================
   TRUST SIGNALS & BADGES
   ======================================== */
.pretiosus-trust-bar {
  display: flex;
  flex-wrap: wrap;
  gap: var(--spacing-sm);
  margin: var(--spacing-md) 0;
  padding: var(--spacing-sm);
  background: var(--color-warm-gray);
  border-radius: 8px;
}

.trust-badge {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--color-charcoal);
  font-weight: 500;
}

.trust-badge svg,
.trust-badge img {
  width: 20px;
  height: 20px;
  color: var(--color-gold-primary);
}

/* ========================================
   STICKY ADD TO CART (Mobile First)
   ======================================== */
.sticky-atc-wrapper {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--color-warm-white);
  padding: var(--spacing-sm);
  box-shadow: 0 -4px 16px rgba(26, 26, 26, 0.15);
  z-index: 100;
  transform: translateY(100%);
  transition: transform var(--transition-smooth);
  border-top: 2px solid var(--color-gold-primary);
}

.sticky-atc-wrapper.visible {
  transform: translateY(0);
}

.sticky-atc-wrapper .product-form__submit {
  width: 100%;
  background: linear-gradient(135deg, var(--color-gold-primary) 0%, var(--color-gold-accent) 100%);
  color: var(--color-warm-white);
  border: none;
  padding: 1rem;
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-radius: 4px;
  transition: all var(--transition-fast);
  box-shadow: var(--shadow-gold-glow);
}

.sticky-atc-wrapper .product-form__submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(212, 175, 55, 0.35);
}

/* ========================================
   BUTTON ENHANCEMENTS
   ======================================== */
.button--primary,
.product-form__submit,
button[type="submit"] {
  background: linear-gradient(135deg, var(--color-gold-primary) 0%, var(--color-gold-accent) 100%) !important;
  color: var(--color-warm-white) !important;
  border: none !important;
  padding: 1rem 2rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-radius: 4px;
  transition: all var(--transition-fast);
  box-shadow: var(--shadow-gold-glow);
  font-family: var(--font-primary);
  cursor: pointer;
}

.button--primary:hover,
.product-form__submit:hover,
button[type="submit"]:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(212, 175, 55, 0.35);
}

.button--secondary {
  background: transparent !important;
  color: var(--color-charcoal) !important;
  border: 2px solid var(--color-gold-primary) !important;
  padding: 0.875rem 1.875rem;
}

.button--secondary:hover {
  background: var(--color-gold-light) !important;
  border-color: var(--color-gold-accent) !important;
}

/* ========================================
   PRODUCT IMAGE ENHANCEMENTS
   ======================================== */
.product__media-wrapper {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: var(--shadow-medium);
}

.product__media img {
  transition: transform var(--transition-smooth);
}

.product__media:hover img {
  transform: scale(1.05);
}

/* Add subtle gold glow on product images */
.product__media::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, rgba(212, 175, 55, 0.1) 0%, transparent 70%);
  opacity: 0;
  transition: opacity var(--transition-smooth);
  pointer-events: none;
}

.product__media:hover::after {
  opacity: 1;
}

/* ========================================
   PRODUCT CARDS (Collection Grid)
   ======================================== */
.card-wrapper {
  border-radius: 8px;
  overflow: hidden;
  transition: all var(--transition-smooth);
}

.card-wrapper:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-medium);
}

.card__heading {
  font-family: var(--font-heading) !important;
  font-size: 1.125rem;
  font-weight: 600;
  margin-top: var(--spacing-xs);
}

/* ========================================
   MOBILE OPTIMIZATIONS
   ======================================== */
@media screen and (max-width: 749px) {
  /* Larger touch targets */
  .product-form__submit,
  .button {
    min-height: 48px;
    padding: 1rem 1.5rem;
  }
  
  /* Better spacing on mobile */
  .product {
    padding: var(--spacing-sm);
  }
  
  /* Optimize product title size */
  .product__title {
    font-size: 1.75rem;
    margin-bottom: var(--spacing-sm);
  }
  
  /* Price visibility */
  .price {
    font-size: 1.5rem;
  }
  
  /* Trust bar stacks nicely */
  .pretiosus-trust-bar {
    flex-direction: column;
    gap: var(--spacing-xs);
  }
}

/* ========================================
   SCROLL ANIMATIONS
   ======================================== */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger animation delays */
.animate-on-scroll:nth-child(2) { transition-delay: 0.1s; }
.animate-on-scroll:nth-child(3) { transition-delay: 0.2s; }
.animate-on-scroll:nth-child(4) { transition-delay: 0.3s; }

/* ========================================
   PRODUCT DETAILS ACCORDIONS
   ======================================== */
.accordion summary {
  font-family: var(--font-primary);
  font-weight: 600;
  font-size: 1rem;
  padding: var(--spacing-sm);
  background: var(--color-warm-gray);
  border-radius: 4px;
  cursor: pointer;
  transition: background var(--transition-fast);
}

.accordion summary:hover {
  background: var(--color-gold-light);
}

.accordion[open] summary {
  background: var(--color-gold-accent);
  color: var(--color-warm-white);
}

/* ========================================
   QUANTITY SELECTOR
   ======================================== */
.quantity {
  border: 2px solid var(--color-gold-primary);
  border-radius: 4px;
  overflow: hidden;
}

.quantity__button {
  background: var(--color-warm-gray);
  color: var(--color-charcoal);
  border: none;
  padding: 0.75rem;
  transition: background var(--transition-fast);
}

.quantity__button:hover {
  background: var(--color-gold-light);
}

.quantity__input {
  border: none;
  text-align: center;
  font-weight: 600;
}

/* ========================================
   LOADING STATES
   ======================================== */
.loading-overlay {
  background: rgba(250, 249, 246, 0.95);
}

.loading-overlay__spinner {
  border-color: var(--color-gold-light);
  border-top-color: var(--color-gold-primary);
}

/* ========================================
   SOCIAL PROOF SECTION
   ======================================== */
.social-proof {
  background: var(--color-warm-gray);
  padding: var(--spacing-lg);
  border-radius: 8px;
  margin: var(--spacing-lg) 0;
}

.social-proof__title {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  text-align: center;
  margin-bottom: var(--spacing-md);
  color: var(--color-charcoal);
}

/* ========================================
   COMPLEMENTARY PRODUCTS (COMPLETE THE LOOK)
   ======================================== */
.complementary-products {
  margin: var(--spacing-xl) 0;
  padding: var(--spacing-lg);
  background: linear-gradient(to bottom, var(--color-warm-white) 0%, var(--color-warm-gray) 100%);
  border-radius: 12px;
}

.complementary-products__title {
  font-family: var(--font-heading);
  font-size: 2rem;
  text-align: center;
  margin-bottom: var(--spacing-md);
  color: var(--color-charcoal);
}

/* ========================================
   CART NOTIFICATION
   ======================================== */
.cart-notification {
  border: 2px solid var(--color-gold-primary);
  box-shadow: var(--shadow-gold-glow);
}

.cart-notification__header {
  background: linear-gradient(135deg, var(--color-gold-primary) 0%, var(--color-gold-accent) 100%);
  color: var(--color-warm-white);
}

/* ========================================
   SCARCITY & URGENCY INDICATORS
   ======================================== */
.inventory-status {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: rgba(45, 80, 22, 0.1);
  border-left: 4px solid var(--color-trust-green);
  border-radius: 4px;
  font-size: 0.875rem;
  font-weight: 600;
  margin: var(--spacing-sm) 0;
}

.inventory-status--low {
  background: rgba(196, 30, 58, 0.1);
  border-left-color: var(--color-error-red);
  color: var(--color-error-red);
}

.inventory-status--low::before {
  content: '🔥';
  margin-right: 0.25rem;
}

/* ========================================
   RESPONSIVE UTILITIES
   ======================================== */
@media screen and (min-width: 750px) {
  .mobile-only {
    display: none !important;
  }
}

@media screen and (max-width: 749px) {
  .desktop-only {
    display: none !important;
  }
}

/* ========================================
   PERFORMANCE OPTIMIZATIONS
   ======================================== */
* {
  -webkit-tap-highlight-color: transparent;
}

img {
  will-change: transform;
}

.product__media,
.card-wrapper {
  contain: layout style paint;
}
