:root {
  --primary: #591d30;      /* Deep Plum / Burgundy matching the logo */
  --primary-light: #73263e;/* Slightly lighter plum */
  --secondary: #a66b7c;    /* Rose Gold / Mauve matching the logo */
  --secondary-light: #c293a0;/* Lighter rose gold */
  --accent: #d4af37;       /* Luxurious Gold */
  --accent-light: #f4e8cb; /* Soft Champagne Gold */
  --bg-color: #fdfbf7;     /* Off-white silk cream background */
  --bg-light: #faf6f0;     /* Muted section background */
  --text: #2c2527;         /* Soft warm off-black for text */
  --text-light: #6e6466;   /* Medium brown-gray for metadata */
  --border-color: #ede6dc; /* Soft beige/gold border */
}

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

body {
  font-family: 'Montserrat', sans-serif;
  background: var(--bg-color);
  color: var(--text);
  overflow-x: hidden;
}

/* Premium Typography Rules */
h1, h2, h3, h4, h5, h6, .heading-font {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500;
  letter-spacing: 0.05em;
}

.gold-text { color: var(--accent); }
.gold-bg { background: var(--accent); }
.gold-border { border-color: var(--accent); }

/* Luxury gradients */
.luxury-gradient {
  background: linear-gradient(135deg, var(--primary) 0%, #300f19 100%);
}

.luxury-gradient-gold {
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
}

.glass {
  background: rgba(253, 251, 247, 0.9);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(212, 175, 55, 0.15);
}

.glass-dark {
  background: rgba(89, 29, 48, 0.85);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: var(--bg-light);
}
::-webkit-scrollbar-thumb {
  background: var(--primary-light);
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--accent);
}

/* Custom Swiper styles */
#hero-swiper .swiper-pagination-bullet {
  background: #fff;
  opacity: 0.5;
  width: 10px;
  height: 10px;
  transition: all 0.3s ease;
}
#hero-swiper .swiper-pagination-bullet-active {
  background: var(--accent);
  opacity: 1;
  width: 24px;
  border-radius: 5px;
}

/* Ken Burns effect for Hero Slider */
.swiper-slide-active img.ken-burns {
  animation: kenburns 8s ease forwards;
}
@keyframes kenburns {
  0% { transform: scale(1); }
  100% { transform: scale(1.08); }
}

/* Animations */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Premium Product Card Styling */
.product-card {
  position: relative;
  background: #ffffff;
  border: 1px solid var(--border-color);
  transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
  overflow: hidden;
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 35px rgba(89, 29, 48, 0.08);
  border-color: var(--secondary);
}

.product-card .quick-add-btn {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--primary);
  color: #fff;
  text-align: center;
  padding: 12px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transform: translateY(100%);
  transition: transform 0.3s cubic-bezier(0.25, 1, 0.5, 1);
  z-index: 10;
}

.product-card:hover .quick-add-btn {
  transform: translateY(0);
}

/* Buttons */
.btn-premium {
  position: relative;
  overflow: hidden;
  background: var(--primary);
  color: #fff;
  border: 1px solid var(--primary);
  padding: 14px 28px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  transition: all 0.3s ease;
  z-index: 1;
  border-radius: 0;
  cursor: pointer;
}

.btn-premium::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: 0.5s;
  z-index: -1;
}

.btn-premium:hover::before {
  left: 100%;
}

.btn-premium:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
  box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
}

.btn-premium-outline {
  background: transparent;
  color: var(--primary);
  border: 1px solid var(--primary);
  padding: 14px 28px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  transition: all 0.3s ease;
  border-radius: 0;
}

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

/* Navigation Link Underline Hover */
.nav-link {
  position: relative;
  transition: color 0.3s ease;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 50%;
  width: 0;
  height: 1px;
  background: var(--accent);
  transition: all 0.3s ease;
  transform: translateX(-50%);
}
.nav-link:hover::after {
  width: 100%;
}
.nav-link:hover {
  color: var(--secondary) !important;
}

/* Category Grid Item Overlay */
.category-overlay-card {
  transition: all 0.5s ease;
}
.category-overlay-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 40%, rgba(89, 29, 48, 0.8) 100%);
  opacity: 0.6;
  transition: opacity 0.5s ease;
  z-index: 1;
}
.category-overlay-card:hover::before {
  opacity: 0.85;
}
.category-overlay-card span {
  position: relative;
  z-index: 2;
}

/* Elegant Section Title Underlines */
.section-title {
  position: relative;
  display: inline-block;
  padding-bottom: 15px;
}
.section-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 2px;
  background: var(--accent);
}
.section-title::before {
  content: '✦';
  position: absolute;
  bottom: -9px;
  left: 50%;
  transform: translateX(-50%);
  color: var(--accent);
  font-size: 14px;
  background: var(--bg-color);
  padding: 0 10px;
}

/* Category Grid Button */
.category-btn {
  display: inline-block;
  background: rgba(253, 251, 247, 0.96) !important;
  color: var(--primary) !important;
  border: 1px solid var(--border-color) !important;
  padding: 10px 22px !important;
  font-size: 11px !important;
  font-weight: 700 !important;
  letter-spacing: 0.15em !important;
  text-transform: uppercase !important;
  box-shadow: 0 4px 12px rgba(89, 29, 48, 0.15) !important;
  transition: all 0.3s ease !important;
  font-family: 'Montserrat', sans-serif !important;
  border-radius: 0 !important;
}
.category-overlay-card:hover .category-btn {
  background: var(--primary) !important;
  color: #ffffff !important;
  border-color: var(--primary) !important;
  box-shadow: 0 4px 20px rgba(89, 29, 48, 0.3) !important;
}

/* Site Header Row Custom Heights */
.site-header-row {
  height: 70px !important;
  width: 100%;
}
@media (min-width: 768px) {
  .site-header-row {
    height: 95px !important;
  }
}
@media (min-width: 1024px) {
  .site-header-row {
    height: 110px !important;
  }
}

/* Site Header Logo Custom Sizes */
.site-header-logo {
  height: 50px !important;
  width: auto !important;
  object-fit: contain !important;
}
@media (min-width: 768px) {
  .site-header-logo {
    height: 75px !important;
  }
}
@media (min-width: 1024px) {
  .site-header-logo {
    height: 85px !important;
  }
}
