/* ==========================================================================
   AGGARWAL JEWELLERS — BASE STYLES & TYPOGRAPHY
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;0,700;1,400;1,600&family=Inter:wght@300;400;500;600;700&family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&family=Poppins:wght@300;400;500;600;700&display=swap');

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

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  color: var(--dark-text);
  background-color: var(--ivory);
  line-height: 1.6;
  overflow-x: hidden;
}

/* Luxury Custom Scrollbar */
::-webkit-scrollbar {
  width: 9px;
  height: 9px;
}
::-webkit-scrollbar-track {
  background: var(--cream);
}
::-webkit-scrollbar-thumb {
  background: var(--premium-gold);
  border-radius: var(--radius-full);
}
::-webkit-scrollbar-thumb:hover {
  background: var(--primary-burgundy);
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--primary-burgundy);
  font-weight: var(--fw-semibold);
  line-height: 1.25;
  letter-spacing: 0.02em;
}

h1 {
  font-size: clamp(2.2rem, 5vw, 3.8rem);
}

h2 {
  font-size: clamp(1.8rem, 3.8vw, 2.75rem);
}

h3 {
  font-size: clamp(1.35rem, 2.5vw, 1.85rem);
}

h4 {
  font-size: 1.25rem;
}

h5 {
  font-size: 1.1rem;
}

h6 {
  font-size: 0.95rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

p {
  color: var(--secondary-text);
  margin-bottom: 1rem;
}

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition-base);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

ul, ol {
  list-style: none;
}

button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
  color: inherit;
  outline: none;
  border: none;
}

button {
  cursor: pointer;
  background: none;
}

/* Layout Containers */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin-left: auto;
  margin-right: auto;
  padding-left: 24px;
  padding-right: 24px;
}

.container-fluid {
  width: 100%;
  max-width: var(--container-fluid);
  margin-left: auto;
  margin-right: auto;
  padding-left: 24px;
  padding-right: 24px;
}

.container-narrow {
  width: 100%;
  max-width: 960px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
}

/* Section Header Styles */
.section-header {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 45px auto;
  position: relative;
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-accent);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-weight: var(--fw-semibold);
  color: var(--premium-gold);
  margin-bottom: 10px;
}

.section-tag i {
  font-size: 0.8em;
}

.section-title {
  color: var(--primary-burgundy);
  margin-bottom: 12px;
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--secondary-text);
  line-height: 1.6;
  margin-bottom: 0;
}

.gold-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin: 14px auto 16px auto;
}

.gold-divider::before,
.gold-divider::after {
  content: '';
  height: 1px;
  width: 50px;
  background: var(--gold-gradient);
}

.gold-divider i {
  color: var(--premium-gold);
  font-size: 0.75rem;
}

/* Luxury Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 28px;
  font-family: var(--font-accent);
  font-size: 0.88rem;
  font-weight: var(--fw-semibold);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: var(--radius-xs);
  transition: var(--transition-base);
  position: relative;
  overflow: hidden;
}

.btn-gold {
  background: var(--gold-gradient);
  color: var(--deep-wine);
  box-shadow: 0 4px 15px rgba(212, 160, 23, 0.3);
  border: 1px solid var(--light-gold);
}

.btn-gold:hover {
  background: linear-gradient(135deg, #F4C95D 0%, #D4A017 100%);
  color: var(--deep-wine);
  box-shadow: 0 6px 20px rgba(212, 160, 23, 0.45);
  transform: translateY(-2px);
}

.btn-burgundy {
  background: var(--burgundy-gradient);
  color: var(--champagne);
  border: 1px solid rgba(244, 201, 93, 0.3);
  box-shadow: 0 4px 15px rgba(109, 7, 17, 0.3);
}

.btn-burgundy:hover {
  background: linear-gradient(135deg, #6D0711 0%, #8e101d 100%);
  color: #fff;
  border-color: var(--light-gold);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(109, 7, 17, 0.45);
}

.btn-outline-gold {
  background: transparent;
  color: var(--premium-gold);
  border: 1px solid var(--premium-gold);
}

.btn-outline-gold:hover {
  background: var(--gold-gradient);
  color: var(--deep-wine);
  border-color: transparent;
  transform: translateY(-2px);
}

.btn-outline-white {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.6);
}

.btn-outline-white:hover {
  background: #fff;
  color: var(--primary-burgundy);
  border-color: #fff;
}

.btn-sm {
  padding: 8px 18px;
  font-size: 0.78rem;
}

.btn-lg {
  padding: 16px 36px;
  font-size: 0.95rem;
}

/* Badges */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 4px 10px;
  font-family: var(--font-accent);
  font-size: 0.7rem;
  font-weight: var(--fw-semibold);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border-radius: var(--radius-xs);
}

.badge-new {
  background: var(--primary-burgundy);
  color: var(--champagne);
}

.badge-bestseller {
  background: var(--premium-gold);
  color: var(--deep-wine);
}

.badge-exclusive {
  background: var(--deep-wine);
  color: var(--light-gold);
  border: 1px solid rgba(244, 201, 93, 0.4);
}

.badge-purity {
  background: var(--cream);
  color: var(--dark-text);
  border: 1px solid var(--border-gold);
  font-weight: var(--fw-medium);
}

/* Section Common Spacing */
.section-padding {
  padding: 80px 0;
}

.section-padding-sm {
  padding: 50px 0;
}

.bg-cream {
  background-color: var(--cream);
}

.bg-ivory {
  background-color: var(--ivory);
}

.bg-burgundy {
  background-color: var(--primary-burgundy);
  color: #fff;
}

.bg-wine {
  background-color: var(--deep-wine);
  color: #fff;
}

.bg-champagne {
  background-color: var(--champagne-light);
}

/* Breadcrumb */
.breadcrumb-wrapper {
  background: var(--cream);
  border-bottom: 1px solid var(--border-color);
  padding: 14px 0;
}

.breadcrumb-list {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 0.85rem;
  color: var(--secondary-text);
}

.breadcrumb-list a:hover {
  color: var(--primary-burgundy);
}

.breadcrumb-separator {
  color: var(--premium-gold);
  font-size: 0.7rem;
}

.breadcrumb-current {
  color: var(--primary-burgundy);
  font-weight: var(--fw-semibold);
}

/* Keyframe animations */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes pulseGold {
  0% { box-shadow: 0 0 0 0 rgba(212, 160, 23, 0.4); }
  70% { box-shadow: 0 0 0 10px rgba(212, 160, 23, 0); }
  100% { box-shadow: 0 0 0 0 rgba(212, 160, 23, 0); }
}
