/* -------------------------------------------------------------
   SILHOUETTE & CURVES - HIGH CONTRAST LUXURY EDITORIAL THEME
-------------------------------------------------------------- */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,600;0,700;0,900;1,400&family=Plus+Jakarta+Sans:wght@400;500;600;700;800&display=swap');

:root {
  --primary-gold: #C59B27;
  --primary-gold-dark: #9E7B1A;
  --dark-navy: #0F172A;
  --text-main: #1E293B;
  --text-muted: #64748B;
  --border-light: #E2E8F0;
}

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

body {
  font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  color: #1E293B;
  background-color: #F8FAFC;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, .font-serif {
  font-family: 'Playfair Display', Georgia, serif;
}

/* Contrast Guaranteed */
.text-slate-900 { color: #0F172A !important; }
.text-slate-800 { color: #1E293B !important; }
.text-slate-700 { color: #334155 !important; }
.text-slate-600 { color: #475569 !important; }
.text-slate-500 { color: #64748B !important; }
.text-gold { color: #B48318 !important; }
.text-emerald-700 { color: #047857 !important; }
.bg-white { background-color: #FFFFFF !important; }
.bg-slate-50 { background-color: #F8FAFC !important; }
.bg-slate-900 { background-color: #0F172A !important; }

/* Buttons */
.btn-gold {
  background: linear-gradient(135deg, #D4AF37 0%, #B8860B 100%);
  color: #FFFFFF !important;
  font-weight: 700;
  border-radius: 9999px;
  box-shadow: 0 8px 20px -3px rgba(184, 134, 11, 0.4);
  transition: all 0.25s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  cursor: pointer;
  border: none;
}

.btn-gold:hover {
  background: linear-gradient(135deg, #C29B27 0%, #9E7307 100%);
  box-shadow: 0 12px 25px -3px rgba(184, 134, 11, 0.55);
  transform: translateY(-2px);
}

.btn-dark {
  background-color: #0F172A;
  color: #FFFFFF !important;
  font-weight: 700;
  border-radius: 9999px;
  transition: all 0.2s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  border: none;
  cursor: pointer;
}

.btn-dark:hover {
  background-color: #1E293B;
  transform: translateY(-1px);
}

/* Badges */
.badge-gold {
  background-color: #FEF3C7;
  color: #92400E !important;
  border: 1px solid #FDE68A;
  font-weight: 700;
  border-radius: 9999px;
}

.badge-winner {
  background: linear-gradient(135deg, #D4AF37 0%, #9E7307 100%);
  color: #FFFFFF !important;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-radius: 9999px;
  box-shadow: 0 4px 12px rgba(180, 130, 20, 0.3);
}

/* Product Cards */
.product-card {
  border: 1px solid #E2E8F0;
  border-radius: 1.25rem;
  background-color: #FFFFFF;
  transition: all 0.3s ease;
}

.product-card:hover {
  border-color: #CBD5E1;
  box-shadow: 0 20px 35px -10px rgba(15, 23, 42, 0.08);
}

.product-card.winner {
  border: 2px solid #D4AF37;
  position: relative;
  box-shadow: 0 20px 40px -15px rgba(212, 175, 55, 0.25);
}

/* Coupon Box */
.coupon-box {
  background: #FFFDF8;
  border: 2px dashed #D97706;
  border-radius: 1.25rem;
}

/* Comparison Table */
.comparison-table-wrapper {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.comparison-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  min-width: 620px;
}

.comparison-table th, .comparison-table td {
  padding: 1.1rem 1.25rem;
  border-bottom: 1px solid #E2E8F0;
  text-align: left;
}

.comparison-table th {
  background-color: #F8FAFC;
  font-weight: 700;
  color: #0F172A;
}

.comparison-table tr:last-child td {
  border-bottom: none;
}

/* Toast */
#toast {
  position: fixed;
  bottom: 5.5rem;
  right: 1.5rem;
  z-index: 9999;
  background-color: #0F172A;
  color: #FFFFFF;
  padding: 0.9rem 1.6rem;
  border-radius: 9999px;
  box-shadow: 0 15px 30px rgba(0,0,0,0.25);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  transform: translateY(200%);
  opacity: 0;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

#toast.show {
  transform: translateY(0);
  opacity: 1;
}

/* Sticky Mobile Bar */
.sticky-mobile-bar {
  display: none;
}

@media (max-width: 768px) {
  .sticky-mobile-bar {
    display: block;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(12px);
    border-top: 1px solid #E2E8F0;
    box-shadow: 0 -4px 25px rgba(0,0,0,0.09);
    padding: 0.75rem 1rem;
  }
}
