/* ==========================================================================
   Original World - Luxury Watch Store Stylesheet
   Theme: Deep Onyx Black & Regal Gold (#D4AF37)
   ========================================================================== */

:root {
  --bg-dark: #090B0E;
  --bg-card: #121620;
  --bg-card-hover: #1A202C;
  --bg-glass: rgba(18, 22, 32, 0.85);
  
  --gold-primary: #D4AF37;
  --gold-light: #F3E5AB;
  --gold-dark: #AA820A;
  --gold-gradient: linear-gradient(135deg, #F3E5AB 0%, #D4AF37 50%, #AA820A 100%);
  
  --text-main: #F7FAFC;
  --text-muted: #A0AEC0;
  --border-color: rgba(212, 175, 55, 0.2);
  --border-focus: rgba(212, 175, 55, 0.6);
  
  --wa-color: #25D366;
  --wa-hover: #1DA851;
  
  --font-heading: 'Cinzel', serif;
  --font-body: 'Plus Jakarta Sans', sans-serif;
  
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  
  --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  --shadow-gold: 0 10px 30px -10px rgba(212, 175, 55, 0.3);
}

/* Reset & Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 20px;
}

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

button {
  cursor: pointer;
  border: none;
  outline: none;
  font-family: var(--font-body);
  transition: var(--transition);
}

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

.text-gold {
  color: var(--gold-primary);
}

.text-gold-gradient {
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.5px;
}

.btn-primary {
  background: var(--gold-gradient);
  color: #000;
  box-shadow: 0 4px 15px rgba(212, 175, 55, 0.25);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold);
}

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

.btn-outline:hover {
  background: rgba(212, 175, 55, 0.1);
  color: #fff;
}

.btn-whatsapp {
  background-color: var(--wa-color);
  color: #fff;
  border-radius: 30px;
  padding: 10px 20px;
  font-size: 0.9rem;
}

.btn-whatsapp:hover {
  background-color: var(--wa-hover);
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
}

.btn-whatsapp-lg {
  background-color: var(--wa-color);
  color: #fff;
  padding: 14px 28px;
  font-size: 1rem;
  border-radius: var(--radius-sm);
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp-lg:hover {
  background-color: var(--wa-hover);
  transform: translateY(-2px);
}

.full-width {
  width: 100%;
}

/* Section Common Headers */
.section-header {
  text-align: center;
  margin-bottom: 50px;
}

.section-subtitle {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  letter-spacing: 3px;
  color: var(--gold-primary);
  text-transform: uppercase;
  display: block;
  margin-bottom: 8px;
}

.section-title {
  font-family: var(--font-heading);
  font-size: 2.4rem;
  font-weight: 700;
  color: #fff;
}

.gold-line {
  width: 80px;
  height: 3px;
  background: var(--gold-gradient);
  margin: 15px auto 20px;
  border-radius: 2px;
}

.gold-line.left {
  margin-left: 0;
}

.section-desc {
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto;
  font-size: 1rem;
}

/* ==========================================================================
   Top Announcement Bar
   ========================================================================== */
.top-bar {
  background-color: #050608;
  border-bottom: 1px solid var(--border-color);
  padding: 8px 0;
  font-size: 0.82rem;
  color: var(--text-muted);
}

.top-bar-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.top-bar-left, .top-bar-right {
  display: flex;
  align-items: center;
  gap: 12px;
}

.top-bar-right a:hover {
  color: var(--gold-primary);
}

.divider {
  opacity: 0.3;
}

.rating-badge {
  background: rgba(212, 175, 55, 0.15);
  color: var(--gold-light);
  padding: 2px 8px;
  border-radius: 12px;
  font-weight: 600;
}

/* ==========================================================================
   Navbar
   ========================================================================== */
.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--bg-glass);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(212, 175, 55, 0.15);
  padding: 15px 0;
}

.navbar-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(212, 175, 55, 0.1);
  border: 1px solid var(--gold-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: var(--gold-primary);
  box-shadow: 0 0 15px rgba(212, 175, 55, 0.2);
}

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

.brand-title {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 800;
  letter-spacing: 1.5px;
  color: #fff;
  line-height: 1.1;
}

.brand-sub {
  font-size: 0.65rem;
  letter-spacing: 2px;
  color: var(--gold-primary);
}

.nav-links {
  display: flex;
  gap: 28px;
}

.nav-link {
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--text-muted);
  position: relative;
  padding: 5px 0;
}

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

.nav-link.active::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--gold-primary);
}

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

.icon-btn {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  color: #fff;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.icon-btn:hover {
  background: rgba(212, 175, 55, 0.2);
  color: var(--gold-primary);
  border-color: var(--gold-primary);
}

.cart-badge {
  position: absolute;
  top: -4px;
  right: -4px;
  background: var(--gold-primary);
  color: #000;
  font-size: 0.7rem;
  font-weight: 700;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Search Bar Overlay */
.search-overlay {
  background: rgba(9, 11, 14, 0.95);
  border-bottom: 1px solid var(--border-color);
  padding: 20px 0;
  position: sticky;
  top: 75px;
  z-index: 99;
}

.search-overlay.hidden {
  display: none;
}

.search-box {
  display: flex;
  align-items: center;
  gap: 15px;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 30px;
  padding: 10px 24px;
}

.search-icon {
  color: var(--gold-primary);
  font-size: 1.1rem;
}

.search-box input {
  flex: 1;
  background: transparent;
  border: none;
  outline: none;
  color: #fff;
  font-size: 1rem;
}

.close-search {
  background: transparent;
  color: var(--text-muted);
  font-size: 1.2rem;
}

.close-search:hover {
  color: #fff;
}

/* ==========================================================================
   Hero Section
   ========================================================================== */
.hero {
  position: relative;
  min-height: 80vh;
  display: flex;
  align-items: center;
  background: radial-gradient(circle at 70% 30%, rgba(212, 175, 55, 0.12) 0%, transparent 60%),
              linear-gradient(180deg, #090B0E 0%, #10141D 100%);
  padding: 80px 0;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 750px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(212, 175, 55, 0.1);
  border: 1px solid rgba(212, 175, 55, 0.3);
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 0.85rem;
  color: var(--gold-light);
  margin-bottom: 24px;
}

.hero-title {
  font-family: var(--font-heading);
  font-size: 3.6rem;
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 20px;
  color: #fff;
}

.hero-desc {
  font-size: 1.15rem;
  color: var(--text-muted);
  margin-bottom: 35px;
  line-height: 1.7;
}

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

.hero-stats {
  display: flex;
  align-items: center;
  gap: 30px;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.stat-item {
  display: flex;
  flex-direction: column;
}

.stat-num {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--gold-primary);
}

.stat-label {
  font-size: 0.82rem;
  color: var(--text-muted);
}

.stat-divider {
  width: 1px;
  height: 35px;
  background: rgba(255, 255, 255, 0.1);
}

/* ==========================================================================
   Features Bar
   ========================================================================== */
.features-bar {
  background-color: var(--bg-card);
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
  padding: 35px 0;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 30px;
}

.feature-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

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

.feature-text h3 {
  font-size: 1rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 4px;
}

.feature-text p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.4;
}

/* ==========================================================================
   Catalog & Products Section
   ========================================================================== */
.catalog-section {
  padding: 90px 0;
}

.filter-wrapper {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 45px;
}

.filter-btn {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--text-muted);
  padding: 8px 18px;
  border-radius: 20px;
  font-size: 0.88rem;
  font-weight: 500;
}

.filter-btn:hover, .filter-btn.active {
  background: var(--gold-primary);
  color: #000;
  border-color: var(--gold-primary);
  font-weight: 600;
}

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

.product-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  position: relative;
}

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

.product-badge {
  position: absolute;
  top: 15px;
  left: 15px;
  background: var(--gold-gradient);
  color: #000;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 4px;
  text-transform: uppercase;
  z-index: 2;
}

.product-img-wrapper {
  position: relative;
  width: 100%;
  height: 280px;
  background: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  overflow: hidden;
}

.product-img-wrapper img {
  max-height: 100%;
  object-fit: contain;
  transition: transform 0.5s ease;
}

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

.quick-view-overlay {
  position: absolute;
  inset: 0;
  background: rgba(9, 11, 14, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition);
}

.product-card:hover .quick-view-overlay {
  opacity: 1;
}

.quick-view-btn {
  background: #fff;
  color: #000;
  border: none;
  padding: 10px 18px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
}

.product-content {
  padding: 22px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.product-brand {
  font-family: var(--font-heading);
  font-size: 0.78rem;
  color: var(--gold-primary);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 6px;
}

.product-name {
  font-size: 1.1rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 10px;
  line-height: 1.3;
}

.product-specs {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-bottom: 16px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

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

.product-price {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--gold-light);
}

.product-actions {
  display: flex;
  gap: 8px;
  margin-top: 15px;
}

.product-actions .btn {
  flex: 1;
  padding: 10px 12px;
  font-size: 0.85rem;
}

/* ==========================================================================
   Store Info & Map Section
   ========================================================================== */
.store-info-section {
  padding: 90px 0;
  background: radial-gradient(circle at 10% 90%, rgba(212, 175, 55, 0.08) 0%, transparent 50%),
              var(--bg-dark);
}

.store-info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.store-details-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 40px;
}

.info-list {
  display: flex;
  flex-direction: column;
  gap: 25px;
  margin: 30px 0;
}

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

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

.info-content h4 {
  font-size: 1rem;
  color: #fff;
  margin-bottom: 2px;
}

.info-content p {
  font-size: 0.92rem;
  color: var(--text-muted);
}

.plus-code {
  font-size: 0.8rem;
  color: var(--gold-primary);
  display: block;
  margin-top: 4px;
}

.status-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8rem;
  padding: 3px 10px;
  border-radius: 12px;
  margin-top: 5px;
}

.status-badge.closed {
  background: rgba(239, 68, 68, 0.15);
  color: #f87171;
}

.store-actions {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.store-map-card {
  height: 480px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-color);
  position: relative;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.map-container {
  width: 100%;
  height: 100%;
}

.map-overlay-badge {
  position: absolute;
  top: 20px;
  left: 20px;
  background: rgba(9, 11, 14, 0.9);
  border: 1px solid var(--gold-primary);
  color: #fff;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  gap: 8px;
  backdrop-filter: blur(5px);
}

/* ==========================================================================
   Reviews Section
   ========================================================================== */
.reviews-section {
  padding: 90px 0;
  background-color: #06070a;
}

.overall-rating {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 15px;
}

.rating-number {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--gold-primary);
}

.stars {
  color: var(--gold-primary);
  font-size: 1.2rem;
}

.rating-text {
  font-size: 0.9rem;
  color: var(--text-muted);
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
  margin-top: 20px;
}

.review-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 30px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.review-header {
  display: flex;
  align-items: center;
  gap: 14px;
}

.reviewer-avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--gold-gradient);
  color: #000;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

.reviewer-info {
  flex: 1;
}

.reviewer-info h4 {
  font-size: 1rem;
  color: #fff;
}

.stars-sm {
  color: var(--gold-primary);
  font-size: 0.8rem;
}

.google-icon {
  font-size: 1.4rem;
  color: #4285F4;
}

.review-text {
  color: #e2e8f0;
  font-style: italic;
  font-size: 0.95rem;
}

.review-date {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: auto;
}

/* ==========================================================================
   EXCEPTIONAL LUXURY FOOTER (Footer Acha Ho)
   ========================================================================== */
.luxury-footer {
  background: linear-gradient(180deg, #090B0E 0%, #030406 100%);
  position: relative;
  color: var(--text-main);
  padding-top: 60px;
  border-top: 1px solid rgba(212, 175, 55, 0.2);
}

.footer-top-border {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, transparent 0%, var(--gold-primary) 50%, transparent 100%);
}

.footer-content {
  padding-bottom: 30px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 40px;
  margin-bottom: 50px;
}

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

.footer-logo {
  margin-bottom: 16px;
}

.footer-bio {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 20px;
  line-height: 1.6;
}

.footer-rating {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.85rem;
  color: var(--gold-light);
  margin-bottom: 24px;
}

.footer-socials {
  display: flex;
  gap: 12px;
}

.footer-socials a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(212, 175, 55, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-primary);
  font-size: 1rem;
}

.footer-socials a:hover {
  background: var(--gold-gradient);
  color: #000;
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(212, 175, 55, 0.4);
}

.footer-heading {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  color: #fff;
  margin-bottom: 25px;
  position: relative;
  padding-bottom: 10px;
}

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

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

.footer-links a {
  font-size: 0.88rem;
  color: var(--text-muted);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.footer-links a i {
  font-size: 0.7rem;
  color: var(--gold-primary);
  transition: transform 0.2s ease;
}

.footer-links a:hover {
  color: var(--gold-primary);
  transform: translateX(4px);
}

.footer-links a:hover i {
  transform: translateX(3px);
}

.footer-contact-info {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-contact-info li {
  display: flex;
  gap: 12px;
  font-size: 0.88rem;
  color: var(--text-muted);
}

.footer-contact-info li i {
  font-size: 1rem;
  margin-top: 3px;
  flex-shrink: 0;
}

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

/* Newsletter Box */
.footer-newsletter {
  background: linear-gradient(135deg, rgba(18, 22, 32, 0.9) 0%, rgba(9, 11, 14, 0.9) 100%);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 40px;
  box-shadow: inset 0 0 20px rgba(212, 175, 55, 0.05);
}

.newsletter-text h3 {
  font-size: 1.15rem;
  color: #fff;
  margin-bottom: 4px;
}

.newsletter-text p {
  font-size: 0.88rem;
  color: var(--text-muted);
}

.newsletter-form {
  display: flex;
  gap: 10px;
  flex: 1;
  max-width: 450px;
}

.newsletter-form input {
  flex: 1;
  background: rgba(0, 0, 0, 0.5);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  padding: 12px 18px;
  color: #fff;
  outline: none;
}

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

/* Trust Bar */
.footer-trust-bar {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 20px;
  padding: 20px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  margin-bottom: 25px;
}

.trust-item {
  font-size: 0.85rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 8px;
}

.trust-item i {
  color: var(--gold-primary);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.82rem;
  color: var(--text-muted);
  padding-top: 10px;
}

.footer-crafted {
  font-family: var(--font-heading);
  color: var(--gold-primary);
  letter-spacing: 1px;
}

/* ==========================================================================
   Modals & Cart Drawer
   ========================================================================== */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(8px);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.modal-overlay.hidden {
  display: none;
}

.modal-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  max-width: 800px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  padding: 30px;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.8);
}

.close-modal {
  position: absolute;
  top: 20px;
  right: 20px;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  font-size: 1.1rem;
}

.close-modal:hover {
  background: var(--gold-primary);
  color: #000;
}

/* Cart Drawer */
.cart-drawer-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(4px);
  z-index: 1000;
  display: flex;
  justify-content: flex-end;
}

.cart-drawer-overlay.hidden {
  display: none;
}

.cart-drawer {
  width: 100%;
  max-width: 420px;
  height: 100%;
  background: var(--bg-card);
  border-left: 1px solid var(--border-color);
  display: flex;
  flex-direction: column;
  padding: 25px;
}

.cart-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.cart-header h3 {
  font-family: var(--font-heading);
  color: #fff;
}

.close-cart {
  background: transparent;
  color: var(--text-muted);
  font-size: 1.3rem;
}

.cart-body {
  flex: 1;
  overflow-y: auto;
  padding: 20px 0;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.cart-item {
  display: flex;
  gap: 15px;
  background: rgba(255, 255, 255, 0.03);
  padding: 12px;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255, 255, 255, 0.05);
  align-items: center;
}

.cart-item-img {
  width: 60px;
  height: 60px;
  background: #000;
  border-radius: 6px;
  padding: 5px;
  object-fit: contain;
}

.cart-item-info {
  flex: 1;
}

.cart-item-title {
  font-size: 0.9rem;
  font-weight: 600;
  color: #fff;
}

.cart-item-price {
  font-size: 0.85rem;
  color: var(--gold-primary);
}

.cart-item-qty {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 6px;
}

.qty-btn {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  width: 24px;
  height: 24px;
  border-radius: 4px;
  font-size: 0.8rem;
}

.cart-footer {
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.delivery-option {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 0.85rem;
}

.delivery-option select {
  background: #090B0E;
  color: #fff;
  border: 1px solid var(--border-color);
  padding: 10px;
  border-radius: 6px;
  outline: none;
}

.cart-total-row {
  display: flex;
  justify-content: space-between;
  font-size: 1.1rem;
  font-weight: 700;
  color: #fff;
}

.total-price {
  color: var(--gold-light);
}

/* Floating contact widgets */
.floating-contact-widgets {
  position: fixed;
  bottom: 25px;
  right: 25px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 900;
}

.float-btn {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: #fff;
  box-shadow: 0 4px 20px rgba(0,0,0,0.5);
  transition: var(--transition);
}

.float-wa {
  background: var(--wa-color);
}

.float-wa:hover {
  transform: scale(1.1);
  background: var(--wa-hover);
}

.float-call {
  background: var(--gold-primary);
  color: #000;
}

.float-call:hover {
  transform: scale(1.1);
}

/* Responsive Media Queries */
@media (max-width: 992px) {
  .hero-title {
    font-size: 2.8rem;
  }
  .store-info-grid {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .footer-newsletter {
    flex-direction: column;
    align-items: flex-start;
  }
  .newsletter-form {
    width: 100%;
    max-width: 100%;
  }
}

@media (max-width: 768px) {
  .top-bar-content {
    flex-direction: column;
    gap: 6px;
    text-align: center;
  }
  .nav-links {
    display: none; /* Mobile menu can be expanded if needed */
  }
  .hero-title {
    font-size: 2.2rem;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }
}
