/* ==========================================================================
   KALAKRITI HERITAGE - LUXURY HOMEPAGE STYLESHEET
   Theme: Luxury, Heritage, Modern Indian
   Colors: Charcoal Black, Antique Gold, Ivory
   ========================================================================== */

/* 1. RESET & VARIABLES
   ========================================================================== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  /* Color Palette */
  --primary-dark: #0F0F0F;      /* Jet Black */
  --secondary-dark: #1C150D;    /* Warm Charcoal / Dark Chocolate */
  --primary-light: #FAF7F2;     /* Pure Ivory */
  --secondary-light: #F4EFE6;   /* Cream Ivory */
  
  --gold-primary: #C9A227;      /* Antique Gold */
  --gold-light: #F5D365;        /* Light Shiny Gold */
  --gold-dark: #967412;         /* Dark Bronze Gold */
  --gold-muted: rgba(201, 162, 39, 0.4);
  
  --text-dark: #1F1911;         /* Off-Black body text */
  --text-muted-dark: #5C5245;   /* Grayish brown on light bg */
  --text-light: #FAF7F2;        /* Ivory body text on dark bg */
  --text-muted-light: #C5BDB2;  /* Muted text on dark bg */
  
  /* Fonts */
  --font-heading: 'Cinzel', serif;
  --font-subheading: 'Cormorant Garamond', serif;
  --font-body: 'Poppins', sans-serif;
  
  /* Design Tokens */
  --transition-smooth: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-fast: all 0.2s ease;
  --shadow-gold: 0 8px 30px rgba(201, 162, 39, 0.12);
  --shadow-dark: 0 10px 40px rgba(0, 0, 0, 0.3);
  --border-gold: 1px solid rgba(201, 162, 39, 0.35);
  --border-gold-light: 1px solid rgba(245, 211, 101, 0.5);
  --glass-bg: rgba(24, 17, 9, 0.75);
}

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

html {
  scroll-behavior: smooth;
  font-family: var(--font-body);
  color: var(--text-dark);
  background-color: var(--primary-light);
  overflow-x: hidden;
}

body {
  overflow-x: hidden;
}

/* Typography Utilities */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  letter-spacing: 0.1em;
}

p {
  line-height: 1.6;
}

.cormorant {
  font-family: var(--font-subheading);
  font-style: italic;
}

/* ==========================================================================
   2. REUSABLE COMPONENTS
   ========================================================================== */
.container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 40px;
  position: relative;
}

/* Gold Shiny Text Button */
.btn-gold {
  background: linear-gradient(135deg, var(--gold-dark) 0%, var(--gold-primary) 50%, var(--gold-light) 100%);
  color: var(--primary-dark);
  border: none;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.15em;
  padding: 16px 32px;
  text-transform: uppercase;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: var(--transition-smooth);
  box-shadow: var(--shadow-gold);
  z-index: 1;
}

.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.5s;
  z-index: -1;
}

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

.btn-gold:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(201, 162, 39, 0.35);
  color: #000;
}

/* Outline Gold Button */
.btn-outline {
  background: transparent;
  color: var(--gold-primary);
  border: 1px solid var(--gold-primary);
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  padding: 15px 30px;
  text-transform: uppercase;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.btn-outline:hover {
  background: rgba(201, 162, 39, 0.08);
  border-color: var(--gold-light);
  color: var(--gold-light);
  transform: translateY(-2px);
}

/* WhatsApp Floating Button */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background-color: #25d366;
  color: white;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 4px 15px rgba(0,0,0,0.3);
  z-index: 999;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.whatsapp-float:hover {
  transform: scale(1.1) rotate(15deg);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}

.whatsapp-float svg {
  width: 32px;
  height: 32px;
  fill: white;
}

/* Section Title */
.section-title-wrapper {
  text-align: center;
  margin-bottom: 60px;
  position: relative;
}

.section-title {
  font-size: 2.2rem;
  color: var(--primary-dark);
  font-weight: 500;
  margin-bottom: 12px;
}

.section-title.light {
  color: var(--primary-light);
}

.section-subtitle {
  font-family: var(--font-subheading);
  font-size: 1.4rem;
  color: var(--gold-primary);
  margin-bottom: 15px;
}

.section-divider {
  width: 150px;
  height: 1px;
  background: var(--gold-primary);
  margin: 0 auto;
  position: relative;
}

.section-divider::before {
  content: '✦';
  color: var(--gold-primary);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: var(--primary-light);
  padding: 0 10px;
  font-size: 10px;
}

.bg-dark-section .section-divider::before {
  background: var(--primary-dark);
}

/* ==========================================================================
   3. HEADER & NAVIGATION
   ========================================================================== */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 90px;
  display: flex;
  align-items: center;
  z-index: 900;
  transition: var(--transition-smooth);
  border-bottom: 1px solid transparent;
}

header.scrolled {
  height: 80px;
  background: rgba(15, 15, 15, 0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(201, 162, 39, 0.2);
}

header.scrolled nav a {
  color: var(--text-light);
}

header.scrolled .nav-icon svg {
  stroke: var(--primary-light);
}

header.scrolled .nav-icon:hover svg {
  stroke: var(--gold-primary);
}

header.scrolled .menu-toggle span {
  background-color: var(--primary-light);
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.logo-wrapper {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: inherit;
}

.logo-icon {
  width: 45px;
  height: 45px;
  border: 1.5px solid var(--gold-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.4rem;
  color: var(--gold-primary);
  margin-right: 12px;
  box-shadow: var(--shadow-gold);
  transition: var(--transition-smooth);
}

.logo-wrapper:hover .logo-icon {
  transform: rotate(360deg);
  border-color: var(--gold-light);
  color: var(--gold-light);
}

.logo-text {
  display: flex;
  flex-direction: column;
}

.logo-title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.1rem;
  letter-spacing: 0.1em;
  color: var(--primary-dark);
  line-height: 1;
}

.logo-subtitle {
  font-family: var(--font-subheading);
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  color: var(--gold-primary);
  text-transform: uppercase;
  margin-top: 3px;
}

header.scrolled .logo-title {
  color: var(--primary-light);
}

nav {
  display: flex;
  gap: 30px;
}

nav a {
  text-decoration: none;
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  color: var(--text-dark);
  text-transform: uppercase;
  transition: var(--transition-fast);
  position: relative;
  padding: 5px 0;
}

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

nav a:hover {
  color: var(--gold-primary) !important;
}

nav a:hover::after {
  width: 100%;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 20px;
}

.nav-icon {
  background: none;
  border: none;
  cursor: pointer;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.nav-icon svg {
  width: 22px;
  height: 22px;
  stroke: var(--primary-dark);
  stroke-width: 1.5;
  fill: none;
  transition: var(--transition-fast);
}

.nav-icon:hover svg {
  stroke: var(--gold-primary);
  transform: translateY(-2px);
}

.badge-count {
  position: absolute;
  top: -8px;
  right: -8px;
  background: var(--gold-primary);
  color: var(--primary-dark);
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 700;
  width: 17px;
  height: 17px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--primary-dark);
}

header.scrolled .badge-count {
  border-color: var(--primary-light);
}

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
}

.menu-toggle span {
  width: 25px;
  height: 2px;
  background-color: var(--primary-dark);
  transition: var(--transition-fast);
}

/* ==========================================================================
   4. HERO SECTION
   ========================================================================== */
.hero-section {
  position: relative;
  min-height: 100vh;
  padding-top: 130px;
  padding-bottom: 80px;
  display: flex;
  align-items: center;
  background: linear-gradient(to bottom, var(--primary-light) 0%, var(--primary-light) 40%, #1D150B 75%, var(--primary-dark) 100%);
  overflow: hidden;
}

.hero-bg-texture {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.03;
  pointer-events: none;
  background-image: radial-gradient(var(--gold-primary) 1px, transparent 1px);
  background-size: 24px 24px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 40px;
  align-items: center;
}

.hero-content {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.hero-brand-crest {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 25px;
  position: relative;
}

.hero-brand-crest svg {
  width: 110px;
  height: 110px;
  fill: var(--gold-primary);
  filter: drop-shadow(0 4px 15px rgba(201,162,39,0.3));
  animation: float 6s ease-in-out infinite;
}

.hero-title-main {
  text-align: center;
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1.15;
  color: var(--primary-dark);
  margin-bottom: 12px;
}

.hero-tagline-serif {
  text-align: center;
  font-family: var(--font-subheading);
  font-size: 1.6rem;
  font-weight: 500;
  font-style: italic;
  color: var(--gold-primary);
  letter-spacing: 0.05em;
  margin-bottom: 10px;
  position: relative;
}

.hero-tagline-serif::before, .hero-tagline-serif::after {
  content: '—';
  margin: 0 10px;
  color: var(--gold-primary);
  font-weight: 300;
}

.hero-subtagline {
  text-align: center;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.25em;
  color: var(--text-muted-dark);
  text-transform: uppercase;
  margin-bottom: 35px;
}

/* Category Circle Buttons */
.hero-categories-nav {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.hero-category-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  cursor: pointer;
}

.hero-cat-circle {
  width: 68px;
  height: 68px;
  border-radius: 50%;
  border: 1px solid rgba(201, 162, 39, 0.4);
  background: rgba(250, 247, 242, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.04);
  transition: var(--transition-smooth);
}

.hero-cat-circle svg {
  width: 30px;
  height: 30px;
  fill: var(--gold-primary);
  transition: var(--transition-smooth);
}

.hero-cat-label {
  font-family: var(--font-heading);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--text-muted-dark);
  text-transform: uppercase;
  text-align: center;
  transition: var(--transition-fast);
}

.hero-category-btn:hover .hero-cat-circle {
  transform: translateY(-5px);
  border-color: var(--gold-primary);
  background: var(--primary-dark);
  box-shadow: var(--shadow-gold);
}

.hero-category-btn:hover .hero-cat-circle svg {
  fill: var(--gold-light);
  transform: scale(1.1);
}

.hero-category-btn:hover .hero-cat-label {
  color: var(--gold-primary);
}

/* Frame styled Banner CTA Button */
.hero-cta-banner-wrapper {
  display: flex;
  justify-content: center;
  margin-top: 30px;
}

.hero-cta-frame {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  padding: 10px 15px;
  text-decoration: none;
}

/* The ornate SVG frame decoration around the CTA */
.cta-frame-svg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  fill: none;
  pointer-events: none;
  stroke: var(--gold-primary);
  stroke-width: 1.5;
  transition: var(--transition-smooth);
}

.cta-frame-text {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--primary-dark);
  letter-spacing: 0.15em;
  padding: 16px 36px;
  text-transform: uppercase;
  transition: var(--transition-smooth);
  background: rgba(250, 247, 242, 0.4);
  backdrop-filter: blur(5px);
  border-radius: 4px;
}

.hero-cta-frame:hover .cta-frame-svg {
  stroke: var(--gold-light);
  filter: drop-shadow(0 0 8px rgba(201, 162, 39, 0.6));
}

.hero-cta-frame:hover .cta-frame-text {
  color: var(--gold-primary);
  letter-spacing: 0.2em;
  background: var(--primary-dark);
}

/* Hero Right Image Column */
.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transform: scale(0.95);
  animation: scaleIn 1.2s cubic-bezier(0.16, 1, 0.3, 1) 0.2s forwards;
}

.hero-halo-glow {
  position: absolute;
  width: 120%;
  height: 120%;
  background: radial-gradient(circle, rgba(201, 162, 39, 0.2) 0%, rgba(201, 162, 39, 0.05) 50%, transparent 70%);
  border-radius: 50%;
  animation: pulseGlow 8s ease-in-out infinite alternate;
}

.hero-mandala-bg {
  position: absolute;
  width: 80%;
  height: 80%;
  border-radius: 50%;
  border: 1px dashed rgba(201, 162, 39, 0.2);
  opacity: 0.4;
  animation: spinSlow 40s linear infinite;
}

.hero-image-frame {
  position: relative;
  width: 100%;
  max-width: 480px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-dark), 0 20px 50px rgba(0,0,0,0.5);
  border: 2px solid rgba(201, 162, 39, 0.2);
  z-index: 2;
}

.hero-image-frame img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 8s ease;
}

.hero-image-frame:hover img {
  transform: scale(1.06);
}

/* Floating overlay decor circular photos */
.floating-circle-photo {
  position: absolute;
  width: 130px;
  height: 130px;
  border-radius: 50%;
  overflow: hidden;
  border: 2.5px solid var(--gold-primary);
  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
  z-index: 3;
  transition: var(--transition-smooth);
}

.floating-circle-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-smooth);
}

.floating-circle-photo:hover {
  transform: scale(1.08) translateY(-5px);
  border-color: var(--gold-light);
  box-shadow: 0 12px 35px rgba(201, 162, 39, 0.4);
}

.floating-circle-photo:hover img {
  transform: scale(1.1);
}

.float-circle-1 {
  bottom: -20px;
  left: -40px;
  animation: floatCircle1 7s ease-in-out infinite alternate;
}

.float-circle-2 {
  bottom: 60px;
  right: -50px;
  animation: floatCircle2 8s ease-in-out infinite alternate;
}

/* Trust Badges Bar */
.trust-badges-bar {
  background: var(--primary-dark);
  border-top: 1px solid rgba(201, 162, 39, 0.3);
  border-bottom: 1px solid rgba(201, 162, 39, 0.3);
  padding: 30px 0;
  position: relative;
  z-index: 10;
}

.trust-badges-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  text-align: center;
}

.trust-badge-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  color: var(--text-light);
}

.trust-badge-icon {
  width: 48px;
  height: 48px;
  fill: var(--gold-primary);
  margin-bottom: 15px;
  transition: var(--transition-smooth);
}

.trust-badge-item:hover .trust-badge-icon {
  transform: scale(1.15) rotate(5deg);
  fill: var(--gold-light);
  filter: drop-shadow(0 0 5px rgba(245, 211, 101, 0.4));
}

.trust-badge-title {
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

/* ==========================================================================
   5. FEATURED CATEGORIES SECTION
   ========================================================================== */
.categories-section {
  padding: 100px 0;
  background-color: var(--primary-light);
}

.categories-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.category-card {
  position: relative;
  height: 350px;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(201, 162, 39, 0.15);
  box-shadow: 0 4px 15px rgba(0,0,0,0.03);
  text-decoration: none;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 30px;
  z-index: 1;
}

.category-card-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: -2;
}

.category-card-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(15, 15, 15, 0.9) 0%, rgba(15, 15, 15, 0.3) 60%, transparent 100%);
  z-index: -1;
  transition: var(--transition-smooth);
}

.category-card-content {
  color: var(--text-light);
  transform: translateY(15px);
  transition: var(--transition-smooth);
}

.category-card-title {
  font-size: 1.4rem;
  font-weight: 500;
  margin-bottom: 8px;
  letter-spacing: 0.05em;
  text-transform: capitalize;
}

.category-card-link {
  font-family: var(--font-heading);
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  color: var(--gold-primary);
  text-transform: uppercase;
  opacity: 0;
  transition: var(--transition-smooth);
  display: flex;
  align-items: center;
  gap: 5px;
}

.category-card-link svg {
  width: 12px;
  height: 12px;
  stroke: var(--gold-primary);
  stroke-width: 2;
  fill: none;
  transition: var(--transition-fast);
}

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

.category-card:hover .category-card-overlay {
  background: linear-gradient(to top, rgba(20, 14, 8, 0.95) 0%, rgba(20, 14, 8, 0.5) 55%, transparent 100%);
}

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

.category-card:hover .category-card-link {
  opacity: 1;
}

/* ==========================================================================
   6. BEST SELLERS GRID
   ========================================================================== */
.products-section {
  padding: 100px 0;
  background-color: var(--secondary-light);
  border-top: 1px solid rgba(201, 162, 39, 0.15);
  border-bottom: 1px solid rgba(201, 162, 39, 0.15);
}

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

.product-card {
  background: var(--primary-light);
  border: 1px solid rgba(201, 162, 39, 0.15);
  border-radius: 8px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: var(--transition-smooth);
  position: relative;
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(28, 21, 13, 0.08), var(--shadow-gold);
  border-color: var(--gold-primary);
}

.product-badge {
  position: absolute;
  top: 15px;
  left: 15px;
  background: var(--gold-primary);
  color: var(--primary-dark);
  font-family: var(--font-heading);
  font-size: 0.65rem;
  font-weight: 700;
  padding: 6px 12px;
  letter-spacing: 0.1em;
  z-index: 10;
  text-transform: uppercase;
}

.product-wishlist-btn {
  position: absolute;
  top: 15px;
  right: 15px;
  background: rgba(250, 247, 242, 0.9);
  border: 1px solid rgba(201, 162, 39, 0.2);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition-fast);
  z-index: 10;
}

.product-wishlist-btn svg {
  width: 18px;
  height: 18px;
  stroke: var(--primary-dark);
  stroke-width: 1.8;
  fill: none;
  transition: var(--transition-fast);
}

.product-wishlist-btn.active svg {
  fill: #e04a4a;
  stroke: #e04a4a;
}

.product-wishlist-btn:hover {
  background: var(--primary-dark);
  border-color: var(--gold-primary);
}

.product-wishlist-btn:hover svg {
  stroke: var(--gold-primary);
}

.product-image-container {
  position: relative;
  padding-bottom: 100%;
  overflow: hidden;
  cursor: pointer;
}

.product-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 0.6s ease, transform 0.8s ease;
}

.product-img.alt {
  opacity: 0;
}

.product-card:hover .product-img.alt {
  opacity: 1;
}

.product-card:hover .product-img.main {
  opacity: 0.3;
}

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

.product-info {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.product-meta {
  font-family: var(--font-subheading);
  font-size: 0.95rem;
  color: var(--gold-dark);
  margin-bottom: 6px;
}

.product-title {
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--primary-dark);
  margin-bottom: 10px;
  line-height: 1.3;
}

.product-specs {
  font-size: 0.75rem;
  color: var(--text-muted-dark);
  margin-bottom: 15px;
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.product-price-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: auto;
  border-top: 1px solid rgba(201, 162, 39, 0.1);
  padding-top: 15px;
}

.product-price {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--primary-dark);
}

.product-add-cart-btn {
  background: var(--primary-dark);
  color: var(--gold-primary);
  border: 1px solid var(--gold-primary);
  padding: 8px 14px;
  font-family: var(--font-heading);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  transition: var(--transition-fast);
}

.product-add-cart-btn:hover {
  background: var(--gold-primary);
  color: var(--primary-dark);
}

/* ==========================================================================
   7. BRAND CRAFTSMANSHIP & STORY
   ========================================================================== */
.story-section {
  padding: 120px 0;
  background: linear-gradient(135deg, var(--secondary-dark) 0%, var(--primary-dark) 100%);
  color: var(--text-light);
  border-bottom: 1px solid rgba(201, 162, 39, 0.3);
  position: relative;
  overflow: hidden;
}

.story-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 60px;
  align-items: center;
}

.story-left {
  position: relative;
}

.story-frame {
  position: relative;
  border: 1px solid var(--gold-primary);
  padding: 15px;
  border-radius: 4px;
}

.story-frame-img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 2px;
  box-shadow: var(--shadow-dark);
}

.story-experience-badge {
  position: absolute;
  bottom: -30px;
  right: -30px;
  background: var(--gold-primary);
  color: var(--primary-dark);
  padding: 24px;
  border-radius: 4px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0,0,0,0.5);
  border: 1px solid var(--gold-light);
}

.story-exp-num {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 800;
  line-height: 1;
  margin-bottom: 2px;
}

.story-exp-text {
  font-family: var(--font-heading);
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.story-right {
  display: flex;
  flex-direction: column;
}

.story-desc {
  color: var(--text-muted-light);
  font-size: 0.95rem;
  margin-bottom: 30px;
  font-weight: 300;
}

.story-values-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-bottom: 40px;
}

.story-value-item {
  display: flex;
  gap: 15px;
}

.story-value-check {
  width: 20px;
  height: 20px;
  fill: var(--gold-primary);
  flex-shrink: 0;
}

.story-value-title {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: var(--primary-light);
  margin-bottom: 5px;
  text-transform: uppercase;
}

.story-value-desc {
  font-size: 0.78rem;
  color: var(--text-muted-light);
}

/* ==========================================================================
   8. TESTIMONIALS
   ========================================================================== */
.testimonials-section {
  padding: 100px 0;
  background-color: var(--primary-light);
}

.testimonials-slider {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 20px;
}

.testimonial-card {
  background: var(--secondary-light);
  border: 1px solid rgba(201, 162, 39, 0.1);
  padding: 40px;
  border-radius: 8px;
  position: relative;
  display: flex;
  flex-direction: column;
  transition: var(--transition-smooth);
}

.testimonial-card:hover {
  transform: translateY(-5px);
  border-color: var(--gold-primary);
  box-shadow: var(--shadow-gold);
}

.testimonial-quote-icon {
  position: absolute;
  top: 30px;
  right: 40px;
  font-family: var(--font-subheading);
  font-size: 5rem;
  line-height: 0.5;
  color: rgba(201, 162, 39, 0.15);
}

.testimonial-stars {
  display: flex;
  gap: 5px;
  color: var(--gold-primary);
  margin-bottom: 20px;
}

.testimonial-stars svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

.testimonial-text {
  font-family: var(--font-subheading);
  font-size: 1.1rem;
  font-style: italic;
  line-height: 1.6;
  color: var(--text-dark);
  margin-bottom: 25px;
  flex-grow: 1;
}

.testimonial-user {
  display: flex;
  align-items: center;
  gap: 15px;
  border-top: 1px solid rgba(201, 162, 39, 0.1);
  padding-top: 20px;
}

.testimonial-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 1.5px solid var(--gold-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  background: var(--primary-dark);
  color: var(--gold-primary);
  font-weight: 700;
  font-size: 1rem;
}

.testimonial-name {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: var(--primary-dark);
}

.testimonial-location {
  font-size: 0.72rem;
  color: var(--text-muted-dark);
  margin-top: 2px;
}

/* ==========================================================================
   9. CONTACT SECTION
   ========================================================================== */
.contact-section {
  padding: 100px 0;
  background-color: var(--secondary-light);
  border-top: 1px solid rgba(201, 162, 39, 0.15);
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 60px;
}

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

.contact-info-desc {
  font-size: 0.95rem;
  color: var(--text-muted-dark);
  margin-bottom: 40px;
}

.contact-info-list {
  display: flex;
  flex-direction: column;
  gap: 30px;
  margin-bottom: 40px;
}

.contact-info-item {
  display: flex;
  gap: 20px;
}

.contact-info-icon-box {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid var(--gold-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--primary-light);
  color: var(--gold-primary);
  flex-shrink: 0;
  transition: var(--transition-smooth);
}

.contact-info-icon-box svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
}

.contact-info-item:hover .contact-info-icon-box {
  background: var(--primary-dark);
  color: var(--gold-light);
  box-shadow: var(--shadow-gold);
}

.contact-info-label {
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--text-muted-dark);
  text-transform: uppercase;
  margin-bottom: 4px;
}

.contact-info-value {
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--primary-dark);
  text-decoration: none;
}

.contact-social-icons {
  display: flex;
  gap: 15px;
}

.contact-social-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(201, 162, 39, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-dark);
  text-decoration: none;
  transition: var(--transition-fast);
}

.contact-social-btn svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.contact-social-btn:hover {
  background: var(--gold-primary);
  color: var(--primary-dark);
  border-color: var(--gold-primary);
  transform: translateY(-3px);
}

/* Contact Form */
.contact-form-card {
  background: var(--primary-light);
  border: 1.5px solid var(--gold-primary);
  padding: 45px;
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(28, 21, 13, 0.05);
}

.form-group-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-group {
  margin-bottom: 25px;
}

.form-label {
  display: block;
  font-family: var(--font-heading);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--primary-dark);
  margin-bottom: 8px;
  text-transform: uppercase;
}

.form-input {
  width: 100%;
  background: var(--secondary-light);
  border: 1px solid rgba(201, 162, 39, 0.2);
  padding: 14px 18px;
  font-family: var(--font-body);
  font-size: 0.85rem;
  color: var(--primary-dark);
  border-radius: 4px;
  transition: var(--transition-fast);
}

.form-input:focus {
  outline: none;
  border-color: var(--gold-primary);
  background: var(--primary-light);
  box-shadow: 0 0 0 3px rgba(201, 162, 39, 0.1);
}

textarea.form-input {
  resize: vertical;
  min-height: 120px;
}

.btn-form-submit {
  width: 100%;
  padding: 18px;
}

/* ==========================================================================
   10. CART & WISHLIST DRAWERS
   ========================================================================== */
.drawer-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(4px);
  z-index: 1000;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}

.drawer-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.drawer {
  position: fixed;
  top: 0;
  right: -450px;
  width: 100%;
  max-width: 450px;
  height: 100%;
  background: var(--primary-light);
  box-shadow: -10px 0 40px rgba(0, 0, 0, 0.3);
  z-index: 1001;
  transition: right 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
}

.drawer.active {
  right: 0;
}

.drawer-header {
  padding: 30px;
  border-bottom: 1px solid rgba(201, 162, 39, 0.2);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.drawer-title {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  color: var(--primary-dark);
  font-weight: 600;
}

.drawer-close-btn {
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.drawer-close-btn svg {
  width: 24px;
  height: 24px;
  stroke: var(--primary-dark);
  stroke-width: 1.5;
  transition: var(--transition-fast);
}

.drawer-close-btn:hover svg {
  stroke: var(--gold-primary);
  transform: rotate(90deg);
}

.drawer-items {
  flex-grow: 1;
  overflow-y: auto;
  padding: 30px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.drawer-empty-msg {
  text-align: center;
  color: var(--text-muted-dark);
  font-family: var(--font-subheading);
  font-style: italic;
  font-size: 1.2rem;
  margin-top: 100px;
}

.drawer-item {
  display: flex;
  gap: 15px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(201, 162, 39, 0.1);
}

.drawer-item-img {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: 4px;
  border: 1px solid rgba(201, 162, 39, 0.15);
}

.drawer-item-details {
  flex-grow: 1;
}

.drawer-item-title {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--primary-dark);
  margin-bottom: 4px;
}

.drawer-item-meta {
  font-size: 0.72rem;
  color: var(--text-muted-dark);
  margin-bottom: 8px;
}

.drawer-item-price {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--gold-dark);
}

.drawer-item-remove {
  background: none;
  border: none;
  color: #c94f4f;
  font-size: 0.7rem;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-top: 5px;
  transition: var(--transition-fast);
}

.drawer-item-remove:hover {
  text-decoration: underline;
  color: #e04a4a;
}

.drawer-footer {
  padding: 30px;
  border-top: 1px solid rgba(201, 162, 39, 0.2);
  background: var(--secondary-light);
}

.drawer-subtotal-row {
  display: flex;
  justify-content: space-between;
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--primary-dark);
  margin-bottom: 20px;
}

.drawer-subtotal-price {
  color: var(--gold-dark);
}

.drawer-checkout-btn {
  width: 100%;
  padding: 16px;
  text-align: center;
}

/* ==========================================================================
   11. FOOTER
   ========================================================================== */
footer {
  background: #090604;
  color: var(--text-light);
  border-top: 2px solid var(--gold-primary);
  padding: 80px 0 30px 0;
  position: relative;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 1fr;
  gap: 60px;
  margin-bottom: 60px;
}

.footer-about {
  display: flex;
  flex-direction: column;
}

.footer-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: var(--text-light);
  margin-bottom: 25px;
}

.footer-logo .logo-title {
  color: var(--primary-light);
}

.footer-about-text {
  color: var(--text-muted-light);
  font-size: 0.88rem;
  line-height: 1.7;
  margin-bottom: 30px;
  font-weight: 300;
}

.footer-links-col {
  display: flex;
  flex-direction: column;
}

.footer-col-title {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  color: var(--gold-primary);
  text-transform: uppercase;
  margin-bottom: 30px;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.footer-links a {
  text-decoration: none;
  color: var(--text-muted-light);
  font-size: 0.85rem;
  transition: var(--transition-fast);
}

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

.footer-newsletter {
  display: flex;
  flex-direction: column;
}

.footer-newsletter-desc {
  font-size: 0.85rem;
  color: var(--text-muted-light);
  margin-bottom: 20px;
  line-height: 1.6;
}

.newsletter-form {
  display: flex;
}

.newsletter-input {
  flex-grow: 1;
  background: rgba(250, 247, 242, 0.05);
  border: 1px solid rgba(201, 162, 39, 0.3);
  padding: 12px 16px;
  color: var(--text-light);
  font-family: var(--font-body);
  font-size: 0.85rem;
}

.newsletter-input:focus {
  outline: none;
  border-color: var(--gold-primary);
}

.newsletter-submit-btn {
  background: var(--gold-primary);
  color: var(--primary-dark);
  border: none;
  padding: 0 20px;
  cursor: pointer;
  transition: var(--transition-fast);
}

.newsletter-submit-btn svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.newsletter-submit-btn:hover {
  background: var(--gold-light);
}

/* Footer Bottom Bar */
.footer-bottom {
  border-top: 1px solid rgba(201, 162, 39, 0.15);
  padding-top: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-bottom-tagline {
  font-family: var(--font-subheading);
  font-style: italic;
  font-size: 1.25rem;
  color: var(--gold-primary);
  letter-spacing: 0.05em;
}

.footer-copyright {
  font-size: 0.75rem;
  color: var(--text-muted-light);
}

/* ==========================================================================
   12. KEYFRAME ANIMATIONS
   ========================================================================== */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.95);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes float {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}

@keyframes pulseGlow {
  0% {
    opacity: 0.15;
    transform: scale(0.95);
  }
  100% {
    opacity: 0.35;
    transform: scale(1.05);
  }
}

@keyframes spinSlow {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

@keyframes floatCircle1 {
  0% {
    transform: translateY(0) rotate(0deg);
  }
  100% {
    transform: translateY(-10px) rotate(3deg);
  }
}

@keyframes floatCircle2 {
  0% {
    transform: translateY(0) rotate(0deg);
  }
  100% {
    transform: translateY(12px) rotate(-3deg);
  }
}

/* ==========================================================================
   13. RESPONSIVE DESIGN (MEDIA QUERIES)
   ========================================================================== */
@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 60px;
  }
  
  .hero-visual {
    order: -1;
    margin-bottom: 20px;
  }
  
  .hero-image-frame {
    max-width: 400px;
  }
  
  .categories-grid, .products-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .story-grid, .contact-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }
  
  .testimonials-slider {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

@media (max-width: 768px) {
  header {
    height: 75px;
  }
  
  .menu-toggle {
    display: flex;
  }
  
  nav {
    position: fixed;
    top: 75px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 75px);
    background: var(--primary-dark);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 40px;
    transition: var(--transition-smooth);
    z-index: 899;
  }
  
  nav.active {
    left: 0;
  }
  
  nav a {
    color: var(--text-light);
    font-size: 1.2rem;
  }
  
  .hero-title-main {
    font-size: 2.2rem;
  }
  
  .hero-tagline-serif {
    font-size: 1.3rem;
  }
  
  .trust-badges-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  
  .floating-circle-photo {
    width: 90px;
    height: 90px;
  }
  
  .float-circle-1 {
    left: -20px;
  }
  
  .float-circle-2 {
    right: -20px;
  }
  
  .contact-form-card {
    padding: 25px;
  }
  
  .form-group-row {
    grid-template-columns: 1fr;
    gap: 0;
  }
  
  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 20px;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 20px;
  }
  
  .hero-categories-nav {
    gap: 15px;
  }
  
  .hero-cat-circle {
    width: 55px;
    height: 55px;
  }
  
  .hero-cat-circle svg {
    width: 22px;
    height: 22px;
  }
  
  .categories-grid, .products-grid {
    grid-template-columns: 1fr;
  }
  
  .trust-badges-grid {
    grid-template-columns: 1fr;
  }
}

/* WhatsApp Order Button Styling */
.whatsapp-order-btn {
  background-color: #25D366 !important;
  color: white !important;
  border: 1px solid #1ebd59 !important;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-heading);
  font-size: 0.68rem !important;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 10px 16px;
  cursor: pointer;
  transition: var(--transition-fast);
}

.whatsapp-order-btn:hover {
  background-color: #1ebd59 !important;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.35);
}

.whatsapp-order-btn svg {
  width: 14px;
  height: 14px;
  fill: currentColor;
}

/* Responsive Collections Page Layout */
@media (max-width: 991px) {
  .collections-main-grid {
    grid-template-columns: 1fr !important;
    gap: 30px !important;
  }
  .collections-sidebar {
    position: static !important;
    width: 100% !important;
  }
}

/* ==========================================================================
   PRODUCT DETAILS MODAL STYLING
   ========================================================================== */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(15, 15, 15, 0.75);
  backdrop-filter: blur(8px);
  z-index: 1000;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}

.modal-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.modal-container {
  background: var(--secondary-light);
  border: 1.5px solid var(--gold-primary);
  width: 90%;
  max-width: 900px;
  max-height: 90vh;
  border-radius: 8px;
  overflow-y: auto;
  position: relative;
  transform: scale(0.92);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: var(--shadow-heavy);
  padding: 40px;
  color: var(--primary-dark);
}

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

.modal-close-btn {
  position: absolute;
  top: 15px;
  right: 15px;
  background: none;
  border: none;
  font-size: 1.6rem;
  color: var(--gold-dark);
  cursor: pointer;
  line-height: 1;
  padding: 5px;
  transition: var(--transition-fast);
}

.modal-close-btn:hover {
  transform: rotate(90deg);
  color: var(--primary-dark);
}

.modal-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.modal-image-col {
  border: 1px solid rgba(201, 162, 39, 0.15);
  border-radius: 4px;
  overflow: hidden;
  background: #0f0f0f;
  display: flex;
  align-items: center;
  justify-content: center;
}

.modal-image {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
}

.modal-details-col {
  display: flex;
  flex-direction: column;
}

.modal-meta {
  font-size: 0.75rem;
  color: var(--gold-dark);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-family: var(--font-heading);
  margin-bottom: 8px;
}

.modal-title {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 1.25;
  margin-bottom: 15px;
  letter-spacing: 0.05em;
}

.modal-price-row {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin-bottom: 25px;
  border-bottom: 1px solid rgba(201, 162, 39, 0.15);
  padding-bottom: 15px;
}

.modal-price {
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--primary-dark);
  font-family: var(--font-heading);
}

.modal-original-price {
  text-decoration: line-through;
  color: var(--text-muted-dark);
  font-size: 0.95rem;
  opacity: 0.7;
}

.modal-discount-tag {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 600;
  color: #b33939;
}

.modal-spec-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 30px;
}

.modal-spec-table tr {
  border-bottom: 1px solid rgba(201, 162, 39, 0.1);
}

.modal-spec-table tr:last-child {
  border-bottom: none;
}

.modal-spec-table td {
  padding: 10px 0;
  font-size: 0.82rem;
}

.modal-spec-table td.label {
  font-weight: 500;
  color: var(--text-muted-dark);
  width: 35%;
  text-transform: uppercase;
  font-size: 0.72rem;
  letter-spacing: 0.05em;
}

.modal-spec-table td.value {
  color: var(--primary-dark);
}

.modal-actions {
  display: flex;
  gap: 15px;
  margin-top: auto;
}

.modal-share-btn {
  background: transparent;
  border: 1px solid var(--gold-primary);
  color: var(--primary-dark);
  font-family: var(--font-heading);
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 12px 20px;
  cursor: pointer;
  transition: var(--transition-fast);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.modal-share-btn:hover {
  background: var(--gold-primary);
  color: var(--secondary-light);
  transform: translateY(-2px);
}

.modal-share-btn svg {
  width: 13px;
  height: 13px;
  fill: currentColor;
}

/* Toast Success Alert Overlay */
.toast-notification {
  position: fixed;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%) translateY(100px);
  background: var(--primary-dark);
  color: var(--gold-primary);
  border: 1.5px solid var(--gold-primary);
  padding: 12px 25px;
  font-family: var(--font-heading);
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  border-radius: 4px;
  box-shadow: var(--shadow-heavy);
  z-index: 1100;
  opacity: 0;
  pointer-events: none;
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), opacity 0.3s ease;
}

.toast-notification.active {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

@media (max-width: 768px) {
  .modal-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }
  .modal-container {
    padding: 25px;
    width: 92%;
    margin-top: 50px;
    margin-bottom: 50px;
  }
  .modal-actions {
    flex-direction: column;
    gap: 10px;
  }
  .modal-title {
    font-size: 1.4rem;
  }
}
