/* Wrist Pro Luxury Watch Store - Custom CSS */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400..900;1,400..900&family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&display=swap');

:root {
  --bg-dark: #07090E;
  --bg-card: rgba(18, 22, 32, 0.7);
  --bg-card-hover: rgba(26, 32, 46, 0.95);
  --gold-primary: #D4AF37;
  --gold-light: #F6E27A;
  --gold-dark: #A67C1E;
  --gold-gradient: linear-gradient(135deg, #F6E27A 0%, #D4AF37 50%, #AA7C11 100%);
  --gold-glow: 0 0 20px rgba(212, 175, 55, 0.25);
  --text-main: #F3F4F6;
  --text-muted: #9CA3AF;
  --border-gold: rgba(212, 175, 55, 0.2);
  --border-gold-hover: rgba(212, 175, 55, 0.6);
  --font-heading: 'Playfair Display', serif;
  --font-body: 'Plus Jakarta Sans', sans-serif;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background-color: var(--bg-dark);
  color: var(--text-main);
  font-family: var(--font-body);
  overflow-x: hidden;
  background-image: 
    radial-gradient(circle at 15% 15%, rgba(212, 175, 55, 0.04) 0%, transparent 40%),
    radial-gradient(circle at 85% 65%, rgba(212, 175, 55, 0.03) 0%, transparent 45%);
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: #07090E;
}
::-webkit-scrollbar-thumb {
  background: #232A3B;
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--gold-primary);
}

.font-serif {
  font-family: var(--font-heading);
}

/* Gold Text Gradient */
.gold-text {
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.gold-border-glow {
  border: 1px solid var(--border-gold);
  transition: all 0.3s ease;
}
.gold-border-glow:hover {
  border-color: var(--border-gold-hover);
  box-shadow: var(--gold-glow);
}

/* Glassmorphism Card */
.glass-panel {
  background: var(--bg-card);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--border-gold);
}

.glass-header {
  background: rgba(7, 9, 14, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(212, 175, 55, 0.15);
}

/* Buttons */
.btn-gold {
  background: var(--gold-gradient);
  color: #07090E;
  font-weight: 700;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 15px rgba(212, 175, 55, 0.2);
}
.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4);
}

.btn-whatsapp {
  background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
  color: #ffffff;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.25);
}
.btn-whatsapp:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
}

/* Badge Pulse */
.pulse-green {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #25D366;
  box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
  animation: pulse-green 2s infinite;
}
@keyframes pulse-green {
  0% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
  }
  70% {
    transform: scale(1);
    box-shadow: 0 0 0 8px rgba(37, 211, 102, 0);
  }
  100% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}

/* Product Image Frame */
.product-img-wrapper {
  overflow: hidden;
  position: relative;
  background: radial-gradient(circle at center, #1E2536 0%, #0D111A 100%);
}

.product-img-wrapper img {
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.product-card:hover .product-img-wrapper img {
  transform: scale(1.08) rotate(1deg);
}

/* Modal Animations */
.modal-backdrop {
  background: rgba(4, 6, 10, 0.85);
  backdrop-filter: blur(8px);
}

.cart-drawer {
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Category Filter Tabs */
.filter-btn.active {
  background: var(--gold-gradient);
  color: #07090E;
  font-weight: 700;
  border-color: transparent;
}

/* Luxury Footer Specifics */
footer {
  background: linear-gradient(180deg, #07090E 0%, #030407 100%);
  border-top: 1px solid rgba(212, 175, 55, 0.25);
  position: relative;
}

footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60%;
  height: 1px;
  background: linear-gradient(90deg, transparent, #D4AF37, transparent);
}

.footer-social-icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(212, 175, 55, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-main);
  transition: all 0.3s ease;
}

.footer-social-icon:hover {
  background: var(--gold-gradient);
  color: #07090E;
  border-color: transparent;
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
}

/* Toast Notification */
.toast-msg {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 9999;
  background: #121824;
  border: 1px solid var(--gold-primary);
  box-shadow: 0 10px 30px rgba(0,0,0,0.5);
  border-radius: 12px;
  padding: 14px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  animation: slideUp 0.3s ease;
}

@keyframes slideUp {
  from {
    transform: translateY(100px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}
