:root {
  --maroon: #7B1A2C;
  --maroon-deep: #5C1018;
  --maroon-dark: #3D0A0F;
  --gold: #C5963A;
  --gold-light: #D4A94E;
  --gold-pale: #E8D5A3;
  --gold-bright: #F0C75E;
  --ivory: #FDF8F0;
  --cream: #FAF3E8;
  --sandalwood: #E8D5B8;
  --brown: #4A2C1A;
  --brown-light: #6B4226;
  --white: #FFFFFF;
  --text-dark: #2C1810;
  --text-medium: #5C4033;
  --text-light: #8B7355;
  --border: #E8D5B8;
  --shadow: rgba(74, 44, 26, 0.08);
  --shadow-md: rgba(74, 44, 26, 0.12);
  --shadow-lg: rgba(74, 44, 26, 0.16);
  --whatsapp: #25D366;
  --whatsapp-dark: #128C7E;
  --transition: all 0.3s ease;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Cormorant Garamond', 'Georgia', serif;
  color: var(--text-dark);
  background: var(--ivory);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Cormorant Garamond', 'Georgia', serif;
  font-weight: 600;
  line-height: 1.2;
}

p, span, a, li, label, input, textarea, select, button {
  font-family: 'Inter', 'Segoe UI', sans-serif;
}

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

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

button {
  cursor: pointer;
  border: none;
  outline: none;
  font-family: 'Inter', 'Segoe UI', sans-serif;
}

ul { list-style: none; }

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ── ANNOUNCEMENT BAR ── */
.announcement-bar {
  background: var(--maroon-deep);
  color: var(--gold-pale);
  text-align: center;
  padding: 10px 16px;
  font-size: 13px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-family: 'Inter', sans-serif;
  font-weight: 500;
}

.announcement-bar span {
  color: var(--gold-bright);
  font-weight: 700;
}

/* ── HEADER ── */
.header {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 20px var(--shadow);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 24px;
  max-width: 1400px;
  margin: 0 auto;
}

.header-logo {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-shrink: 0;
}

.logo-emblem {
  width: 52px;
  height: 52px;
  flex-shrink: 0;
}

.logo-text {
  line-height: 1.15;
}

.logo-text h1 {
  font-size: 18px;
  font-weight: 700;
  color: var(--maroon);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-family: 'Cormorant Garamond', serif;
}

.logo-text .tagline {
  font-size: 10px;
  color: var(--gold);
  letter-spacing: 2.5px;
  text-transform: uppercase;
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  margin-top: 2px;
}

.header-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.header-nav a {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-medium);
  text-transform: uppercase;
  letter-spacing: 0.8px;
  transition: var(--transition);
  font-family: 'Inter', sans-serif;
  position: relative;
}

.header-nav a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width 0.3s ease;
}

.header-nav a:hover {
  color: var(--maroon);
}

.header-nav a:hover::after {
  width: 100%;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.header-actions button,
.header-actions a {
  background: none;
  border: none;
  color: var(--text-medium);
  font-size: 20px;
  padding: 8px;
  border-radius: 8px;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
}

.header-actions button:hover,
.header-actions a:hover {
  background: var(--cream);
  color: var(--maroon);
}

.btn-whatsapp-header {
  background: var(--whatsapp) !important;
  color: var(--white) !important;
  padding: 10px 22px !important;
  border-radius: 8px !important;
  font-size: 12px !important;
  font-weight: 700 !important;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  white-space: nowrap;
  font-family: 'Inter', sans-serif;
  box-shadow: 0 2px 8px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp-header:hover {
  background: var(--whatsapp-dark) !important;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4) !important;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 8px;
  cursor: pointer;
}

.hamburger span {
  width: 24px;
  height: 2px;
  background: var(--text-dark);
  transition: var(--transition);
}

/* ── MOBILE NAV ── */
.mobile-nav {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.6);
  z-index: 2000;
  backdrop-filter: blur(4px);
}

.mobile-nav.active {
  display: block;
}

.mobile-nav-panel {
  position: absolute;
  top: 0;
  right: 0;
  width: 320px;
  max-width: 85vw;
  height: 100%;
  background: var(--white);
  padding: 24px;
  overflow-y: auto;
  animation: slideInRight 0.3s ease;
}

@keyframes slideInRight {
  from { transform: translateX(100%); }
  to { transform: translateX(0); }
}

.mobile-nav-close {
  background: none;
  border: none;
  font-size: 28px;
  color: var(--text-dark);
  position: absolute;
  top: 16px;
  right: 16px;
  padding: 8px;
}

.mobile-nav-links {
  margin-top: 48px;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.mobile-nav-links a {
  padding: 14px 0;
  font-size: 15px;
  font-weight: 600;
  color: var(--text-dark);
  border-bottom: 1px solid var(--border);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.mobile-nav-links a:hover {
  color: var(--maroon);
}

.mobile-nav-whatsapp {
  display: block;
  width: 100%;
  padding: 14px;
  background: var(--whatsapp);
  color: var(--white);
  text-align: center;
  border-radius: 10px;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-top: 24px;
}

/* ── HERO SECTION ── */
.hero {
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, var(--maroon-deep) 0%, var(--maroon-dark) 50%, #1a0a0d 100%);
  overflow: hidden;
}

.hero-bg-pattern {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.06;
  background-image: 
    radial-gradient(circle at 20% 50%, var(--gold) 1px, transparent 1px),
    radial-gradient(circle at 80% 20%, var(--gold) 1px, transparent 1px),
    radial-gradient(circle at 60% 80%, var(--gold) 1px, transparent 1px);
  background-size: 60px 60px, 80px 80px, 70px 70px;
}

.hero-glow {
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(197, 150, 58, 0.15) 0%, transparent 70%);
  top: 50%;
  right: 10%;
  transform: translateY(-50%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1400px;
  margin: 0 auto;
  padding: 80px 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero-text {
  max-width: 600px;
}

.hero-badge {
  display: inline-block;
  padding: 8px 20px;
  background: rgba(197, 150, 58, 0.15);
  border: 1px solid rgba(197, 150, 58, 0.3);
  border-radius: 30px;
  color: var(--gold-light);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 28px;
  font-family: 'Inter', sans-serif;
}

.hero h2 {
  font-size: clamp(36px, 5vw, 60px);
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 20px;
  font-weight: 700;
}

.hero h2 .gold {
  color: var(--gold-light);
  display: block;
}

.hero p {
  font-size: 17px;
  color: rgba(255,255,255,0.7);
  line-height: 1.7;
  margin-bottom: 36px;
  max-width: 500px;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 36px;
  background: var(--gold);
  color: var(--white);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  border-radius: 8px;
  transition: var(--transition);
  font-family: 'Inter', sans-serif;
  box-shadow: 0 4px 20px rgba(197, 150, 58, 0.4);
}

.btn-primary:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(197, 150, 58, 0.5);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 36px;
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.3);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  border-radius: 8px;
  transition: var(--transition);
  font-family: 'Inter', sans-serif;
}

.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(197, 150, 58, 0.1);
}

.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 36px;
  background: var(--whatsapp);
  color: var(--white);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  border-radius: 8px;
  transition: var(--transition);
  font-family: 'Inter', sans-serif;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp:hover {
  background: var(--whatsapp-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(37, 211, 102, 0.4);
}

.hero-image {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-image-frame {
  position: relative;
  width: 100%;
  max-width: 480px;
  aspect-ratio: 3/4;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.4);
}

.hero-image-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-image-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(197, 150, 58, 0.2) 0%, rgba(123, 26, 44, 0.3) 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--gold-pale);
  text-align: center;
  padding: 40px;
}

.hero-image-placeholder .icon {
  font-size: 80px;
  margin-bottom: 20px;
  opacity: 0.8;
}

.hero-image-placeholder p {
  font-size: 14px;
  opacity: 0.6;
}

.hero-ornament {
  position: absolute;
  width: 200px;
  height: 200px;
  border: 2px solid rgba(197, 150, 58, 0.15);
  border-radius: 50%;
  top: -30px;
  right: -30px;
  pointer-events: none;
}

.hero-ornament-2 {
  position: absolute;
  width: 120px;
  height: 120px;
  border: 2px solid rgba(197, 150, 58, 0.1);
  border-radius: 50%;
  bottom: -20px;
  left: -20px;
  pointer-events: none;
}

/* ── SECTION STYLES ── */
.section {
  padding: 80px 0;
}

.section-dark {
  background: var(--maroon-deep);
  color: var(--white);
}

.section-cream {
  background: var(--cream);
}

.section-header {
  text-align: center;
  margin-bottom: 56px;
}

.section-header .overline {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
  font-family: 'Inter', sans-serif;
}

.section-header h2 {
  font-size: clamp(28px, 4vw, 42px);
  color: var(--text-dark);
  margin-bottom: 16px;
  font-weight: 700;
}

.section-dark .section-header h2 {
  color: var(--white);
}

.section-header p {
  font-size: 16px;
  color: var(--text-light);
  max-width: 600px;
  margin: 0 auto;
}

.section-dark .section-header p {
  color: rgba(255,255,255,0.6);
}

.ornamental-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin: 16px 0 0;
}

.ornamental-divider .line {
  width: 60px;
  height: 1px;
  background: var(--gold);
}

.ornamental-divider .diamond {
  width: 8px;
  height: 8px;
  background: var(--gold);
  transform: rotate(45deg);
}

/* ── CATEGORY CARDS ── */
.categories-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.category-card {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  background: var(--white);
  box-shadow: 0 4px 20px var(--shadow);
  transition: var(--transition);
  cursor: pointer;
  border: 1px solid var(--border);
}

.category-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 40px var(--shadow-lg);
}

.category-card-image {
  aspect-ratio: 4/3;
  overflow: hidden;
  background: var(--cream);
  position: relative;
}

.category-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.category-card:hover .category-card-image img {
  transform: scale(1.08);
}

.category-card-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--cream) 0%, var(--sandalwood) 100%);
  color: var(--maroon);
  padding: 30px;
  text-align: center;
}

.category-card-placeholder .cat-icon {
  font-size: 48px;
  margin-bottom: 12px;
}

.category-card-body {
  padding: 20px 24px;
}

.category-card-body h3 {
  font-size: 20px;
  color: var(--text-dark);
  margin-bottom: 6px;
}

.category-card-body p {
  font-size: 13px;
  color: var(--text-light);
  margin-bottom: 14px;
}

.category-card-body .explore-link {
  font-size: 12px;
  font-weight: 700;
  color: var(--maroon);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: 'Inter', sans-serif;
  transition: var(--transition);
}

.category-card-body .explore-link:hover {
  color: var(--gold);
  gap: 10px;
}

/* ── PRODUCT GRID ── */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
}

.product-card {
  background: var(--white);
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: 0 2px 12px var(--shadow);
  transition: var(--transition);
  position: relative;
}

.product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 36px var(--shadow-md);
}

.product-card-image {
  aspect-ratio: 1;
  overflow: hidden;
  background: var(--cream);
  position: relative;
}

.product-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.product-card:hover .product-card-image img {
  transform: scale(1.06);
}

.product-card-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: linear-gradient(145deg, var(--cream) 0%, var(--sandalwood) 100%);
  color: var(--maroon);
  text-align: center;
  padding: 20px;
}

.product-card-placeholder .prod-icon {
  font-size: 40px;
  margin-bottom: 8px;
  opacity: 0.6;
}

.product-card-wishlist {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.9);
  backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: var(--text-light);
  transition: var(--transition);
  border: none;
  cursor: pointer;
  z-index: 2;
}

.product-card-wishlist:hover,
.product-card-wishlist.active {
  color: #e74c3c;
  background: var(--white);
}

.product-card-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  padding: 4px 12px;
  background: var(--maroon);
  color: var(--gold-pale);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  border-radius: 4px;
  z-index: 2;
  font-family: 'Inter', sans-serif;
}

.product-card-body {
  padding: 18px 20px 20px;
}

.product-card-body h3 {
  font-size: 17px;
  color: var(--text-dark);
  margin-bottom: 8px;
  line-height: 1.3;
}

.product-card-body h3 a:hover {
  color: var(--maroon);
}

.product-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 12px;
}

.product-meta span {
  font-size: 12px;
  color: var(--text-light);
  font-family: 'Inter', sans-serif;
  background: var(--cream);
  padding: 3px 10px;
  border-radius: 4px;
}

.product-price {
  font-size: 20px;
  font-weight: 700;
  color: var(--maroon);
  margin-bottom: 14px;
  font-family: 'Cormorant Garamond', serif;
}

.product-price .enquiry {
  font-size: 14px;
  color: var(--text-light);
  font-weight: 500;
  font-family: 'Inter', sans-serif;
}

.product-card-actions {
  display: flex;
  gap: 10px;
}

.btn-whatsapp-sm {
  flex: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 16px;
  background: var(--whatsapp);
  color: var(--white);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  border-radius: 8px;
  transition: var(--transition);
  font-family: 'Inter', sans-serif;
}

.btn-whatsapp-sm:hover {
  background: var(--whatsapp-dark);
}

.btn-view-sm {
  padding: 10px 16px;
  background: var(--cream);
  color: var(--maroon);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  border-radius: 8px;
  transition: var(--transition);
  font-family: 'Inter', sans-serif;
}

.btn-view-sm:hover {
  background: var(--sandalwood);
}

/* ── HERITAGE SECTION ── */
.heritage-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.heritage-image {
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 4/3;
  background: var(--cream);
  box-shadow: 0 12px 40px var(--shadow);
}

.heritage-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.heritage-image-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--cream) 0%, var(--sandalwood) 100%);
  color: var(--maroon);
  font-size: 80px;
}

.heritage-text .overline {
  display: block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
  font-family: 'Inter', sans-serif;
}

.heritage-text h2 {
  font-size: 36px;
  color: var(--text-dark);
  margin-bottom: 20px;
}

.heritage-text p {
  font-size: 16px;
  color: var(--text-medium);
  line-height: 1.8;
  margin-bottom: 20px;
}

/* ── WHY CHOOSE US ── */
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.why-card {
  text-align: center;
  padding: 36px 24px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(197, 150, 58, 0.15);
  border-radius: 14px;
  transition: var(--transition);
}

.why-card:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(197, 150, 58, 0.3);
  transform: translateY(-4px);
}

.why-card .icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 20px;
  background: rgba(197, 150, 58, 0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
}

.why-card h3 {
  font-size: 18px;
  color: var(--white);
  margin-bottom: 10px;
  letter-spacing: 0.5px;
}

.why-card p {
  font-size: 13px;
  color: rgba(255,255,255,0.6);
  line-height: 1.6;
}

/* ── FESTIVE BANNER ── */
.festive-banner {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 50%, var(--gold) 100%);
  padding: 80px 24px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.festive-banner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: radial-gradient(circle at 25% 25%, rgba(255,255,255,0.15) 1px, transparent 1px);
  background-size: 40px 40px;
}

.festive-banner h2 {
  font-size: clamp(28px, 4vw, 44px);
  color: var(--white);
  margin-bottom: 16px;
  position: relative;
}

.festive-banner p {
  font-size: 16px;
  color: rgba(255,255,255,0.85);
  max-width: 550px;
  margin: 0 auto 32px;
  position: relative;
}

.festive-banner .btn-primary {
  background: var(--maroon);
  box-shadow: 0 4px 20px rgba(123, 26, 44, 0.4);
  position: relative;
}

.festive-banner .btn-primary:hover {
  background: var(--maroon-deep);
  box-shadow: 0 8px 30px rgba(123, 26, 44, 0.5);
}

/* ── ABOUT SECTION ── */
.about-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.about-content h2 {
  font-size: 36px;
  color: var(--text-dark);
  margin-bottom: 24px;
}

.about-content p {
  font-size: 16px;
  color: var(--text-medium);
  line-height: 1.8;
  margin-bottom: 16px;
}

/* ── CONTACT SECTION ── */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.contact-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 36px 28px;
  text-align: center;
  transition: var(--transition);
  box-shadow: 0 2px 12px var(--shadow);
}

.contact-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 36px var(--shadow-md);
}

.contact-card .icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 20px;
  background: var(--cream);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
}

.contact-card h3 {
  font-size: 18px;
  color: var(--text-dark);
  margin-bottom: 14px;
}

.contact-card p {
  font-size: 14px;
  color: var(--text-medium);
  line-height: 1.7;
  margin-bottom: 20px;
}

.contact-card a.btn-primary,
.contact-card a.btn-whatsapp,
.contact-card .btn-primary {
  display: inline-flex;
  padding: 12px 24px;
  font-size: 12px;
}

/* ── FOOTER ── */
.footer {
  background: var(--maroon-dark);
  color: rgba(255,255,255,0.7);
  padding: 64px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 40px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(197, 150, 58, 0.15);
}

.footer-brand .logo-text h2 {
  font-size: 20px;
  color: var(--white);
  letter-spacing: 1.5px;
}

.footer-brand .logo-text .tagline {
  font-size: 11px;
  color: var(--gold);
  letter-spacing: 2px;
  margin-top: 4px;
}

.footer-brand p {
  margin-top: 16px;
  font-size: 14px;
  line-height: 1.7;
}

.footer h4 {
  font-size: 14px;
  font-weight: 700;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 20px;
  font-family: 'Inter', sans-serif;
}

.footer-links a {
  display: block;
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  padding: 6px 0;
  transition: var(--transition);
}

.footer-links a:hover {
  color: var(--gold);
  padding-left: 6px;
}

.footer-contact p {
  font-size: 14px;
  margin-bottom: 10px;
  line-height: 1.6;
}

.footer-contact a {
  color: var(--gold);
}

.footer-buttons {
  display: flex;
  gap: 10px;
  margin-top: 16px;
  flex-wrap: wrap;
}

.footer-buttons a {
  padding: 8px 18px;
  border-radius: 8px;
  font-size: 12px;
  font-weight: 600;
  transition: var(--transition);
  font-family: 'Inter', sans-serif;
}

.footer-buttons .fb-wa {
  background: var(--whatsapp);
  color: var(--white);
}

.footer-buttons .fb-em {
  background: var(--gold);
  color: var(--white);
}

.footer-buttons .fb-dir {
  background: rgba(255,255,255,0.1);
  color: var(--white);
}

.footer-buttons a:hover {
  opacity: 0.85;
}

.footer-bottom {
  padding: 24px 0;
  text-align: center;
  font-size: 13px;
  color: rgba(255,255,255,0.4);
}

/* ── FLOATING WHATSAPP ── */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 900;
}

.whatsapp-float a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  background: var(--whatsapp);
  color: var(--white);
  border-radius: 50%;
  font-size: 30px;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  transition: var(--transition);
  animation: pulse-wa 2s infinite;
}

.whatsapp-float a:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 30px rgba(37, 211, 102, 0.5);
}

@keyframes pulse-wa {
  0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.4); }
  70% { box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
  100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

.whatsapp-float-mobile {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 900;
  padding: 12px 16px;
  background: var(--white);
  border-top: 1px solid var(--border);
  box-shadow: 0 -4px 20px var(--shadow);
}

.whatsapp-float-mobile a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 14px;
  background: var(--whatsapp);
  color: var(--white);
  border-radius: 10px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-family: 'Inter', sans-serif;
}

/* ── CATEGORY PAGE ── */
.page-hero {
  background: linear-gradient(135deg, var(--maroon-deep) 0%, var(--maroon-dark) 100%);
  padding: 60px 24px;
  text-align: center;
  position: relative;
}

.page-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.05;
  background-image: radial-gradient(circle, var(--gold) 1px, transparent 1px);
  background-size: 30px 30px;
}

.page-hero h1 {
  font-size: clamp(28px, 4vw, 44px);
  color: var(--white);
  position: relative;
  margin-bottom: 12px;
}

.page-hero p {
  font-size: 16px;
  color: rgba(255,255,255,0.65);
  position: relative;
  max-width: 500px;
  margin: 0 auto;
}

.page-hero .breadcrumb {
  position: relative;
  margin-bottom: 16px;
  font-size: 13px;
  color: rgba(255,255,255,0.4);
  font-family: 'Inter', sans-serif;
}

.page-hero .breadcrumb a {
  color: var(--gold);
}

/* ── FILTERS BAR ── */
.filters-bar {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 20px 24px;
  margin-bottom: 32px;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
}

.filters-bar label {
  font-size: 12px;
  font-weight: 600;
  color: var(--text-medium);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-family: 'Inter', sans-serif;
}

.filters-bar select {
  padding: 8px 32px 8px 14px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--cream);
  color: var(--text-dark);
  font-size: 13px;
  font-family: 'Inter', sans-serif;
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%234A2C1A' viewBox='0 0 16 16'%3E%3Cpath d='M8 11L3 6h10l-5 5z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 10px center;
}

.filters-bar select:focus {
  outline: 2px solid var(--gold);
  outline-offset: 1px;
}

.filter-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

/* ── PRODUCT DETAIL ── */
.product-detail {
  padding: 60px 0;
}

.product-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.product-gallery {
  border-radius: 16px;
  overflow: hidden;
  background: var(--cream);
  aspect-ratio: 1;
  position: sticky;
  top: 120px;
}

.product-gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-gallery-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--maroon);
  font-size: 80px;
}

.product-info h1 {
  font-size: 32px;
  color: var(--text-dark);
  margin-bottom: 12px;
}

.product-info .product-price-lg {
  font-size: 28px;
  font-weight: 700;
  color: var(--maroon);
  margin-bottom: 24px;
  font-family: 'Cormorant Garamond', serif;
}

.product-specs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 28px;
}

.spec-item {
  background: var(--cream);
  padding: 14px 18px;
  border-radius: 10px;
}

.spec-item label {
  display: block;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-light);
  margin-bottom: 4px;
  font-family: 'Inter', sans-serif;
}

.spec-item span {
  font-size: 15px;
  color: var(--text-dark);
  font-weight: 500;
}

.product-description {
  margin-bottom: 28px;
}

.product-description h3 {
  font-size: 18px;
  color: var(--text-dark);
  margin-bottom: 10px;
}

.product-description p {
  font-size: 15px;
  color: var(--text-medium);
  line-height: 1.7;
}

.product-suitable {
  margin-bottom: 28px;
}

.product-suitable h3 {
  font-size: 18px;
  color: var(--text-dark);
  margin-bottom: 10px;
}

.product-suitable-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.product-suitable-tags span {
  padding: 6px 14px;
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: 6px;
  font-size: 13px;
  color: var(--text-medium);
}

.product-actions-lg {
  display: flex;
  gap: 14px;
  margin-top: 28px;
}

.product-actions-lg .btn-whatsapp {
  flex: 1;
  justify-content: center;
  padding: 18px 36px;
}

.product-actions-lg .btn-outline-dark {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 18px 28px;
  background: transparent;
  color: var(--maroon);
  border: 2px solid var(--maroon);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  border-radius: 8px;
  transition: var(--transition);
  font-family: 'Inter', sans-serif;
}

.product-actions-lg .btn-outline-dark:hover {
  background: var(--maroon);
  color: var(--white);
}

/* ── SEARCH PAGE ── */
.search-section {
  max-width: 700px;
  margin: 0 auto;
  padding: 40px 24px;
}

.search-input-wrapper {
  position: relative;
}

.search-input-wrapper input {
  width: 100%;
  padding: 18px 56px 18px 24px;
  border: 2px solid var(--border);
  border-radius: 12px;
  font-size: 16px;
  font-family: 'Inter', sans-serif;
  background: var(--white);
  color: var(--text-dark);
  transition: var(--transition);
}

.search-input-wrapper input:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 4px rgba(197, 150, 58, 0.1);
}

.search-input-wrapper .search-icon {
  position: absolute;
  right: 18px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 20px;
  color: var(--text-light);
}

.search-results-count {
  font-size: 14px;
  color: var(--text-light);
  margin: 20px 0;
  font-family: 'Inter', sans-serif;
}

/* ── VIEW ALL LINK ── */
.view-all-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 700;
  color: var(--maroon);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-top: 32px;
  font-family: 'Inter', sans-serif;
  transition: var(--transition);
}

.view-all-link:hover {
  color: var(--gold);
  gap: 12px;
}

/* ── CTA BANNER ── */
.cta-banner {
  background: var(--cream);
  padding: 60px 24px;
  text-align: center;
}

.cta-banner h2 {
  font-size: 28px;
  color: var(--text-dark);
  margin-bottom: 12px;
}

.cta-banner p {
  color: var(--text-light);
  margin-bottom: 24px;
}

/* ── SVG LOGO ── */
.logo-svg {
  width: 52px;
  height: 52px;
}

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .header-nav {
    display: none;
  }
  .hamburger {
    display: flex;
  }
  .hero-content {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 40px;
  }
  .hero-text {
    max-width: 100%;
  }
  .hero p {
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
  }
  .hero-buttons {
    justify-content: center;
  }
  .hero-image {
    display: none;
  }
  .categories-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .heritage-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .contact-grid {
    grid-template-columns: 1fr;
    max-width: 500px;
    margin: 0 auto;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
  .product-detail-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .product-gallery {
    position: static;
  }
}

@media (max-width: 768px) {
  .container {
    padding: 0 16px;
  }
  .section {
    padding: 48px 0;
  }
  .categories-grid {
    grid-template-columns: 1fr 1fr;
    gap: 14px;
  }
  .category-card-body {
    padding: 14px 16px;
  }
  .category-card-body h3 {
    font-size: 15px;
  }
  .products-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
  }
  .product-card-body {
    padding: 12px 14px 14px;
  }
  .product-card-body h3 {
    font-size: 14px;
  }
  .product-price {
    font-size: 16px;
  }
  .why-grid {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .filters-bar {
    padding: 16px;
  }
  .filter-group {
    flex: 1 1 45%;
    min-width: 140px;
  }
  .whatsapp-float {
    display: none;
  }
  .whatsapp-float-mobile {
    display: block;
  }
  .product-suitable-tags {
    gap: 6px;
  }
  .product-specs {
    grid-template-columns: 1fr;
  }
  .product-actions-lg {
    flex-direction: column;
  }
}

@media (max-width: 480px) {
  .categories-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .category-card {
    display: flex;
    flex-direction: row;
  }
  .category-card-image {
    width: 120px;
    flex-shrink: 0;
    aspect-ratio: auto;
  }
  .products-grid {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }
  .product-card-body h3 {
    font-size: 13px;
  }
  .product-meta span {
    font-size: 10px;
    padding: 2px 6px;
  }
  .btn-whatsapp-sm {
    padding: 8px 10px;
    font-size: 10px;
  }
  .btn-view-sm {
    padding: 8px 10px;
    font-size: 10px;
  }
  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }
  .btn-primary, .btn-outline, .btn-whatsapp {
    width: 100%;
    justify-content: center;
  }
}

/* ── PAGE TRANSITIONS ── */
.fade-in {
  animation: fadeIn 0.6s ease forwards;
}

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

/* ── SCROLLBAR ── */
::-webkit-scrollbar {
  width: 8px;
}

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

::-webkit-scrollbar-thumb {
  background: var(--sandalwood);
  border-radius: 4px;
}

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

/* ── EMPTY STATE ── */
.empty-state {
  text-align: center;
  padding: 60px 24px;
}

.empty-state .icon {
  font-size: 60px;
  margin-bottom: 16px;
  opacity: 0.5;
}

.empty-state h3 {
  font-size: 22px;
  color: var(--text-dark);
  margin-bottom: 8px;
}

.empty-state p {
  color: var(--text-light);
}

/* ── COLLECTION HEADER ── */
.collection-preview {
  margin-bottom: 32px;
}

.collection-preview .section-header {
  margin-bottom: 32px;
}

/* ── BACK LINK ── */
.back-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--text-light);
  margin-bottom: 16px;
  font-family: 'Inter', sans-serif;
  transition: var(--transition);
}

.back-link:hover {
  color: var(--maroon);
}
