/* style.css */
/* Design System and Premium Styles for JanakiRam Arts */

:root {
  --primary-dark: #0a0a0a;
  --secondary-dark: #121212;
  --tertiary-dark: #181818;
  --border-dark: #2a2a2a;
  --gold-primary: #d4af37;
  --gold-light: #f3e5ab;
  --gold-dark: #aa7c11;
  --gold-bright: #ffdf00;
  --gold-gradient: linear-gradient(135deg, #aa7c11 0%, #d4af37 50%, #f3e5ab 100%);
  --gold-glow: 0 0 15px rgba(212, 175, 55, 0.4);
  --text-light: #f5f5f5;
  --text-muted: #a0a0a0;
  --glass-bg: rgba(18, 18, 18, 0.7);
  --glass-border: rgba(212, 175, 55, 0.2);
  --glass-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.5);
  
  --font-serif: "Playfair Display", Georgia, serif;
  --font-sans: "Montserrat", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

/* Scrollbar styling */
::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}
::-webkit-scrollbar-track {
  background: var(--primary-dark);
}
::-webkit-scrollbar-thumb {
  background: var(--gold-dark);
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--gold-primary);
}

/* Reset and base styles */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  background-color: var(--primary-dark);
  color: var(--text-light);
  font-family: var(--font-sans);
  line-height: 1.6;
  overflow-x: hidden;
  position: relative;
}

/* Floating Gold Dust Particles Background Canvas */
#particles-canvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  pointer-events: none;
  background-color: var(--primary-dark);
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-serif);
  font-weight: 500;
  letter-spacing: 1px;
}

a {
  color: inherit;
  text-decoration: none;
  transition: all 0.3s ease;
}

/* Layout Utilities */
.section-container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

.text-center {
  text-align: center;
}

.hidden {
  display: none !important;
}

/* Separator styling */
.gold-separator {
  width: 80px;
  height: 2px;
  background: var(--gold-gradient);
  margin: 16px auto 0;
  position: relative;
}
.gold-separator::after {
  content: "♦";
  position: absolute;
  top: -8px;
  left: 50%;
  transform: translateX(-50%);
  color: var(--gold-primary);
  font-size: 10px;
  background: var(--primary-dark);
  padding: 0 4px;
}

/* Headings and Titles */
.section-header {
  margin-bottom: 48px;
}
.section-header .subtitle {
  color: var(--gold-primary);
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 3px;
  display: block;
  margin-bottom: 8px;
}
.section-header .title {
  font-size: 36px;
  font-weight: 600;
  text-transform: capitalize;
}

/* Button styles */
.gold-btn, .outline-btn, .whatsapp-order-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 28px;
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  border-radius: 2px;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  outline: none;
}

.gold-btn {
  background: var(--gold-gradient);
  color: var(--primary-dark);
  border: 1px solid var(--gold-primary);
  box-shadow: 0 4px 15px rgba(212, 175, 55, 0.2);
}
.gold-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4);
  background: var(--gold-bright);
}

.outline-btn {
  background: transparent;
  color: var(--gold-primary);
  border: 1px solid var(--gold-primary);
}
.outline-btn:hover {
  background: rgba(212, 175, 55, 0.1);
  color: var(--text-light);
  transform: translateY(-2px);
}

.whatsapp-order-btn {
  background: #25d366;
  color: white;
  border: none;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.2);
}
.whatsapp-order-btn:hover {
  background: #20ba5a;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}

.btn-full {
  width: 100%;
}

/* Sticky Header Style */
.sticky-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(10, 10, 10, 0.8);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(212, 175, 55, 0.1);
  transition: all 0.4s ease;
}
.sticky-header.scrolled {
  background: rgba(10, 10, 10, 0.95);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
  padding: 8px 0;
}

.header-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 16px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo-container .brand-logo {
  display: flex;
  flex-direction: column;
}
.brand-main {
  font-family: var(--font-serif);
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--text-light);
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.brand-sub {
  font-size: 9px;
  letter-spacing: 4px;
  color: var(--text-muted);
  text-transform: uppercase;
  margin-top: -2px;
}

/* Desktop Navigation */
.desktop-navigation {
  display: flex;
  gap: 32px;
}
.nav-link {
  font-size: 13px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--text-light);
  padding: 6px 0;
  position: relative;
}
.nav-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold-primary);
  transition: width 0.3s ease;
}
.nav-link:hover::after, .nav-link.active::after {
  width: 100%;
}
.nav-link:hover {
  color: var(--gold-primary);
}

/* Header Actions */
.header-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}
.action-btn {
  background: transparent;
  border: none;
  color: var(--text-light);
  cursor: pointer;
  position: relative;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: all 0.3s ease;
}
.action-btn:hover {
  background: rgba(212, 175, 55, 0.1);
  color: var(--gold-primary);
}
.action-btn .badge {
  position: absolute;
  top: 2px;
  right: 2px;
  background: var(--gold-gradient);
  color: var(--primary-dark);
  font-size: 9px;
  font-weight: 700;
  min-width: 16px;
  height: 16px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 4px;
}

/* Search Bar Dropdown */
.search-bar-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  background: rgba(18, 18, 18, 0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-dark);
  padding: 16px 24px;
  display: flex;
  justify-content: center;
  animation: slideDown 0.3s ease forwards;
}
.search-input-wrapper {
  max-width: 600px;
  width: 100%;
  position: relative;
}
.search-input-wrapper input {
  width: 100%;
  background: var(--primary-dark);
  border: 1px solid var(--gold-dark);
  color: var(--text-light);
  padding: 12px 48px 12px 20px;
  font-size: 15px;
  border-radius: 2px;
  outline: none;
}
.search-input-wrapper input:focus {
  border-color: var(--gold-primary);
  box-shadow: var(--gold-glow);
}
#search-clear-btn {
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  background: transparent;
  border: none;
  color: var(--text-muted);
  font-size: 20px;
  cursor: pointer;
}

@keyframes slideDown {
  from { transform: translateY(-10px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

/* Mobile Nav Drawer */
.mobile-nav-drawer {
  position: fixed;
  top: 0;
  right: -300px;
  width: 280px;
  height: 100%;
  background: var(--secondary-dark);
  z-index: 1050;
  box-shadow: -4px 0 30px rgba(0, 0, 0, 0.8);
  padding: 24px;
  display: flex;
  flex-direction: column;
  transition: right 0.4s cubic-bezier(0.77, 0, 0.175, 1);
}
.mobile-nav-drawer.open {
  right: 0;
}
.drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--border-dark);
  padding-bottom: 16px;
  margin-bottom: 24px;
}
.drawer-title {
  font-family: var(--font-serif);
  color: var(--gold-primary);
  font-size: 20px;
}
.close-btn {
  background: transparent;
  border: none;
  color: var(--text-light);
  font-size: 28px;
  cursor: pointer;
}
.mobile-nav-links {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.mobile-link {
  font-size: 16px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 2px;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}

/* Hero Section */
.hero-section {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: 80px;
}
.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, rgba(10, 10, 10, 0.95) 0%, rgba(10, 10, 10, 0.7) 50%, rgba(10, 10, 10, 0.4) 100%);
  z-index: 1;
}
.hero-content {
  position: relative;
  z-index: 2;
  flex: 1;
  padding-left: 8%;
  max-width: 650px;
}
.hero-text-block {
  animation: fadeInUp 1s ease;
}
.hero-subtitle {
  color: var(--gold-primary);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 4px;
  display: block;
  margin-bottom: 16px;
}
.hero-title {
  font-size: 56px;
  line-height: 1.1;
  margin-bottom: 24px;
}
.accent-text {
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.hero-description {
  color: var(--text-muted);
  font-size: 15px;
  margin-bottom: 36px;
  max-width: 480px;
}
.hero-cta-buttons {
  display: flex;
  gap: 16px;
}
.hero-image-wrapper {
  position: absolute;
  top: 0;
  right: 0;
  width: 55%;
  height: 100%;
  z-index: 0;
}
.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

@keyframes fadeInUp {
  from { transform: translateY(40px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

/* Trust Pillars Section */
.pillars-section {
  padding: 60px 0;
  background: rgba(18, 18, 18, 0.5);
  border-bottom: 1px solid var(--border-dark);
}
.pillar-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 32px;
}
.pillar-card {
  text-align: center;
  padding: 24px;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  box-shadow: var(--glass-shadow);
  border-radius: 4px;
  transition: all 0.3s ease;
}
.pillar-card:hover {
  transform: translateY(-5px);
  border-color: var(--gold-primary);
}
.pillar-icon {
  color: var(--gold-primary);
  margin-bottom: 16px;
}
.pillar-card h3 {
  font-size: 18px;
  margin-bottom: 8px;
}
.pillar-card p {
  font-size: 13px;
  color: var(--text-muted);
}

/* Featured Collections Section */
.collections-section {
  padding: 100px 0;
}
.collections-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  height: 500px;
}
.collection-box {
  position: relative;
  overflow: hidden;
  border-radius: 4px;
  border: 1px solid var(--border-dark);
}
.collection-bg {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  transition: transform 0.8s ease;
}
.collection-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(360deg, rgba(10, 10, 10, 0.9) 0%, rgba(10, 10, 10, 0.2) 100%);
  transition: opacity 0.5s ease;
}
.collection-details {
  position: absolute;
  bottom: 32px;
  left: 32px;
  z-index: 2;
}
.collection-details h3 {
  font-size: 28px;
  color: var(--text-light);
  margin-bottom: 8px;
}
.collection-link {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--gold-primary);
  letter-spacing: 2px;
  display: inline-block;
  padding-bottom: 4px;
  border-bottom: 1px solid var(--gold-primary);
}
.collection-box:hover .collection-bg {
  transform: scale(1.08);
}
.collection-box:hover .collection-link {
  color: var(--text-light);
  border-bottom-color: var(--text-light);
}
.collections-subgrid {
  display: grid;
  grid-template-rows: 1fr 1fr;
  gap: 24px;
}

/* Products Grid layout and Card */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 32px;
}
.flex-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}

.product-card {
  background: var(--secondary-dark);
  border: 1px solid var(--border-dark);
  border-radius: 4px;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  position: relative;
}
.product-card:hover {
  transform: translateY(-5px);
  border-color: var(--gold-primary);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6);
}
.product-card-image {
  position: relative;
  width: 100%;
  aspect-ratio: 1;
  overflow: hidden;
}
.product-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.product-card:hover .product-card-image img {
  transform: scale(1.05);
}
.badge-card {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--gold-gradient);
  color: var(--primary-dark);
  font-size: 10px;
  font-weight: 700;
  padding: 4px 8px;
  letter-spacing: 1px;
  border-radius: 2px;
  z-index: 2;
  text-transform: uppercase;
}

/* Card Quick actions overlay */
.card-actions-overlay {
  position: absolute;
  bottom: -40px;
  left: 0;
  width: 100%;
  display: flex;
  background: rgba(10, 10, 10, 0.9);
  backdrop-filter: blur(4px);
  border-top: 1px solid rgba(212, 175, 55, 0.2);
  transition: bottom 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  z-index: 3;
}
.product-card:hover .card-actions-overlay {
  bottom: 0;
}
.card-act-btn {
  flex: 1;
  background: transparent;
  border: none;
  color: var(--text-light);
  padding: 10px;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}
.card-act-btn:hover {
  background: var(--gold-primary);
  color: var(--primary-dark);
}
.card-wish-btn {
  flex: 0 0 45px;
  border-left: 1px solid var(--border-dark);
}
.card-wish-btn.active {
  color: var(--gold-primary);
  background: rgba(212, 175, 55, 0.1);
}

.product-card-details {
  padding: 20px;
}
.p-sku {
  font-size: 11px;
  color: var(--text-muted);
  letter-spacing: 1px;
  display: block;
  margin-bottom: 4px;
}
.p-title {
  font-family: var(--font-serif);
  font-size: 18px;
  margin-bottom: 8px;
  color: var(--text-light);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.p-price-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.p-price {
  font-size: 16px;
  font-weight: 600;
  color: var(--gold-primary);
}
.p-status {
  font-size: 11px;
  color: #25d366;
}
.p-status.pre-order {
  color: #f39c12;
}

/* Bestsellers section styling */
.bestsellers-section {
  padding: 100px 0;
  background: rgba(10, 10, 10, 0.4);
}

/* New Arrivals Banner Section */
.new-arrivals-section {
  padding: 60px 0;
}
.new-arrivals-banner-container {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  background: var(--tertiary-dark);
  border: 1px solid var(--border-dark);
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0,0,0,0.5);
}
.banner-text {
  padding: 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.badge-gold {
  color: var(--gold-primary);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 3px;
  margin-bottom: 16px;
  display: block;
}
.banner-text h2 {
  font-size: 40px;
  margin-bottom: 16px;
}
.banner-text p {
  color: var(--text-muted);
  margin-bottom: 32px;
}
.banner-image {
  background-size: cover;
  background-position: center;
  min-height: 400px;
}

/* About Section */
.about-section {
  padding: 100px 0;
  border-top: 1px solid var(--border-dark);
}
.about-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 60px;
  align-items: center;
}
.about-images {
  position: relative;
  height: 480px;
}
.about-img-large {
  width: 80%;
  height: 85%;
  background-size: cover;
  background-position: center;
  border: 1.5px solid var(--gold-dark);
  box-shadow: 0 10px 40px rgba(0,0,0,0.5);
}
.about-img-small {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 45%;
  height: 55%;
  background-size: cover;
  background-position: center;
  border: 1.5px solid var(--gold-primary);
  box-shadow: 0 10px 30px rgba(0,0,0,0.6);
  z-index: 2;
}
.about-content p {
  color: var(--text-muted);
  margin-top: 24px;
}
.legacy-stats {
  display: flex;
  gap: 32px;
  margin-top: 36px;
  border-top: 1px solid var(--border-dark);
  padding-top: 24px;
}
.stat-box h3 {
  font-size: 32px;
  color: var(--gold-primary);
  margin-bottom: 4px;
}
.stat-box p {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-muted);
  margin-top: 0;
}

/* Social Lookbook/Instagram Showcase */
.instagram-section {
  padding: 60px 0;
}
.instagram-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.insta-item {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
  border-radius: 2px;
  border: 1px solid var(--border-dark);
}
.insta-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.insta-hover {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(10,10,10,0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-primary);
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 2;
}
.insta-item:hover img {
  transform: scale(1.05);
}
.insta-item:hover .insta-hover {
  opacity: 1;
}

/* Customer Reviews / Testimonials */
.reviews-section {
  padding: 100px 0;
  background: rgba(18, 18, 18, 0.3);
  border-top: 1px solid var(--border-dark);
}
.google-rating-summary {
  font-size: 14px;
  color: var(--text-muted);
  margin-top: 8px;
}
.google-rating-summary span {
  color: var(--gold-primary);
  font-weight: 600;
}
.testimonials-slider {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 32px;
  margin-top: 48px;
}
.testimonial-card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  box-shadow: var(--glass-shadow);
  padding: 36px;
  border-radius: 4px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.testimonial-card .stars {
  color: var(--gold-primary);
  font-size: 14px;
  margin-bottom: 16px;
}
.testimonial-card .quote {
  font-style: italic;
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 24px;
}
.reviewer-info h4 {
  font-family: var(--font-sans);
  font-size: 15px;
  font-weight: 600;
}
.reviewer-info span {
  font-size: 11px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* FAQs Accordion */
.faqs-section {
  padding: 100px 0;
  border-top: 1px solid var(--border-dark);
}
.faq-accordion {
  max-width: 800px;
  margin: 48px auto 0;
}
.faq-item {
  background: var(--secondary-dark);
  border: 1px solid var(--border-dark);
  margin-bottom: 16px;
  border-radius: 2px;
}
.faq-question {
  width: 100%;
  background: transparent;
  border: none;
  color: var(--text-light);
  padding: 20px 24px;
  text-align: left;
  font-size: 16px;
  font-family: var(--font-sans);
  font-weight: 500;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.3s ease;
}
.faq-question:hover {
  color: var(--gold-primary);
}
.faq-icon {
  font-size: 20px;
  color: var(--gold-primary);
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s cubic-bezier(0, 1, 0, 1);
  padding: 0 24px;
}
.faq-answer p {
  color: var(--text-muted);
  font-size: 14px;
  padding-bottom: 20px;
}
.faq-item.active .faq-answer {
  max-height: 500px;
  transition: max-height 0.4s cubic-bezier(0.86, 0, 0.07, 1);
}
.faq-item.active .faq-icon {
  transform: rotate(45deg);
}

/* Store Contact & Map Section */
.store-info-section {
  padding: 80px 0 0;
  border-top: 1px solid var(--border-dark);
}
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  border: 1px solid var(--border-dark);
  border-radius: 4px;
  overflow: hidden;
  min-height: 480px;
}
.contact-info-panel {
  background: var(--tertiary-dark);
  padding: 48px;
}
.contact-info-panel h2 {
  font-size: 32px;
}
.contact-info-panel .gold-separator {
  margin: 16px 0 32px;
}
.info-item {
  display: flex;
  gap: 16px;
  margin-bottom: 24px;
}
.info-icon {
  color: var(--gold-primary);
  flex-shrink: 0;
}
.info-text h4 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 4px;
}
.info-text p, .info-text a {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.5;
}
.info-text a:hover {
  color: var(--gold-primary);
}
.contact-map-panel {
  height: 100%;
  min-height: 350px;
}

/* Shop / Catalog Page Specific Styles */
.shop-title-wrapper {
  padding: 120px 0 32px;
  text-align: center;
}
.catalog-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 32px;
  padding: 16px;
  background: var(--secondary-dark);
  border: 1px solid var(--border-dark);
  border-radius: 2px;
}
.search-box-wrapper {
  position: relative;
  max-width: 320px;
  width: 100%;
}
.search-box-wrapper input {
  width: 100%;
  background: var(--primary-dark);
  border: 1px solid var(--border-dark);
  color: var(--text-light);
  padding: 8px 36px 8px 12px;
  border-radius: 2px;
  outline: none;
  font-size: 13px;
}
.search-box-wrapper input:focus {
  border-color: var(--gold-primary);
}
.search-icon-inside {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-muted);
}
.custom-select {
  background: var(--primary-dark);
  color: var(--text-light);
  border: 1px solid var(--border-dark);
  padding: 8px 16px;
  border-radius: 2px;
  outline: none;
  font-size: 13px;
  cursor: pointer;
}
.custom-select:focus {
  border-color: var(--gold-primary);
}

.shop-layout {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 40px;
}
.shop-sidebar {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.filter-group h3 {
  font-size: 16px;
  font-family: var(--font-sans);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--gold-primary);
  margin-bottom: 16px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--border-dark);
}
.category-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.cat-btn, .coll-btn {
  background: transparent;
  border: none;
  color: var(--text-muted);
  font-size: 13px;
  text-align: left;
  cursor: pointer;
  padding: 4px 0;
  transition: all 0.3s ease;
  width: 100%;
}
.cat-btn:hover, .coll-btn:hover, .cat-btn.active, .coll-btn.active {
  color: var(--gold-primary);
  padding-left: 6px;
}
.price-range-wrapper {
  margin-top: 12px;
}
#price-range {
  width: 100%;
  accent-color: var(--gold-primary);
  background: var(--border-dark);
  height: 4px;
  outline: none;
}
.price-range-labels {
  display: flex;
  justify-content: space-between;
  font-size: 11px;
  color: var(--text-muted);
  margin-top: 8px;
}
.no-products-message {
  text-align: center;
  padding: 60px;
  border: 1px dashed var(--border-dark);
  border-radius: 4px;
}
.no-products-message p {
  color: var(--text-muted);
  margin-bottom: 20px;
}

/* Interactive Floating Modules: Drawers & Modals */

.drawer-overlay, .modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(5, 5, 5, 0.85);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 2000;
  transition: opacity 0.3s ease;
}

.shopping-drawer {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  max-width: 440px;
  height: 100%;
  background: var(--secondary-dark);
  box-shadow: -10px 0 40px rgba(0, 0, 0, 0.8);
  display: flex;
  flex-direction: column;
  z-index: 2010;
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.drawer-overlay:not(.hidden) .shopping-drawer {
  transform: translateX(0);
}

.drawer-header {
  padding: 24px;
  border-bottom: 1px solid var(--border-dark);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.drawer-header h3 {
  font-family: var(--font-serif);
  font-size: 20px;
  color: var(--gold-primary);
}
.drawer-items {
  flex: 1;
  overflow-y: auto;
  padding: 24px;
}

/* Cart Item Cards inside Drawer */
.cart-item {
  display: flex;
  gap: 16px;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border-dark);
}
.cart-item-image {
  width: 80px;
  height: 80px;
  border-radius: 2px;
  overflow: hidden;
  border: 1px solid var(--border-dark);
  flex-shrink: 0;
}
.cart-item-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cart-item-info {
  flex: 1;
  display: flex;
  flex-direction: column;
}
.cart-item-info h4 {
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 4px;
}
.cart-item-sku {
  font-size: 10px;
  color: var(--text-muted);
  margin-bottom: 8px;
}
.cart-item-price {
  font-size: 14px;
  font-weight: 600;
  color: var(--gold-primary);
  margin-bottom: 10px;
}
.cart-item-controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.qty-adjuster {
  display: flex;
  align-items: center;
  border: 1px solid var(--border-dark);
}
.qty-adjust-btn {
  background: transparent;
  border: none;
  color: var(--text-light);
  width: 24px;
  height: 24px;
  cursor: pointer;
}
.qty-val {
  font-size: 12px;
  width: 28px;
  text-align: center;
}
.remove-item-btn {
  background: transparent;
  border: none;
  color: var(--text-muted);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  transition: color 0.3s ease;
}
.remove-item-btn:hover {
  color: #ff3b30;
}

.drawer-footer {
  padding: 24px;
  border-top: 1px solid var(--border-dark);
  background: var(--tertiary-dark);
}
.cart-subtotal-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}
.cart-subtotal-wrapper span {
  font-size: 16px;
}
#cart-subtotal-value {
  font-weight: 600;
  color: var(--gold-primary);
  font-size: 20px;
}
.cart-terms {
  font-size: 11px;
  color: var(--text-muted);
  margin-bottom: 20px;
}

/* Product Detail Modal Overlay */
.product-modal {
  position: absolute;
  top: 50px;
  left: 50%;
  transform: translateX(-50%);
  width: 90%;
  max-width: 960px;
  background: var(--secondary-dark);
  border: 1px solid var(--gold-primary);
  border-radius: 4px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8);
  padding: 40px;
  z-index: 2020;
  max-height: 90vh;
  overflow-y: auto;
  animation: modalEnter 0.4s cubic-bezier(0.165, 0.84, 0.44, 1) forwards;
}

@keyframes modalEnter {
  from { transform: translate(-50%, 20px); opacity: 0; }
  to { transform: translate(-50%, 0); opacity: 1; }
}

.modal-close-btn {
  position: absolute;
  top: 16px;
  right: 20px;
  background: transparent;
  border: none;
  color: var(--text-muted);
  font-size: 32px;
  cursor: pointer;
  transition: color 0.3s ease;
  z-index: 10;
}
.modal-close-btn:hover {
  color: var(--gold-primary);
}

.modal-body-layout {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 40px;
}

/* Main Image Magnifier / Zoom Styling */
.product-gallery-section {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.main-image-viewport {
  position: relative;
  width: 100%;
  aspect-ratio: 1;
  background: var(--primary-dark);
  border: 1px solid var(--border-dark);
  border-radius: 2px;
  overflow: hidden;
}
.main-image-viewport img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.zoom-lens {
  position: absolute;
  border: 1px solid var(--gold-primary);
  width: 120px;
  height: 120px;
  background: rgba(212, 175, 55, 0.15);
  cursor: zoom-in;
  display: none;
  z-index: 5;
}
.zoom-result {
  position: absolute;
  border: 1.5px solid var(--gold-primary);
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-repeat: no-repeat;
  display: none;
  background-color: var(--primary-dark);
  z-index: 6;
}

.gallery-thumbnails {
  display: flex;
  gap: 10px;
}
.thumb-img {
  width: 60px;
  height: 60px;
  object-fit: cover;
  border: 1px solid var(--border-dark);
  cursor: pointer;
  border-radius: 2px;
  opacity: 0.6;
  transition: all 0.3s ease;
}
.thumb-img.active, .thumb-img:hover {
  opacity: 1;
  border-color: var(--gold-primary);
}

.product-info-section {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.product-sku {
  font-size: 11px;
  letter-spacing: 2px;
  color: var(--text-muted);
}
.product-title-detail {
  font-size: 28px;
  margin-top: 4px;
}
.product-rating {
  font-size: 13px;
  color: var(--gold-primary);
}
.rating-text {
  color: var(--text-muted);
}
.product-price-detail {
  font-size: 24px;
  font-weight: 600;
  color: var(--gold-primary);
  margin-top: 8px;
}
.product-description-detail {
  font-size: 14px;
  color: var(--text-muted);
}
.specs-wrapper h4 {
  font-size: 13px;
  text-transform: uppercase;
  color: var(--gold-primary);
  margin-bottom: 8px;
}
.specs-list {
  list-style-position: inside;
  font-size: 12px;
  color: var(--text-muted);
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.status-label {
  font-size: 13px;
}
.status-value {
  font-size: 13px;
  font-weight: 600;
}
.status-value.in-stock {
  color: #25d366;
}

.info-bottom {
  border-top: 1px solid var(--border-dark);
  padding-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.quantity-picker {
  display: flex;
  align-items: center;
  border: 1px solid var(--border-dark);
  max-width: 120px;
}
.qty-btn {
  background: transparent;
  border: none;
  color: var(--text-light);
  width: 36px;
  height: 36px;
  cursor: pointer;
  font-size: 16px;
}
#qty-input {
  width: 48px;
  border: none;
  background: transparent;
  color: var(--text-light);
  text-align: center;
  outline: none;
  font-family: var(--font-sans);
  font-size: 14px;
}
.detail-actions {
  display: flex;
  gap: 12px;
}
.flex-grow {
  flex-grow: 1;
}

/* Modal Related Products Layout */
.modal-related-products {
  border-top: 1px solid var(--border-dark);
  margin-top: 40px;
  padding-top: 32px;
}
.modal-related-products h3 {
  font-size: 20px;
  margin-bottom: 24px;
  color: var(--gold-primary);
}

/* Checkout and Payment Dialog */
.checkout-modal {
  position: absolute;
  top: 50px;
  left: 50%;
  transform: translateX(-50%);
  width: 90%;
  max-width: 800px;
  background: var(--secondary-dark);
  border: 1px solid var(--gold-primary);
  border-radius: 4px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8);
  padding: 40px;
  z-index: 2020;
  max-height: 90vh;
  overflow-y: auto;
  animation: modalEnter 0.4s cubic-bezier(0.165, 0.84, 0.44, 1) forwards;
}
.checkout-form {
  margin-top: 32px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.form-group {
  margin-bottom: 20px;
}
.form-group label {
  display: block;
  font-size: 12px;
  color: var(--gold-primary);
  text-transform: uppercase;
  margin-bottom: 8px;
  letter-spacing: 1px;
}
.form-group input, .form-group textarea {
  width: 100%;
  background: var(--primary-dark);
  border: 1px solid var(--border-dark);
  color: var(--text-light);
  padding: 10px 16px;
  border-radius: 2px;
  font-family: var(--font-sans);
  font-size: 14px;
  outline: none;
  transition: border-color 0.3s ease;
}
.form-group input:focus, .form-group textarea:focus {
  border-color: var(--gold-primary);
}
.order-summary-box {
  background: var(--tertiary-dark);
  border: 1px solid var(--border-dark);
  padding: 16px;
  border-radius: 2px;
  margin-bottom: 24px;
  text-align: right;
}
.order-summary-box h4 {
  font-family: var(--font-sans);
  font-size: 16px;
}
.order-summary-box span {
  color: var(--gold-primary);
  font-size: 20px;
  margin-left: 8px;
}

/* Stage 2 Payment Layout */
.payment-layout {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 40px;
  margin-top: 32px;
}
.qr-column {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: var(--tertiary-dark);
  border: 1px solid var(--border-dark);
  padding: 24px;
  border-radius: 4px;
}
.qr-box-wrapper {
  background: white;
  padding: 16px;
  border-radius: 8px;
  width: 220px;
  height: 220px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
}
.qr-box-wrapper img {
  width: 100%;
  height: 100%;
}
.qr-badge {
  position: absolute;
  bottom: -10px;
  background: var(--gold-primary);
  color: var(--primary-dark);
  font-size: 10px;
  font-weight: 700;
  padding: 2px 10px;
  border-radius: 20px;
}
.upi-id-copy-wrapper {
  margin-top: 24px;
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--primary-dark);
  padding: 8px 16px;
  border-radius: 20px;
  border: 1px solid var(--border-dark);
}
.upi-id-label {
  font-size: 11px;
  color: var(--text-muted);
}
#upi-id-text {
  font-size: 13px;
  color: var(--text-light);
}
.copy-btn {
  background: var(--gold-gradient);
  border: none;
  color: var(--primary-dark);
  padding: 2px 10px;
  font-size: 10px;
  font-weight: 700;
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.3s ease;
}
.copy-btn:hover {
  transform: scale(1.05);
}

.amount-to-pay {
  background: var(--tertiary-dark);
  border: 1px solid var(--border-dark);
  padding: 16px;
  border-radius: 4px;
  margin-bottom: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.amount-to-pay span {
  font-size: 13px;
  color: var(--text-muted);
}
.amount-to-pay h3 {
  font-family: var(--font-sans);
  color: var(--gold-primary);
  font-size: 24px;
  font-weight: 700;
}
.instructions-list {
  padding-left: 20px;
  font-size: 13px;
  color: var(--text-muted);
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 32px;
}
.gold-highlight {
  color: var(--gold-primary);
  font-weight: 600;
}

/* Floating WhatsApp Widget */
.whatsapp-widget {
  position: fixed;
  bottom: 32px;
  right: 32px;
  z-index: 999;
}
.whatsapp-float-btn {
  background: #25d366;
  color: white;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 10px rgba(0,0,0,0.3);
  position: relative;
  transition: transform 0.3s ease;
}
.whatsapp-float-btn:hover {
  transform: scale(1.1);
}
.whatsapp-float-btn .pulse-ring {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border: 2px solid #25d366;
  animation: pulse 1.8s infinite;
  box-sizing: border-box;
}

.whatsapp-float-btn .tooltip-text {
  visibility: hidden;
  width: 140px;
  background-color: var(--secondary-dark);
  color: var(--text-light);
  border: 1px solid var(--gold-primary);
  text-align: center;
  padding: 6px;
  border-radius: 4px;
  font-size: 11px;
  font-weight: 500;
  position: absolute;
  z-index: 1;
  right: 70px;
  opacity: 0;
  transition: opacity 0.3s;
  box-shadow: 0 4px 20px rgba(0,0,0,0.5);
}
.whatsapp-float-btn:hover .tooltip-text {
  visibility: visible;
  opacity: 1;
}

@keyframes pulse {
  0% { transform: scale(1); opacity: 1; }
  100% { transform: scale(1.6); opacity: 0; }
}

/* Newsletter & Footer styling */
#main-footer {
  background: var(--secondary-dark);
  border-top: 1px solid var(--border-dark);
}
.footer-newsletter {
  background: var(--tertiary-dark);
  border-bottom: 1px solid var(--border-dark);
  padding: 40px 0;
}
.newsletter-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 32px;
}
.newsletter-text h3 {
  font-size: 24px;
  margin-bottom: 4px;
}
.newsletter-text p {
  color: var(--text-muted);
  font-size: 13px;
}
.newsletter-form {
  display: flex;
  max-width: 460px;
  width: 100%;
}
.newsletter-form input {
  flex-grow: 1;
  background: var(--primary-dark);
  border: 1px solid var(--border-dark);
  border-right: none;
  color: var(--text-light);
  padding: 12px 20px;
  outline: none;
  font-family: var(--font-sans);
  font-size: 14px;
}
.newsletter-form input:focus {
  border-color: var(--gold-primary);
}
.newsletter-form button {
  border-radius: 0;
}

.footer-main {
  padding: 80px 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 60px;
}
.footer-brand-col .footer-logo {
  font-family: var(--font-serif);
  font-size: 24px;
  color: var(--gold-primary);
  display: block;
  margin-bottom: 20px;
}
.footer-brand-col p {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 24px;
}
.social-links {
  display: flex;
  gap: 16px;
}
.social-links a {
  color: var(--text-muted);
  border: 1px solid var(--border-dark);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.social-links a:hover {
  color: var(--gold-primary);
  border-color: var(--gold-primary);
  background: rgba(212, 175, 55, 0.05);
}

.footer-links-col h4 {
  font-size: 16px;
  color: var(--gold-primary);
  margin-bottom: 24px;
}
.footer-links-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer-links-col ul a {
  font-size: 13px;
  color: var(--text-muted);
}
.footer-links-col ul a:hover {
  color: var(--gold-primary);
  padding-left: 4px;
}

.footer-bottom {
  border-top: 1px solid var(--border-dark);
  padding: 24px 0;
  font-size: 12px;
  color: var(--text-muted);
}
.bottom-flex {
  display: flex;
  justify-content: space-between;
}

/* Responsiveness media queries */

@media (max-width: 1024px) {
  .hero-title {
    font-size: 44px;
  }
  .about-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .about-images {
    height: 380px;
  }
  .contact-layout {
    grid-template-columns: 1fr;
  }
  .contact-map-panel {
    height: 350px;
  }
  .modal-body-layout {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .payment-layout {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}

@media (max-width: 768px) {
  .desktop-navigation {
    display: none;
  }
  .mobile-only {
    display: flex !important;
  }
  .hero-section {
    flex-direction: column;
    height: auto;
    padding-bottom: 60px;
  }
  .hero-image-wrapper {
    position: relative;
    width: 100%;
    height: 350px;
    margin-top: 40px;
  }
  .hero-content {
    padding-left: 24px;
    padding-right: 24px;
    max-width: 100%;
  }
  .hero-title {
    font-size: 36px;
  }
  .newsletter-flex {
    flex-direction: column;
    text-align: center;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .bottom-flex {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }
  .collections-grid {
    grid-template-columns: 1fr;
    height: auto;
  }
  .collections-subgrid {
    height: 400px;
  }
  .shop-layout {
    grid-template-columns: 1fr;
  }
  .shop-sidebar {
    display: none; /* Can be toggled on mobile, but keep simple for now */
  }
  .instagram-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .product-modal, .checkout-modal {
    width: 95%;
    padding: 20px;
  }
}
