@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;500;600;700;800&family=Montserrat:wght@300;400;500;600;700&display=swap');

/* ==========================================
   LUXURY DESIGN TOKENS & VARIABLE SYSTEM
   ========================================== */
:root {
  /* Colors */
  --bg-primary: #ffffff;
  --bg-secondary: #FAF9F6; /* Soft Cream / Alabaster */
  --primary-gold: #D4AF37;
  --primary-gold-rgb: 212, 175, 55;
  --dark-gold: #AA771C;
  --light-gold: #FCF6BA;
  --accent-maroon: #4A0E17; /* Deep Royal Maroon */
  --accent-maroon-rgb: 74, 14, 23;
  --text-dark: #111111; /* Rich Off-black */
  --text-light: #ffffff;
  --text-muted: #666666;
  --border-color: rgba(212, 175, 55, 0.15);
  
  /* Fonts */
  --font-luxury: 'Cinzel', serif;
  --font-body: 'Montserrat', sans-serif;
  
  /* Layout & Spacing */
  --container-width: 1320px;
  --transition-smooth: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  --transition-fast: all 0.2s ease;
  
  /* Glassmorphism */
  --glass-bg: rgba(255, 255, 255, 0.75);
  --glass-bg-dark: rgba(17, 17, 17, 0.8);
  --glass-border: rgba(212, 175, 55, 0.2);
  --glass-shadow: 0 15px 35px rgba(0, 0, 0, 0.05), 0 1px 2px rgba(212, 175, 55, 0.1);
  --luxury-shadow: 0 20px 40px rgba(0, 0, 0, 0.08), 0 1px 3px rgba(212, 175, 55, 0.1);
  --glow-shadow: 0 0 20px rgba(212, 175, 55, 0.4);
}

/* ==========================================
   RESET & SYSTEM BASE
   ========================================== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

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

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

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: var(--bg-secondary);
}
::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, var(--primary-gold), var(--dark-gold));
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--dark-gold);
}

/* Typography Base */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-luxury);
  font-weight: 600;
  letter-spacing: 1px;
  color: var(--text-dark);
}

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

ul {
  list-style: none;
}

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

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

/* ==========================================
   UTILITY & STRUCTURAL COMPONENTS
   ========================================== */
.container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 2rem;
}

.section-padding {
  padding: 8rem 0;
}

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

.text-center {
  text-align: center;
}

/* Section Headers */
.section-header {
  margin-bottom: 5rem;
  position: relative;
}

.section-header .subtitle {
  font-family: var(--font-body);
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 4px;
  color: var(--primary-gold);
  margin-bottom: 0.8rem;
  font-weight: 600;
  display: block;
}

.section-header h2 {
  font-size: 2.5rem;
  position: relative;
  display: inline-block;
  padding-bottom: 1.5rem;
  margin-bottom: 1.5rem;
}

.section-header h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--primary-gold), transparent);
}

.section-header h2::before {
  content: '✦';
  position: absolute;
  bottom: -7px;
  left: 50%;
  transform: translateX(-50%);
  color: var(--primary-gold);
  font-size: 0.8rem;
  background: var(--bg-primary);
  padding: 0 8px;
}

.bg-cream .section-header h2::before {
  background: var(--bg-secondary);
}

/* Premium Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 2.2rem;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  border-radius: 50px;
  cursor: pointer;
  transition: var(--transition-smooth);
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.btn-gold {
  background: linear-gradient(135deg, #BF953F 0%, #FCF6BA 25%, #B38728 50%, #FBF5B7 75%, #AA771C 100%);
  color: #111;
  box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

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

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

.btn-gold:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(212, 175, 55, 0.5);
  color: #000;
}

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

.btn-outline:hover {
  background: var(--primary-gold);
  color: #111;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(212, 175, 55, 0.2);
}

.btn-maroon {
  background: var(--accent-maroon);
  color: var(--text-light);
  border: 1px solid var(--accent-maroon);
  box-shadow: 0 4px 15px rgba(74, 14, 23, 0.3);
}

.btn-maroon:hover {
  background: transparent;
  color: var(--accent-maroon);
  transform: translateY(-3px);
}

/* Scroll Progress Bar */
#scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  width: 0%;
  height: 4px;
  background: linear-gradient(90deg, var(--accent-maroon), var(--primary-gold), var(--accent-maroon));
  z-index: 10000;
  transition: width 0.1s ease-out;
}

/* Floating Particles Background */
#particles-js {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
}

/* ==========================================
   NAVIGATION
   ========================================== */
.header-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  transition: var(--transition-smooth);
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.8rem 4rem;
  background: transparent;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  transition: var(--transition-smooth);
}

/* Sticky Shrinking Header states */
.header-wrapper.scrolled {
  background: var(--glass-bg);
  backdrop-filter: blur(15px);
  border-bottom: 1px solid var(--border-color);
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.05);
}

.header-wrapper.scrolled .navbar {
  padding: 1rem 4rem;
}

.header-wrapper.scrolled .logo h1 {
  color: var(--text-dark);
}

.header-wrapper.scrolled .nav-links a {
  color: var(--text-dark);
}

.header-wrapper.scrolled .nav-links a:hover, 
.header-wrapper.scrolled .nav-links a.active {
  color: var(--primary-gold);
}

.logo {
  display: flex;
  align-items: center;
}

.logo h1 {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--text-light);
  letter-spacing: 2px;
  text-transform: uppercase;
  transition: var(--transition-smooth);
}

.logo h1 span {
  color: var(--primary-gold);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2.2rem;
}

.nav-links a {
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  position: relative;
  padding: 0.5rem 0;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background-color: var(--primary-gold);
  transition: var(--transition-smooth);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--primary-gold);
}

.navbar-right {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.icon-btn {
  background: transparent;
  color: var(--text-light);
  font-size: 1.1rem;
  cursor: pointer;
  transition: var(--transition-fast);
  padding: 0.5rem;
  position: relative;
}

.header-wrapper.scrolled .icon-btn {
  color: var(--text-dark);
}

.icon-btn:hover {
  color: var(--primary-gold) !important;
  transform: scale(1.1);
}

.badge {
  position: absolute;
  top: 0;
  right: 0;
  background-color: var(--accent-maroon);
  color: white;
  font-size: 0.65rem;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
}

/* Mobile Toggle */
.hamburger {
  display: none;
  cursor: pointer;
  background: transparent;
  border: none;
}

.hamburger span {
  display: block;
  width: 25px;
  height: 2px;
  background-color: var(--text-light);
  margin: 5px 0;
  transition: var(--transition-smooth);
}

.header-wrapper.scrolled .hamburger span {
  background-color: var(--text-dark);
}

/* Hamburger active transformation */
.hamburger.active span:nth-child(1) {
  transform: rotate(-45deg) translate(-5px, 6px);
}
.hamburger.active span:nth-child(2) {
  opacity: 0;
}
.hamburger.active span:nth-child(3) {
  transform: rotate(45deg) translate(-5px, -6px);
}

/* ==========================================
   1 HERO SECTION
   ========================================== */
.hero {
  height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(17, 17, 17, 0.95), rgba(74, 14, 23, 0.85));
  overflow: hidden;
}

.hero-parallax-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('../images/hero.png');
  background-size: cover;
  background-position: center;
  opacity: 0.35;
  transform: scale(1.05);
  transition: transform 0.1s ease-out;
  z-index: 0;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at center, transparent 30%, rgba(17, 17, 17, 0.8) 100%);
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 10;
  max-width: 900px;
  padding: 0 2rem;
  color: var(--text-light);
}

.hero-subtitle-container {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 2rem;
}

.hero-subtitle-line {
  width: 40px;
  height: 1px;
  background-color: var(--primary-gold);
}

.hero-subtitle {
  font-family: var(--font-body);
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 5px;
  color: var(--primary-gold);
  font-weight: 500;
}

.hero-content h2 {
  font-size: 4.2rem;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  color: var(--text-light);
  font-weight: 400;
  text-shadow: 0 4px 10px rgba(0,0,0,0.4);
}

.hero-content h2 span {
  color: var(--primary-gold);
  font-family: var(--font-luxury);
  display: block;
  font-weight: 700;
  background: linear-gradient(135deg, #FCF6BA, #D4AF37, #AA771C);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-content p {
  font-size: 1.1rem;
  margin-bottom: 3.5rem;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 300;
  letter-spacing: 1px;
  max-width: 650px;
  margin-left: auto;
  margin-right: auto;
}

.hero-btn-group {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
}

.scroll-indicator {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  color: var(--text-light);
  cursor: pointer;
  opacity: 0.8;
  transition: var(--transition-smooth);
}

.scroll-indicator:hover {
  color: var(--primary-gold);
  opacity: 1;
}

.scroll-indicator span {
  font-family: var(--font-body);
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 3px;
  font-weight: 600;
}

.mouse {
  width: 22px;
  height: 38px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 12px;
  position: relative;
}

.mouse-wheel {
  display: block;
  width: 4px;
  height: 8px;
  background-color: var(--primary-gold);
  border-radius: 2px;
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  animation: scrollWheel 2s infinite ease-in-out;
}

@keyframes scrollWheel {
  0% { top: 8px; opacity: 1; }
  100% { top: 22px; opacity: 0; }
}

/* ==========================================
   3 FEATURED CATEGORIES
   ========================================== */
.categories-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.8rem;
}

.category-card {
  height: 250px;
  border-radius: 15px;
  position: relative;
  overflow: hidden;
  box-shadow: var(--glass-shadow);
  border: 1px solid var(--border-color);
  cursor: pointer;
  background-color: var(--bg-secondary);
}

.category-img-container {
  width: 100%;
  height: 100%;
  background: radial-gradient(circle, #2d261e 0%, #111 100%);
  position: relative;
}

/* Category Placeholder Background SVGs / Colors */
.category-img-placeholder {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.35;
  transition: var(--transition-smooth);
}

.category-img-placeholder svg {
  width: 80px;
  height: 80px;
  fill: var(--primary-gold);
}

.category-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.category-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, transparent 40%, rgba(17, 17, 17, 0.85) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 2rem;
  z-index: 5;
  transition: var(--transition-smooth);
}

.category-overlay h3 {
  color: var(--text-light);
  font-size: 1.3rem;
  margin-bottom: 0.3rem;
  font-weight: 500;
  transform: translateY(10px);
  transition: var(--transition-smooth);
}

.category-overlay .explore-link {
  color: var(--primary-gold);
  font-family: var(--font-body);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 600;
  opacity: 0;
  transform: translateY(20px);
  transition: var(--transition-smooth);
  display: flex;
  align-items: center;
  gap: 5px;
}

/* Hover effect */
.category-card:hover {
  border-color: rgba(212, 175, 55, 0.4);
  box-shadow: var(--glow-shadow);
}

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

.category-card:hover .category-img-placeholder {
  opacity: 0.5;
  transform: scale(1.1);
}

.category-card:hover .category-overlay {
  background: linear-gradient(180deg, rgba(74, 14, 23, 0.2) 20%, rgba(17, 17, 17, 0.95) 100%);
}

.category-card:hover .category-overlay h3 {
  transform: translateY(0);
}

.category-card:hover .category-overlay .explore-link {
  opacity: 1;
  transform: translateY(0);
}

/* ==========================================
   4 ABOUT US
   ========================================== */
.about-wrapper {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 5rem;
  align-items: center;
}

.about-visual {
  position: relative;
  display: flex;
  justify-content: center;
}

.about-img-box {
  width: 85%;
  height: 480px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--luxury-shadow);
  border: 1px solid var(--border-color);
  position: relative;
  background: radial-gradient(circle, #2d261e, #111);
}

.about-img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-badge {
  position: absolute;
  bottom: -30px;
  right: -10px;
  background: linear-gradient(135deg, #111 0%, #222 100%);
  border: 1.5px solid var(--primary-gold);
  border-radius: 15px;
  padding: 2rem;
  text-align: center;
  box-shadow: var(--luxury-shadow);
  z-index: 10;
  width: 180px;
}

.about-badge span.years {
  font-family: var(--font-luxury);
  font-size: 2.5rem;
  font-weight: 700;
  background: linear-gradient(135deg, #FCF6BA, #D4AF37, #AA771C);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: block;
}

.about-badge span.text {
  font-family: var(--font-body);
  font-size: 0.7rem;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 500;
}

.about-content h3 {
  font-size: 2rem;
  margin-bottom: 1.5rem;
  color: var(--accent-maroon);
}

.about-content p {
  color: var(--text-muted);
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
}

.about-mission-vision {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-top: 3rem;
  border-top: 1px solid var(--border-color);
  padding-top: 2rem;
}

.mv-card h4 {
  font-size: 1.1rem;
  color: var(--text-dark);
  margin-bottom: 0.8rem;
  display: flex;
  align-items: center;
  gap: 10px;
}

.mv-card h4 i {
  color: var(--primary-gold);
}

.mv-card p {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 0;
}

/* ==========================================
   5 WHY CHOOSE US
   ========================================== */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.why-card {
  background: var(--glass-bg);
  backdrop-filter: blur(10px);
  border: 1px solid var(--border-color);
  border-radius: 20px;
  padding: 3rem 2rem;
  text-align: center;
  box-shadow: var(--glass-shadow);
  transition: var(--transition-smooth);
}

.why-icon {
  width: 70px;
  height: 70px;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.15) 0%, rgba(212, 175, 55, 0.02) 100%);
  border: 1px solid rgba(212, 175, 55, 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.8rem;
  font-size: 1.8rem;
  color: var(--primary-gold);
  transition: var(--transition-smooth);
}

.why-card h3 {
  font-size: 1.2rem;
  margin-bottom: 1rem;
  font-weight: 600;
}

.why-card p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* Hover animation */
.why-card:hover {
  transform: translateY(-8px);
  background: #ffffff;
  border-color: var(--primary-gold);
  box-shadow: var(--luxury-shadow);
}

.why-card:hover .why-icon {
  background: var(--primary-gold);
  color: #111;
  box-shadow: 0 0 15px rgba(212, 175, 55, 0.5);
  transform: rotateY(180deg);
}

/* ==========================================
   6 FEATURED PRODUCTS
   ========================================== */
.products-filter {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin-bottom: 4rem;
}

.filter-btn {
  background: transparent;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--text-muted);
  cursor: pointer;
  padding: 0.5rem 1.5rem;
  border-bottom: 2px solid transparent;
  transition: var(--transition-fast);
}

.filter-btn.active, .filter-btn:hover {
  color: var(--primary-gold);
  border-bottom: 2px solid var(--primary-gold);
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2.2rem;
}

/* Luxury Product Cards */
.product-card {
  background: var(--glass-bg);
  border: 1px solid var(--border-color);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--glass-shadow);
  transition: var(--transition-smooth);
  position: relative;
  display: flex;
  flex-direction: column;
}

.product-img-box {
  width: 100%;
  height: 280px;
  background: radial-gradient(circle, #f9f9f9 0%, #ebebeb 100%);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-img-box svg {
  width: 100px;
  height: 100px;
  fill: rgba(170, 119, 28, 0.15);
  transition: var(--transition-smooth);
}

.product-img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.wishlist-btn {
  position: absolute;
  top: 1.2rem;
  right: 1.2rem;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #ffffff;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--text-muted);
  z-index: 5;
  transition: var(--transition-smooth);
}

.wishlist-btn:hover {
  background: var(--accent-maroon);
  color: white;
  transform: scale(1.1);
}

.wishlist-btn.active {
  color: var(--accent-maroon);
}

.product-actions-overlay {
  position: absolute;
  bottom: -60px;
  left: 0;
  width: 100%;
  display: flex;
  gap: 1px;
  z-index: 5;
  transition: var(--transition-smooth);
}

.action-btn {
  flex: 1;
  background: var(--glass-bg-dark);
  backdrop-filter: blur(10px);
  color: white;
  padding: 1rem 0.5rem;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: var(--transition-smooth);
}

.action-btn:hover {
  background: var(--primary-gold);
  color: #111;
}

.product-info {
  padding: 1.8rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.product-meta {
  display: flex;
  justify-content: space-between;
  font-size: 0.75rem;
  color: var(--text-muted);
  font-weight: 500;
  margin-bottom: 0.5rem;
}

.product-name {
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 0.8rem;
  color: var(--text-dark);
}

.product-rating {
  font-size: 0.75rem;
  color: var(--primary-gold);
  margin-bottom: 1rem;
}

.product-rating span {
  color: var(--text-muted);
  margin-left: 5px;
}

.product-price {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--accent-maroon);
  margin-top: auto;
}

/* Product Card Hover Animations (3D Lift & Glow) */
.product-card:hover {
  transform: translateY(-10px);
  border-color: rgba(212, 175, 55, 0.4);
  box-shadow: var(--luxury-shadow), 0 0 25px rgba(212, 175, 55, 0.15);
}

.product-card:hover .product-img-box img {
  transform: scale(1.08);
}

.product-card:hover .product-img-box svg {
  transform: scale(1.08) rotate(5deg);
}

.product-card:hover .product-actions-overlay {
  bottom: 0;
}

/* ==========================================
   7 BRIDAL COLLECTION
   ========================================== */
.bridal-banner {
  height: 550px;
  position: relative;
  display: flex;
  align-items: center;
  background: linear-gradient(90deg, rgba(74, 14, 23, 0.95) 20%, rgba(17, 17, 17, 0.4) 100%);
  overflow: hidden;
}

.bridal-parallax-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('../images/bridal.png');
  background-size: cover;
  background-position: center;
  opacity: 0.45;
  transform: scale(1.05);
  transition: transform 0.1s ease-out;
  z-index: 0;
}

.bridal-content {
  position: relative;
  z-index: 5;
  color: var(--text-light);
  max-width: 600px;
}

.bridal-content h3 {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 4px;
  color: var(--primary-gold);
  margin-bottom: 1.5rem;
}

.bridal-content h2 {
  font-size: 3.2rem;
  line-height: 1.2;
  color: var(--text-light);
  margin-bottom: 2rem;
}

.bridal-content p {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 3rem;
  font-weight: 300;
}

/* ==========================================
   8 GOLD INVESTMENT
   ========================================== */
.investment-wrapper {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.investment-visual {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--luxury-shadow);
  border: 1px solid var(--border-color);
  height: 480px;
}

.investment-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.investment-content h3 {
  font-size: 2rem;
  margin-bottom: 1.5rem;
  color: var(--text-dark);
}

.investment-content > p {
  color: var(--text-muted);
  margin-bottom: 3rem;
}

.investment-cards {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.investment-card {
  background: var(--glass-bg);
  border: 1px solid var(--border-color);
  border-radius: 15px;
  padding: 1.8rem;
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  transition: var(--transition-smooth);
  box-shadow: var(--glass-shadow);
}

.investment-card:hover {
  transform: translateX(10px);
  border-color: var(--primary-gold);
  background: white;
}

.investment-card-icon {
  width: 50px;
  height: 50px;
  background: rgba(212, 175, 55, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: var(--primary-gold);
  flex-shrink: 0;
}

.investment-card-info h4 {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

.investment-card-info p {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin-bottom: 0;
}

/* ==========================================
   9 CUSTOMER TESTIMONIALS
   ========================================== */
.testimonials-slider-container {
  overflow: hidden;
  position: relative;
  padding: 2rem 0;
  max-width: 1000px;
  margin: 0 auto;
}

.testimonials-track {
  display: flex;
  transition: transform 0.6s cubic-bezier(0.25, 0.8, 0.25, 1);
  width: 100%;
}

.testimonial-slide {
  flex: 0 0 100%;
  max-width: 100%;
  padding: 0 1rem;
  box-sizing: border-box;
}

.testimonial-card {
  background: #ffffff;
  border-radius: 20px;
  padding: 4rem 3rem;
  text-align: center;
  box-shadow: var(--glass-shadow);
  border: 1px solid var(--border-color);
  position: relative;
  margin: 0 auto;
  max-width: 800px;
}

.testimonial-quote-icon {
  font-size: 3rem;
  color: rgba(212, 175, 55, 0.15);
  position: absolute;
  top: 2rem;
  left: 3rem;
}

.testimonial-user-img {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  border: 3px solid var(--primary-gold);
  margin: 0 auto 1.5rem;
  overflow: hidden;
  box-shadow: var(--luxury-shadow);
}

.testimonial-user-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.testimonial-rating {
  color: var(--primary-gold);
  margin-bottom: 1.5rem;
  font-size: 0.9rem;
}

.testimonial-text {
  font-size: 1.1rem;
  color: var(--text-dark);
  font-style: italic;
  line-height: 1.8;
  margin-bottom: 2rem;
  font-weight: 300;
}

.testimonial-name {
  font-family: var(--font-luxury);
  font-size: 1.2rem;
  font-weight: 600;
  letter-spacing: 1px;
}

.testimonial-role {
  font-size: 0.75rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 500;
  margin-top: 0.3rem;
}

/* Slider Controls */
.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--glass-bg);
  border: 1px solid var(--border-color);
  color: var(--text-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: var(--transition-smooth);
  box-shadow: var(--glass-shadow);
}

.slider-btn:hover {
  background: var(--primary-gold);
  color: #111;
  box-shadow: var(--glow-shadow);
}

.slider-btn-prev {
  left: 0;
}

.slider-btn-next {
  right: 0;
}

.slider-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 3rem;
}

.slider-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(212, 175, 55, 0.3);
  cursor: pointer;
  transition: var(--transition-fast);
}

.slider-dot.active {
  background: var(--primary-gold);
  width: 25px;
  border-radius: 5px;
}

/* ==========================================
   10 LATEST OFFERS
   ========================================== */
.offers-container {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.offers-countdown-box {
  background: linear-gradient(135deg, var(--accent-maroon) 0%, #1a0508 100%);
  border: 1px solid var(--primary-gold);
  border-radius: 20px;
  padding: 4rem 3rem;
  color: var(--text-light);
  box-shadow: var(--luxury-shadow);
  text-align: center;
  position: relative;
}

.offers-countdown-box::before {
  content: '';
  position: absolute;
  top: 15px;
  bottom: 15px;
  left: 15px;
  right: 15px;
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: 15px;
  pointer-events: none;
}

.offers-countdown-box h3 {
  color: var(--primary-gold);
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.offers-countdown-box h2 {
  color: var(--text-light);
  font-size: 2.3rem;
  margin-bottom: 2rem;
}

.countdown-timer {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.countdown-segment {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.countdown-number {
  font-family: var(--font-luxury);
  font-size: 3rem;
  font-weight: 700;
  background: linear-gradient(135deg, #FCF6BA, #D4AF37, #AA771C);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1;
}

.countdown-label {
  font-family: var(--font-body);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 0.5rem;
}

.offers-grid {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.offer-card {
  background: var(--glass-bg);
  border: 1px solid var(--border-color);
  border-radius: 15px;
  padding: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-shadow: var(--glass-shadow);
  transition: var(--transition-smooth);
}

.offer-card:hover {
  transform: translateY(-5px);
  border-color: var(--primary-gold);
  background: #ffffff;
}

.offer-card-details h4 {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

.offer-card-details p {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 0;
}

.offer-badge {
  background: var(--accent-maroon);
  color: white;
  font-weight: bold;
  padding: 0.6rem 1.2rem;
  border-radius: 50px;
  font-size: 0.85rem;
  border: 1px solid var(--primary-gold);
}

/* ==========================================
   11 STATISTICS
   ========================================== */
.stats {
  background: linear-gradient(135deg, #111 0%, #1f1f1f 100%);
  border-top: 1.5px solid var(--primary-gold);
  border-bottom: 1.5px solid var(--primary-gold);
  color: var(--text-light);
  padding: 6rem 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 2rem;
  text-align: center;
}

.stat-item {
  position: relative;
}

.stat-item:not(:last-child)::after {
  content: '';
  position: absolute;
  top: 15%;
  right: -1rem;
  width: 1px;
  height: 70%;
  background: linear-gradient(180deg, transparent, rgba(212, 175, 55, 0.3), transparent);
}

.stat-number {
  font-family: var(--font-luxury);
  font-size: 3.5rem;
  font-weight: 700;
  background: linear-gradient(135deg, #FCF6BA, #D4AF37, #AA771C);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 0.5rem;
  line-height: 1;
}

.stat-label {
  font-family: var(--font-body);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 500;
}

/* ==========================================
   12 FAQ (ACCORDION)
   ========================================== */
.faq-wrapper {
  max-width: 800px;
  margin: 0 auto;
}

.accordion-group {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.disclosure {
  background: var(--glass-bg);
  border: 1px solid var(--border-color);
  border-radius: 15px;
  overflow: hidden;
  box-shadow: var(--glass-shadow);
  transition: var(--transition-smooth);
}

.disclosure[open] {
  border-color: var(--primary-gold);
  background: #ffffff;
  box-shadow: var(--luxury-shadow);
}

summary.faq-header {
  padding: 1.8rem 2.2rem;
  font-family: var(--font-luxury);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-dark);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  list-style: none; /* Hide default triangle */
}

summary.faq-header::-webkit-details-marker {
  display: none; /* Chrome/Safari marker removal */
}

.faq-icon-indicator {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid var(--border-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  color: var(--primary-gold);
  transition: var(--transition-smooth);
  flex-shrink: 0;
}

.disclosure[open] .faq-icon-indicator {
  transform: rotate(180deg);
  background: var(--primary-gold);
  color: #111;
  border-color: var(--primary-gold);
}

.faq-body {
  padding: 0 2.2rem 2.2rem 2.2rem;
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.7;
  border-top: 1px solid transparent;
  transition: var(--transition-smooth);
}

.disclosure[open] .faq-body {
  border-top-color: rgba(212, 175, 55, 0.1);
}

/* ==========================================
   13 CONTACT SECTION
   ========================================== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 5rem;
}

.contact-info-panel {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.contact-card-item {
  background: var(--glass-bg);
  border: 1px solid var(--border-color);
  border-radius: 15px;
  padding: 2rem;
  display: flex;
  gap: 1.5rem;
  box-shadow: var(--glass-shadow);
  transition: var(--transition-smooth);
}

.contact-card-item:hover {
  transform: translateY(-3px);
  border-color: var(--primary-gold);
}

.contact-card-icon {
  width: 50px;
  height: 50px;
  background: rgba(212, 175, 55, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: var(--primary-gold);
  flex-shrink: 0;
}

.contact-card-details h4 {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

.contact-card-details p {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin-bottom: 0;
  line-height: 1.5;
}

/* Google Map Placeholder (Styled cleanly with backdrop blur) */
.map-placeholder {
  height: 250px;
  border-radius: 15px;
  overflow: hidden;
  border: 1px solid var(--border-color);
  box-shadow: var(--glass-shadow);
  position: relative;
  background: #eaeaea;
}

.map-placeholder iframe {
  width: 100%;
  height: 100%;
  border: none;
  filter: grayscale(1) contrast(1.1) opacity(0.8);
}

/* Contact Form */
.contact-form-panel {
  background: #ffffff;
  border: 1px solid var(--border-color);
  border-radius: 20px;
  padding: 3.5rem 3rem;
  box-shadow: var(--luxury-shadow);
}

.contact-form-panel h3 {
  font-size: 1.8rem;
  margin-bottom: 2rem;
  color: var(--text-dark);
}

.form-group {
  position: relative;
  margin-bottom: 1.8rem;
}

.form-input {
  width: 100%;
  padding: 1rem 1.2rem;
  background: var(--bg-secondary);
  border: 1px solid transparent;
  border-radius: 10px;
  font-size: 0.88rem;
  transition: var(--transition-smooth);
}

.form-input:focus {
  background: #ffffff;
  border-color: var(--primary-gold);
  box-shadow: 0 0 10px rgba(212, 175, 55, 0.15);
}

textarea.form-input {
  height: 150px;
  resize: none;
}

.form-group label {
  position: absolute;
  left: 1.2rem;
  top: 1rem;
  color: var(--text-muted);
  font-size: 0.88rem;
  pointer-events: none;
  transition: var(--transition-smooth);
}

.form-input:focus ~ label,
.form-input:not(:placeholder-shown) ~ label {
  top: -0.6rem;
  left: 0.8rem;
  font-size: 0.75rem;
  background-color: #ffffff;
  padding: 0 0.4rem;
  color: var(--primary-gold);
  font-weight: 600;
}

/* Form Validation styling using modern CSS */
.form-input:user-invalid {
  border-color: #d9534f;
  box-shadow: 0 0 8px rgba(217, 83, 79, 0.15);
}

/* ==========================================
   14 NEWSLETTER
   ========================================== */
.newsletter {
  background: linear-gradient(135deg, rgba(74, 14, 23, 0.95), #1a0508);
  border-top: 1.5px solid var(--primary-gold);
  color: var(--text-light);
  position: relative;
  overflow: hidden;
}

.newsletter::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 70% 30%, rgba(212, 175, 55, 0.08) 0%, transparent 60%);
  pointer-events: none;
}

.newsletter-content {
  max-width: 650px;
  margin: 0 auto;
}

.newsletter-content h2 {
  color: var(--text-light);
  font-size: 2.3rem;
  margin-bottom: 1rem;
}

.newsletter-content p {
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 2.5rem;
  font-size: 0.95rem;
}

.newsletter-form {
  display: flex;
  gap: 10px;
}

.newsletter-input {
  flex: 1;
  padding: 1.1rem 1.8rem;
  border-radius: 50px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(212, 175, 55, 0.3);
  color: white;
  font-size: 0.9rem;
  transition: var(--transition-smooth);
}

.newsletter-input::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

.newsletter-input:focus {
  background: rgba(255, 255, 255, 0.15);
  border-color: var(--primary-gold);
  box-shadow: 0 0 15px rgba(212, 175, 55, 0.2);
}

/* ==========================================
   15 FOOTER
   ========================================== */
.footer {
  background-color: #0b0b0b;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  color: rgba(255, 255, 255, 0.7);
  padding: 6rem 0 2rem;
  font-size: 0.88rem;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr 1fr;
  gap: 4rem;
  margin-bottom: 5rem;
}

.footer-brand h3 {
  color: var(--text-light);
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  font-weight: 700;
  letter-spacing: 1px;
}

.footer-brand h3 span {
  color: var(--primary-gold);
}

.footer-brand p {
  line-height: 1.8;
  margin-bottom: 2rem;
}

.social-links {
  display: flex;
  gap: 1rem;
}

.social-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-smooth);
}

.social-btn:hover {
  background: var(--primary-gold);
  color: #111;
  border-color: var(--primary-gold);
  transform: translateY(-3px);
  box-shadow: var(--glow-shadow);
}

.footer-col h4 {
  color: var(--text-light);
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 2rem;
  position: relative;
  display: inline-block;
  padding-bottom: 0.5rem;
}

.footer-col h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 35px;
  height: 1.5px;
  background-color: var(--primary-gold);
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

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

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.5);
}

/* ==========================================
   SCROLL TO TOP & WIDGETS
   ========================================== */
.scroll-to-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: var(--accent-maroon);
  border: 1px solid var(--primary-gold);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 999;
  box-shadow: var(--luxury-shadow);
  opacity: 0;
  visibility: hidden;
  transition: var(--transition-smooth);
}

.scroll-to-top.visible {
  opacity: 1;
  visibility: visible;
}

.scroll-to-top:hover {
  background: var(--primary-gold);
  color: #111;
  transform: translateY(-5px);
  box-shadow: var(--glow-shadow);
}

/* ==========================================
   LUXURY LOADING SCREEN
   ========================================== */
.preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #0b0b0b;
  z-index: 100000;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: opacity 0.8s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.loader-logo {
  font-family: var(--font-luxury);
  font-size: 2.5rem;
  color: white;
  font-weight: 700;
  letter-spacing: 4px;
  margin-bottom: 2rem;
  opacity: 0;
  transform: scale(0.9);
  animation: logoReveal 1.5s forwards ease;
}

.loader-logo span {
  color: var(--primary-gold);
}

.loader-spinner-container {
  position: relative;
  width: 60px;
  height: 60px;
}

.loader-spinner {
  width: 100%;
  height: 100%;
  border: 1.5px solid rgba(212, 175, 55, 0.1);
  border-top-color: var(--primary-gold);
  border-radius: 50%;
  animation: spinnerSpin 1.2s infinite linear;
}

.loader-diamond {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(45deg);
  width: 12px;
  height: 12px;
  background-color: var(--primary-gold);
  box-shadow: 0 0 10px var(--primary-gold);
  animation: pulseDiamond 1.5s infinite ease-in-out;
}

@keyframes logoReveal {
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes spinnerSpin {
  100% {
    transform: rotate(360deg);
  }
}

@keyframes pulseDiamond {
  0%, 100% { transform: translate(-50%, -50%) rotate(45deg) scale(0.8); opacity: 0.6; }
  50% { transform: translate(-50%, -50%) rotate(45deg) scale(1.2); opacity: 1; }
}

/* ==========================================
   QUICK VIEW MODAL (DIALOG)
   ========================================== */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(10px);
  z-index: 10000;
  opacity: 0;
  visibility: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-smooth);
}

.modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.modal-container {
  background: var(--bg-primary);
  border: 1.5px solid var(--primary-gold);
  border-radius: 20px;
  width: 90%;
  max-width: 900px;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  overflow: hidden;
  box-shadow: var(--luxury-shadow), 0 0 40px rgba(212, 175, 55, 0.2);
  transform: scale(0.9) translateY(20px);
  transition: transform 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
  position: relative;
}

.modal-overlay.active .modal-container {
  transform: scale(1) translateY(0);
}

.modal-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--bg-secondary);
  border: 1px solid var(--border-color);
  color: var(--text-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition-fast);
  z-index: 10;
}

.modal-close:hover {
  background: var(--accent-maroon);
  color: white;
  border-color: var(--accent-maroon);
}

.modal-gallery {
  background: radial-gradient(circle, #f9f9f9 0%, #eaeaea 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  height: 480px;
  position: relative;
}

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

.modal-gallery svg {
  width: 120px;
  height: 120px;
  fill: rgba(170, 119, 28, 0.1);
}

.modal-details {
  padding: 3.5rem 3rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow-y: auto;
}

.modal-subtitle {
  font-family: var(--font-body);
  font-size: 0.75rem;
  color: var(--primary-gold);
  text-transform: uppercase;
  letter-spacing: 3px;
  font-weight: 600;
  margin-bottom: 0.8rem;
}

.modal-title {
  font-size: 1.8rem;
  margin-bottom: 1rem;
}

.modal-rating {
  color: var(--primary-gold);
  font-size: 0.8rem;
  margin-bottom: 1.5rem;
}

.modal-rating span {
  color: var(--text-muted);
  margin-left: 5px;
}

.modal-price {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--accent-maroon);
  margin-bottom: 1.5rem;
}

.modal-desc {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin-bottom: 2rem;
  line-height: 1.6;
}

.modal-specs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
  padding: 1.2rem 0;
  margin-bottom: 2rem;
}

.spec-item {
  font-size: 0.8rem;
}

.spec-item span.label {
  color: var(--text-muted);
  font-weight: 500;
}

.spec-item span.value {
  color: var(--text-dark);
  font-weight: 600;
  margin-left: 5px;
}

.modal-buy {
  display: flex;
  gap: 1rem;
}

.modal-buy .btn {
  flex: 1;
}

/* ==========================================
   RESPONSIVENESS BREAKPOINTS
   ========================================== */
@media (max-width: 1200px) {
  :root {
    --container-width: 960px;
  }
  
  .hero-content h2 {
    font-size: 3.5rem;
  }
  
  .categories-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .products-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .stats-grid {
    grid-template-columns: repeat(3, 1fr);
    row-gap: 3rem;
  }
  .stat-item:nth-child(3)::after {
    display: none;
  }
  
  .footer-top {
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
  }
  
  .footer-brand {
    grid-column: span 3;
  }
}

@media (max-width: 992px) {
  :root {
    --container-width: 720px;
  }
  
  .section-padding {
    padding: 6rem 0;
  }
  
  .navbar {
    padding: 1.5rem 2rem;
  }
  
  .header-wrapper.scrolled .navbar {
    padding: 0.8rem 2rem;
  }
  
  .hamburger {
    display: block;
    z-index: 1001;
  }
  
  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 300px;
    height: 100vh;
    background: #ffffff;
    box-shadow: -10px 0 30px rgba(0,0,0,0.1);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    padding: 4rem 3rem;
    gap: 2rem;
    transition: 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
    z-index: 1000;
  }
  
  .nav-links.active {
    right: 0;
  }
  
  .nav-links a {
    color: var(--text-dark) !important;
    font-size: 1rem;
  }
  
  .about-wrapper {
    grid-template-columns: 1fr;
    gap: 4rem;
  }
  
  .about-visual {
    order: 2;
  }
  
  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .products-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .bridal-banner {
    height: auto;
    padding: 6rem 0;
  }
  
  .investment-wrapper {
    grid-template-columns: 1fr;
    gap: 4rem;
  }
  
  .offers-container {
    grid-template-columns: 1fr;
    gap: 4rem;
  }
  
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 4rem;
  }
  
  .modal-container {
    grid-template-columns: 1fr;
    max-height: 85vh;
    overflow-y: auto;
  }
  
  .modal-gallery {
    height: 300px;
  }
  
  .modal-details {
    padding: 2.5rem 2rem;
  }
}

@media (max-width: 768px) {
  :root {
    --container-width: 540px;
  }
  
  .hero-content h2 {
    font-size: 2.8rem;
  }
  
  .categories-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .why-grid {
    grid-template-columns: 1fr;
  }
  
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .stat-item::after {
    display: none !important;
  }
  
  .footer-top {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .footer-brand {
    grid-column: span 2;
  }
  
  .newsletter-form {
    flex-direction: column;
    gap: 15px;
  }
  
  .newsletter-input {
    border-radius: 50px;
  }
  
  .newsletter-content h2 {
    font-size: 1.8rem;
  }
}

@media (max-width: 576px) {
  :root {
    --container-width: 100%;
  }
  
  .container {
    padding: 0 1.5rem;
  }
  
  .section-padding {
    padding: 5rem 0;
  }
  
  .section-header h2 {
    font-size: 2rem;
  }
  
  .hero-content h2 {
    font-size: 2.2rem;
  }
  
  .hero-btn-group {
    flex-direction: column;
    gap: 1rem;
  }
  
  .categories-grid {
    grid-template-columns: 1fr;
  }
  
  .products-grid {
    grid-template-columns: 1fr;
  }
  
  .stats-grid {
    grid-template-columns: 1fr;
    row-gap: 2.5rem;
  }
  
  .footer-top {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  
  .footer-brand {
    grid-column: span 1;
  }
  
  .testimonial-card {
    padding: 3rem 1.5rem;
  }
  
  .testimonial-quote-icon {
    font-size: 2rem;
    top: 1.5rem;
    left: 1.5rem;
  }
  
  .testimonial-text {
    font-size: 0.95rem;
  }
  
  .countdown-timer {
    gap: 0.8rem;
  }
  
  .countdown-number {
    font-size: 2.2rem;
  }
  
  .contact-form-panel {
    padding: 2.5rem 1.5rem;
  }
  
  .footer-bottom {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }
}
