/* ==========================================================================
   Deniz Müzik - Premium Musical Instruments & Audio Store
   Bespoke Design System Stylesheet
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@500;600;700;800&family=Playfair+Display:ital,wght@0,500;0,600;0,700;1,500&family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&display=swap');

:root {
  --cream-50: #FAF8F5;
  --cream-100: #F5F0EB;
  --cream-200: #EFE7DD;
  --cream-300: #E5DFD5;
  
  --black-950: #111111;
  --black-900: #1A1A1A;
  --black-800: #2C2C2C;
  
  --gold-500: #C5A059;
  --gold-600: #B89047;
  --gold-100: #FDF9EE;
  --gold-200: #F4E7C5;

  --border-soft: #E5DFD5;
}

body {
  font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  background-color: var(--cream-50);
  color: var(--black-950);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

.font-serif {
  font-family: 'Playfair Display', Georgia, serif;
}

.font-brand {
  font-family: 'Cinzel', serif;
}

/* Custom Slim Scrollbar */
::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}

::-webkit-scrollbar-track {
  background: var(--cream-100);
}

::-webkit-scrollbar-thumb {
  background: #C4BBB0;
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--black-800);
}

/* Luxury Card Shadows & Glow */
.card-luxury {
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.card-luxury:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 30px -10px rgba(17, 17, 17, 0.08), 0 0 1px 1px rgba(197, 160, 89, 0.25);
}

/* Free Shipping Shimmer Meter */
.shipping-bar-shine {
  position: relative;
  overflow: hidden;
}

.shipping-bar-shine::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
  animation: shine 2s infinite;
}

@keyframes shine {
  100% {
    left: 100%;
  }
}

/* Floating WhatsApp Pulsing Button */
.whatsapp-pulse {
  animation: pulse-border 2s infinite;
}

@keyframes pulse-border {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.6);
  }
  70% {
    box-shadow: 0 0 0 14px rgba(37, 211, 102, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}

/* Trust Badge Ticker Item Hover */
.trust-badge-card {
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.trust-badge-card:hover {
  transform: translateY(-2px);
  border-color: var(--gold-500);
}

/* Clean Print Receipt Styling */
@media print {
  body * {
    visibility: hidden;
  }
  #checkoutStep4, #checkoutStep4 * {
    visibility: visible;
  }
  #checkoutStep4 {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
  }
}
