/* ==========================================================================
   DESIGN SYSTEM & THEME TOKENS (HIGH-FIDELITY BLUEPRINT)
   ========================================================================== */
:root {
  /* Color Palette (Exact Reference Tones) */
  --color-maroon-dark: #4d0b0d;
  --color-maroon: #791216;
  --color-maroon-light: #971a1d;
  --color-maroon-bg: #320305;
  --color-gold: #c59b27;
  --color-gold-light: #eec46b;
  --color-gold-dark: #997312;
  --color-cream: #faf6ee;
  --color-cream-dark: #f0e6d2;
  --color-dark: #120405;
  --color-white: #ffffff;
  
  /* Text Colors */
  --color-text-dark: #1f1515;
  --color-text-light: #ffffff;
  --color-text-muted: #6b5c5a;
  
  /* Fonts */
  --font-serif: 'Marcellus', serif;
  --font-cursive: 'Playball', cursive;
  --font-sans: 'Poppins', sans-serif;
  
  /* Shadows & Transitions */
  --shadow-premium: 0 10px 25px rgba(0, 0, 0, 0.05), 0 3px 10px rgba(0, 0, 0, 0.03);
  --shadow-hover: 0 15px 30px rgba(121, 18, 22, 0.12);
  --shadow-card-subtle: 0 4px 12px rgba(0, 0, 0, 0.02);
  --shadow-dark-hero: 0 20px 40px rgba(0, 0, 0, 0.6);
  --transition-smooth: all 0.35s cubic-bezier(0.25, 0.8, 0.25, 1);
  --transition-fast: all 0.2s ease-out;
  
  /* Border Radius */
  --radius-sm: 4px;
  --radius-md: 6px;
  --radius-lg: 12px;
  --radius-circle: 50%;
}

/* ==========================================================================
   RESET & BASE CONFIGURATION
   ========================================================================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

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

body {
  font-family: var(--font-sans);
  background-color: var(--color-white);
  color: var(--color-text-dark);
  line-height: 1.5;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

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

ul {
  list-style: none;
}

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

.highlight-gold {
  color: var(--color-gold);
}

/* ==========================================================================
   BUTTONS (PREMIUM CTA STYLE)
   ========================================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  border-radius: 4px;
  cursor: pointer;
  transition: var(--transition-smooth);
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background-color: var(--color-maroon);
  color: var(--color-white);
  border: 1px solid var(--color-maroon);
}

.btn-primary:hover {
  background-color: var(--color-maroon-dark);
  border-color: var(--color-gold);
  color: var(--color-gold);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(121, 18, 22, 0.35);
}

.btn-secondary {
  background-color: transparent;
  color: var(--color-white);
  border: 1.5px solid rgba(255, 255, 255, 0.4);
}

.btn-secondary:hover {
  border-color: var(--color-gold);
  color: var(--color-gold);
  background-color: rgba(255, 255, 255, 0.05);
  transform: translateY(-2px);
}

.btn-primary-maroon-solid {
  background-color: var(--color-maroon);
  color: var(--color-white);
  border: 1px solid var(--color-maroon);
  border-radius: 4px;
  padding: 12px 28px;
  font-size: 0.85rem;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: var(--transition-smooth);
}

.btn-primary-maroon-solid:hover {
  background-color: var(--color-maroon-dark);
  border-color: var(--color-gold);
  color: var(--color-gold);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(121, 18, 22, 0.25);
}

.btn-gold-solid {
  background-color: var(--color-gold);
  color: var(--color-dark);
  border: 1px solid var(--color-gold);
  font-weight: 800;
}

.btn-gold-solid:hover {
  background-color: var(--color-gold-light);
  border-color: var(--color-gold-light);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(197, 155, 39, 0.25);
}

.btn-quote {
  padding: 10px 20px;
  font-size: 0.8rem;
  background-color: var(--color-maroon);
  color: var(--color-white);
  border: 1.5px solid var(--color-maroon);
  border-radius: 4px;
  font-weight: 700;
}

.btn-quote:hover {
  background-color: var(--color-maroon-dark);
  color: var(--color-gold);
  border-color: var(--color-gold);
  transform: scale(1.02);
}

.btn-text-red {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--color-maroon);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  position: relative;
  padding-bottom: 2px;
}

.btn-text-red::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1.5px;
  background-color: var(--color-maroon);
  transform: scaleX(0.7);
  transform-origin: left;
  transition: var(--transition-smooth);
}

.btn-text-red:hover::after {
  transform: scaleX(1);
}

.icon-btn, .icon-btn-arrow, .icon-small {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

.icon-btn-arrow {
  transition: var(--transition-smooth);
}

.btn:hover .icon-btn-arrow,
.btn-primary-maroon-solid:hover .icon-btn-arrow,
.btn-text-red:hover .icon-btn-arrow {
  transform: translateX(4px);
}

/* ==========================================================================
   TOP BAR UTILITY BAR
   ========================================================================== */
.top-bar {
  background-color: var(--color-maroon-dark);
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.72rem;
  font-weight: 500;
  padding: 6px 0;
  border-bottom: 1.5px solid var(--color-gold);
  letter-spacing: 0.5px;
}

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

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

.top-left span, .top-middle span {
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.gov-separator {
  opacity: 0.4;
  color: var(--color-gold);
}

.social-link {
  color: rgba(255, 255, 255, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-fast);
}

.social-link:hover {
  color: var(--color-gold);
}

.social-icon {
  width: 13px;
  height: 13px;
}

/* ==========================================================================
   HEADER NAVIGATION (BLUEPRINT PROPORTIONS)
   ========================================================================== */
.main-header {
  position: sticky;
  top: 0;
  background-color: var(--color-white);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
  z-index: 100;
  padding: 8px 0;
  height: 90px;
  display: flex;
  align-items: center;
  transition: var(--transition-smooth);
}

.main-header.scrolled {
  height: 80px;
  background-color: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(8px);
  border-bottom: 1.5px solid var(--color-cream-dark);
}

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

/* Logo Block Reconstruction */
.logo-area {
  display: flex;
  align-items: center;
}

.logo-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
}

.logo-top {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  padding-top: 10px;
}

.brand-crown {
  color: var(--color-gold);
  position: absolute;
  top: -8px;
  filter: drop-shadow(0 1px 2px rgba(0,0,0,0.15));
}

.logo-aj {
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 800;
  color: var(--color-maroon);
  line-height: 0.85;
  letter-spacing: -1.5px;
}

.logo-middle {
  border-top: 1.5px solid var(--color-gold);
  border-bottom: 1.5px solid var(--color-gold);
  padding: 1px 12px;
  margin-top: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo-title {
  font-family: var(--font-serif);
  font-size: 0.9rem;
  font-weight: 800;
  color: var(--color-maroon);
  letter-spacing: 2px;
  line-height: 1;
}

.logo-bottom {
  margin-top: 1px;
}

.logo-subtitle {
  font-size: 0.52rem;
  font-weight: 700;
  color: var(--color-gold-dark);
  letter-spacing: 2px;
  line-height: 1;
  text-transform: uppercase;
}

/* Navigation Links */
.nav-links ul {
  display: flex;
  align-items: center;
  gap: 22px;
}

.nav-links a {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--color-text-dark);
  letter-spacing: 0.5px;
  position: relative;
  padding: 6px 0;
}

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

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 50%;
  transform: translateX(-50%) scaleX(0);
  width: 14px;
  height: 3px;
  background-color: var(--color-maroon);
  transition: var(--transition-smooth);
}

.nav-links a.active::after,
.nav-links a:hover::after {
  transform: translateX(-50%) scaleX(1);
}

.has-dropdown a {
  display: flex;
  align-items: center;
  gap: 4px;
}

.icon-dropdown {
  width: 14px;
  height: 14px;
  color: var(--color-maroon);
}

.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 24px;
  height: 16px;
  background: transparent;
  border: none;
  cursor: pointer;
  z-index: 101;
}

.menu-toggle .bar {
  width: 100%;
  height: 2px;
  background-color: var(--color-maroon);
  transition: var(--transition-smooth);
}

.menu-toggle.open .bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle.open .bar:nth-child(2) {
  opacity: 0;
}

.menu-toggle.open .bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ==========================================================================
   HERO SECTION (CINEMATIC LUXURY DENSITY)
   ========================================================================== */
.hero-section {
  background: radial-gradient(circle at 75% 50%, rgba(121, 18, 22, 0.6) 0%, rgba(77, 11, 13, 0.95) 40%, #0d0405 100%);
  color: var(--color-white);
  padding: 40px 0 50px 0;
  position: relative;
  overflow: hidden;
  border-bottom: 3px solid var(--color-gold);
}

.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='80' height='80' viewBox='0 0 80 80'%3E%3Cpath d='M0 0h80v80H0z' fill='none'/%3E%3Cpath d='M5 5h10v10H5zm20 20h10v10H25zm20-20h10v10H45z' fill='%23ffffff' fill-opacity='.01'/%3E%3C/svg%3E");
  opacity: 0.2;
  pointer-events: none;
}

.hero-container {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  align-items: center;
  gap: 30px;
}

.hero-content {
  z-index: 2;
}

.hero-subtext {
  font-family: var(--font-cursive);
  font-size: 2.8rem;
  color: var(--color-gold);
  display: block;
  margin-bottom: 0px;
  line-height: 1.1;
  text-shadow: 0 2px 4px rgba(0,0,0,0.5);
}

.hero-title {
  font-family: var(--font-serif);
  font-size: 4rem;
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: 0.5px;
  margin-bottom: 16px;
  text-shadow: 0 4px 10px rgba(0,0,0,0.6);
}

.hero-description-bullets {
  font-size: 0.95rem;
  font-weight: 500;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 24px;
  border-left: 2px solid var(--color-gold);
  padding-left: 14px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-visual {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  position: relative;
  z-index: 2;
}

.hero-image-wrapper {
  width: 100%;
  max-width: 580px;
  filter: drop-shadow(0 15px 30px rgba(0, 0, 0, 0.7));
  transition: var(--transition-smooth);
}

.hero-image-wrapper:hover {
  transform: scale(1.02);
}

.hero-main-image {
  width: 100%;
  height: auto;
  object-fit: contain;
}

/* ==========================================================================
   FEATURES VALUE PROPS ROW
   ========================================================================== */
.features-section {
  background-color: var(--color-cream);
  padding: 24px 0;
  border-bottom: 1.5px solid var(--color-cream-dark);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 12px;
}

.feature-card {
  text-align: center;
  background-color: var(--color-white);
  padding: 20px 10px;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-card-subtle);
  border: 1px solid rgba(197, 155, 39, 0.15);
  transition: var(--transition-smooth);
}

.feature-card:hover {
  transform: translateY(-4px);
  border-color: var(--color-gold);
  box-shadow: var(--shadow-hover);
}

.feature-circle-outer {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 1.5px solid var(--color-maroon);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 12px auto;
  padding: 2px;
  transition: var(--transition-smooth);
}

.feature-circle-inner {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background-color: var(--color-maroon);
  color: var(--color-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-smooth);
}

.feature-card:hover .feature-circle-inner {
  background-color: var(--color-gold);
  color: var(--color-maroon);
}

.feature-icon {
  width: 22px;
  height: 22px;
}

.feature-card h3 {
  font-family: var(--font-serif);
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--color-maroon);
  letter-spacing: 0.5px;
  margin-bottom: 6px;
}

.feature-card p {
  font-size: 0.72rem;
  color: var(--color-text-muted);
  line-height: 1.35;
  font-weight: 500;
}

/* ==========================================================================
   PRODUCTS GRID SECTION (HIGH DENSITY)
   ========================================================================== */
.products-section {
  padding: 45px 0;
  background-color: var(--color-white);
}

.section-title-wrapper {
  text-align: center;
  margin-bottom: 35px;
}

.divider-gold-wrapper {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 8px;
}

.divider-line {
  display: inline-block;
  width: 50px;
  height: 1.5px;
  background: linear-gradient(to right, transparent, var(--color-gold), transparent);
}

.divider-star {
  color: var(--color-gold);
  font-size: 0.8rem;
}

.section-title {
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 700;
  color: var(--color-maroon-dark);
  letter-spacing: 1px;
}

.section-subtitle {
  font-size: 0.85rem;
  color: var(--color-text-muted);
  font-weight: 600;
}

/* 6 Column Grid Matching Layout Proportions */
.products-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 12px;
  margin-bottom: 30px;
}

.product-card {
  background-color: var(--color-white);
  border: 1px solid var(--color-cream-dark);
  border-radius: var(--radius-sm);
  padding: 12px;
  text-align: center;
  transition: var(--transition-smooth);
  box-shadow: 0 3px 8px rgba(0,0,0,0.01);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}

.product-card:hover {
  border-color: var(--color-gold);
  box-shadow: var(--shadow-hover);
  transform: translateY(-4px);
}

.product-image-container {
  background-color: var(--color-cream);
  border-radius: var(--radius-sm);
  padding: 10px;
  margin-bottom: 10px;
  overflow: hidden;
  aspect-ratio: 0.95;
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-image {
  max-height: 140px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 5px 10px rgba(0,0,0,0.1));
  transition: var(--transition-smooth);
}

.product-card:hover .product-image {
  transform: scale(1.05) rotate(1deg);
  filter: drop-shadow(0 8px 15px rgba(121, 18, 22, 0.15));
}

.product-name {
  font-family: var(--font-serif);
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--color-maroon);
  letter-spacing: 0.5px;
  margin-bottom: 12px;
  min-height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.btn-product-view {
  display: block;
  padding: 6px 0;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--color-maroon);
  border: 1.2px solid var(--color-maroon);
  border-radius: var(--radius-sm);
  background-color: transparent;
  transition: var(--transition-smooth);
}

.product-card:hover .btn-product-view {
  background-color: var(--color-maroon);
  color: var(--color-white);
  border-color: var(--color-maroon);
}

.products-bottom-action {
  text-align: center;
}

/* ==========================================================================
   ABOUT US SECTION (CUSTOM GRUNGE/TORN IMAGE MASK)
   ========================================================================== */
.about-section {
  background-color: var(--color-cream);
  padding: 45px 0;
  border-top: 1.5px solid var(--color-cream-dark);
  border-bottom: 1.5px solid var(--color-cream-dark);
}

.about-container {
  display: grid;
  grid-template-columns: 1.2fr 0.95fr 0.85fr;
  align-items: center;
  gap: 35px;
}

.about-content {
  z-index: 2;
}

.about-tag {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  color: var(--color-maroon);
  border-bottom: 2px solid var(--color-gold);
  padding-bottom: 2px;
  display: inline-block;
  margin-bottom: 12px;
}

.about-title {
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.15;
  color: var(--color-maroon-dark);
  margin-bottom: 15px;
}

.about-description {
  font-size: 0.85rem;
  color: var(--color-text-muted);
  margin-bottom: 15px;
  line-height: 1.45;
}

.about-action {
  margin-top: 20px;
}

.about-graphic {
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Torn frame recreation with custom clip-path stroke mask */
.torn-frame {
  width: 290px;
  height: 290px;
  overflow: hidden;
  box-shadow: var(--shadow-premium);
  position: relative;
  clip-path: polygon(1% 4%, 97% 2%, 99% 96%, 95% 98%, 2% 95%, 0% 48%);
  border: 4px solid var(--color-white);
  background-color: var(--color-white);
  transition: var(--transition-smooth);
}

.about-spices-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 12s ease-in-out;
}

.torn-frame:hover .about-spices-img {
  transform: scale(1.1) rotate(5deg);
}

.about-stats {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.stat-item {
  display: flex;
  align-items: center;
  gap: 12px;
  background-color: var(--color-white);
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  border-left: 3px solid var(--color-maroon);
  box-shadow: var(--shadow-card-subtle);
}

.stat-icon-wrapper {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: rgba(197, 155, 39, 0.12);
  color: var(--color-gold-dark);
  display: flex;
  align-items: center;
  justify-content: center;
}

.stat-icon {
  width: 18px;
  height: 18px;
}

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

.stat-number {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--color-maroon);
  line-height: 1.1;
}

.stat-label {
  font-size: 0.7rem;
  color: var(--color-text-muted);
  font-weight: 600;
  letter-spacing: 0.3px;
}

/* ==========================================================================
   BULK ENQUIRY BANNER
   ========================================================================== */
.bulk-order-section {
  padding: 40px 0;
  background-color: var(--color-white);
}

.bulk-banner {
  background: linear-gradient(135deg, var(--color-maroon-dark) 0%, var(--color-maroon) 100%);
  border-radius: var(--radius-sm);
  padding: 30px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-shadow: 0 8px 24px rgba(121, 18, 22, 0.2);
  position: relative;
  overflow: hidden;
  border: 1.5px solid var(--color-gold);
}

.bulk-banner::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 250px;
  height: 100%;
  background: radial-gradient(circle at 100% 50%, rgba(197, 155, 39, 0.12) 0%, transparent 60%);
}

.bulk-banner-content {
  max-width: 65%;
  z-index: 1;
}

.bulk-banner-content h2 {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--color-gold);
  margin-bottom: 8px;
  letter-spacing: 0.5px;
}

.bulk-banner-content p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.85rem;
  line-height: 1.45;
}

.bulk-banner-action {
  z-index: 1;
}

/* ==========================================================================
   FOOTER (DEEP DENSE MAROON STYLE)
   ========================================================================== */
.main-footer {
  background-color: var(--color-maroon-bg);
  color: rgba(255, 255, 255, 0.75);
  padding: 60px 0 0 0;
  border-top: 3.5px solid var(--color-gold);
}

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

.footer-col h3 {
  font-family: var(--font-serif);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--color-gold);
  margin-bottom: 18px;
  letter-spacing: 1px;
  position: relative;
  padding-bottom: 6px;
  border-bottom: 1.5px solid rgba(197, 155, 39, 0.2);
}

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

.footer-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 15px;
}

.footer-logo .brand-name {
  color: var(--color-white);
  font-size: 1.3rem;
}

.footer-logo .brand-subtitle {
  color: var(--color-gold);
}

.bio-text {
  font-size: 0.8rem;
  line-height: 1.5;
  margin-bottom: 18px;
  color: rgba(255, 255, 255, 0.65);
}

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

.social-icons a {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--color-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-smooth);
}

.social-icons a:hover {
  background-color: var(--color-gold);
  color: var(--color-maroon-bg);
  transform: translateY(-2px);
}

.social-icons svg {
  width: 14px;
  height: 14px;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.7);
  display: inline-block;
}

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

.contact-details li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 12px;
  font-size: 0.8rem;
  line-height: 1.45;
}

.icon-footer {
  width: 16px;
  height: 16px;
  color: var(--color-gold);
  flex-shrink: 0;
  margin-top: 2px;
}

.contact-details a:hover {
  color: var(--color-gold);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.04);
  padding: 18px 0;
  background-color: rgba(0, 0, 0, 0.3);
}

.bottom-container {
  display: flex;
  justify-content: center;
  text-align: center;
}

.footer-bottom p {
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.45);
}

/* ==========================================================================
   PREMIUM FLOATING WHATSAPP FAB (BOTTOM-RIGHT)
   ========================================================================== */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 998;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: linear-gradient(145deg, #2ee06a 0%, #25d366 45%, #1aab52 100%);
  color: var(--color-white);
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  box-shadow:
    0 10px 28px rgba(37, 211, 102, 0.42),
    0 4px 12px rgba(0, 0, 0, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.25);
  transition: transform 0.35s cubic-bezier(0.25, 0.8, 0.25, 1), box-shadow 0.35s ease;
}

.whatsapp-float::before {
  content: '';
  position: absolute;
  inset: -5px;
  border-radius: 50%;
  border: 2px solid rgba(37, 211, 102, 0.45);
  animation: whatsapp-pulse 2.2s ease-out infinite;
  pointer-events: none;
}

@keyframes whatsapp-pulse {
  0% {
    transform: scale(1);
    opacity: 0.7;
  }
  70% {
    transform: scale(1.18);
    opacity: 0;
  }
  100% {
    transform: scale(1.18);
    opacity: 0;
  }
}

.whatsapp-float:hover {
  transform: scale(1.08) translateY(-3px);
  box-shadow:
    0 14px 36px rgba(37, 211, 102, 0.5),
    0 6px 16px rgba(0, 0, 0, 0.14),
    inset 0 1px 0 rgba(255, 255, 255, 0.3);
  color: var(--color-white);
}

.whatsapp-float svg {
  width: 30px;
  height: 30px;
  position: relative;
  z-index: 1;
  filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.15));
}

/* ==========================================================================
   B2B INQUIRY FORM MODAL OVERLAY
   ========================================================================== */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.75);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease-out;
  padding: 16px;
}

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

.modal-card {
  background-color: var(--color-white);
  border-radius: var(--radius-sm);
  width: 100%;
  max-width: 600px;
  padding: 32px;
  position: relative;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.3);
  transform: translateY(15px);
  transition: transform 0.3s ease-out;
  border-top: 4px solid var(--color-maroon);
}

.modal-overlay.show .modal-card {
  transform: translateY(0);
}

.modal-close {
  position: absolute;
  top: 15px;
  right: 15px;
  font-size: 1.8rem;
  color: var(--color-text-muted);
  background: transparent;
  border: none;
  cursor: pointer;
  line-height: 1;
  transition: var(--transition-fast);
}

.modal-close:hover {
  color: var(--color-maroon);
}

.modal-header {
  text-align: center;
  margin-bottom: 20px;
}

.modal-crown {
  color: var(--color-gold);
  margin-bottom: 8px;
}

.modal-header h2 {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  color: var(--color-maroon);
  margin-bottom: 4px;
}

.modal-header p {
  font-size: 0.8rem;
  color: var(--color-text-muted);
}

.modal-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

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

.form-group {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.form-group label {
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--color-text-dark);
}

.form-group input,
.form-group select,
.form-group textarea {
  font-family: var(--font-sans);
  font-size: 0.8rem;
  padding: 8px 12px;
  border: 1px solid var(--color-cream-dark);
  border-radius: var(--radius-sm);
  background-color: var(--color-cream);
  color: var(--color-text-dark);
  transition: var(--transition-fast);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--color-maroon);
  background-color: var(--color-white);
  box-shadow: 0 0 0 3px rgba(121, 18, 22, 0.15);
}

.btn-submit {
  background-color: var(--color-maroon);
  color: var(--color-white);
  border: 1px solid var(--color-maroon);
  border-radius: var(--radius-sm);
  padding: 11px;
  font-size: 0.85rem;
  font-weight: 700;
  margin-top: 8px;
}

.btn-submit:hover {
  background-color: var(--color-maroon-dark);
  border-color: var(--color-gold);
  color: var(--color-gold);
}

/* ==========================================================================
   RESPONSIVE DESIGN BREAKPOINTS (MEDIA QUERIES)
   ========================================================================== */

/* 1200px and down */
@media (max-width: 1200px) {
  .features-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
  }
  
  .products-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
  }
  
  .about-container {
    grid-template-columns: 1fr 1fr;
  }
  
  .about-graphic {
    display: none; /* Hide circular/torn center frame on tablets to focus on info & metrics */
  }
}

/* 992px and down */
@media (max-width: 992px) {
  .hero-container {
    grid-template-columns: 1fr;
    text-align: center;
    padding-bottom: 40px;
  }
  
  .hero-description-bullets {
    border-left: none;
    padding-left: 0;
  }
  
  .hero-actions {
    justify-content: center;
  }
  
  .hero-image-wrapper {
    max-width: 420px;
    margin: 0 auto;
  }
  
  .about-container {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .about-stats {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
  }
  
  .stat-item {
    width: calc(50% - 10px);
    min-width: 200px;
  }
  
  .bulk-banner {
    flex-direction: column;
    text-align: center;
    gap: 20px;
    padding: 25px;
  }
  
  .bulk-banner-content {
    max-width: 100%;
  }
  
  .footer-grid {
    grid-template-columns: 1.2fr 0.8fr 1fr;
  }
  
  .col-contact {
    grid-column: span 3;
  }
}

/* ==========================================================================
   MOBILE NAVIGATION & MEGA MENU
   ========================================================================== */
.nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(18, 4, 5, 0.55);
  z-index: 98;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s ease, visibility 0.35s ease;
  backdrop-filter: blur(2px);
}

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

body.nav-open {
  overflow: hidden;
}

@media (max-width: 992px) {
  .has-dropdown > a .icon-dropdown {
    transition: transform 0.3s ease;
  }

  .has-dropdown.open > a .icon-dropdown {
    transform: rotate(180deg);
  }

  .has-dropdown {
    width: 100%;
  }

  .mega-menu {
    position: static !important;
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
    left: auto !important;
    transform: none !important;
    opacity: 1 !important;
    visibility: visible !important;
    display: none !important;
    grid-template-columns: 1fr !important;
    gap: 0 !important;
    padding: 0 !important;
    margin: 8px 0 0 !important;
    background: var(--color-cream) !important;
    border: 1px solid var(--color-cream-dark) !important;
    border-radius: 8px !important;
    box-shadow: none !important;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.3s ease !important;
  }

  .has-dropdown.open .mega-menu {
    display: block !important;
    max-height: 2000px;
    padding: 12px 14px !important;
    overflow-y: auto;
  }

  .has-dropdown:hover .mega-menu {
    display: none !important;
    max-height: 0;
  }

  .has-dropdown.open:hover .mega-menu {
    display: block !important;
    max-height: 2000px;
  }

  .mega-menu-col {
    border-bottom: 1px solid rgba(240, 230, 210, 0.8);
    padding-bottom: 10px;
    margin-bottom: 10px;
  }

  .mega-menu-col:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
  }

  .mega-menu-col ul {
    display: flex !important;
    flex-direction: column !important;
    gap: 2px !important;
    padding-left: 4px !important;
  }

  .mega-menu-col ul li a {
    padding: 8px 6px !important;
    font-size: 0.8rem !important;
    width: 100% !important;
  }

  .mega-menu-col ul li a svg {
    opacity: 1 !important;
    transform: none !important;
  }

  .mega-menu-promo {
    display: none !important;
  }

  .mega-menu-title-wrapper {
    cursor: default;
    pointer-events: auto;
  }
}

/* 768px and down */
@media (max-width: 768px) {
  .top-bar {
    display: none; /* Clean up top utility layer on mobile viewports */
  }
  
  .main-header {
    height: 70px;
  }
  
  .menu-toggle {
    display: flex;
  }
  
  .nav-links {
    position: fixed;
    top: 70px;
    left: 0;
    width: min(320px, 88vw);
    max-width: 100%;
    height: calc(100dvh - 70px);
    height: calc(100vh - 70px);
    background-color: var(--color-white);
    box-shadow: 10px 0 40px rgba(0, 0, 0, 0.12);
    z-index: 99;
    transition: transform 0.35s cubic-bezier(0.25, 0.8, 0.25, 1);
    padding: 24px 20px 40px;
    border-right: 1.5px solid var(--color-cream-dark);
    transform: translateX(-105%);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }
  
  .nav-links.active {
    transform: translateX(0);
  }
  
  .nav-links ul {
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    width: 100%;
  }

  .nav-links > ul > li {
    width: 100%;
  }
  
  .nav-links a {
    font-size: 0.92rem;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 4px;
  }

  .nav-links a::after {
    display: none !important;
  }
  
  .header-cta {
    display: none;
  }
  
  .hero-title {
    font-size: 2.8rem;
  }
  
  .hero-subtext {
    font-size: 2.2rem;
  }
  
  .section-title {
    font-size: 1.6rem;
  }
  
  .products-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .col-contact {
    grid-column: span 1;
  }
  
  .form-row {
    grid-template-columns: 1fr;
  }
  
  .modal-card {
    padding: 20px;
  }
}

/* 480px and down */
@media (max-width: 480px) {
  .hero-title {
    font-size: 2.2rem;
  }
  
  .features-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  
  .products-grid {
    grid-template-columns: 1fr;
  }
  
  .stat-item {
    width: 100%;
  }
  
  .whatsapp-float {
    bottom: 20px;
    right: 18px;
    width: 54px;
    height: 54px;
  }

  .whatsapp-float svg {
    width: 28px;
    height: 28px;
  }
}


/* ==========================================================================
   PREMIUM LUXURY DESIGN REFINEMENTS & DEPTH
   ========================================================================== */

/* Hero Glow Enhancements */
.hero-visual {
  position: relative;
}
.hero-visual::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 90%;
  height: 90%;
  background: radial-gradient(circle, rgba(197, 155, 39, 0.18) 0%, rgba(121, 18, 22, 0) 70%);
  z-index: 1;
  pointer-events: none;
  filter: blur(25px);
}
.hero-image-wrapper {
  z-index: 2;
  filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.65));
}

/* Global Premium Product Card Polish */
.product-card, .premium-card {
  background: linear-gradient(180deg, var(--color-white) 0%, #fdfcf9 100%);
  border: 1px solid var(--color-cream-dark) !important;
  border-radius: 8px !important;
  box-shadow: 0 4px 20px rgba(121, 18, 22, 0.015), 0 2px 5px rgba(0, 0, 0, 0.01);
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1) !important;
  position: relative;
  overflow: hidden;
}
.product-card:hover, .premium-card:hover {
  transform: translateY(-6px) !important;
  border-color: var(--color-gold) !important;
  box-shadow: 0 20px 40px rgba(121, 18, 22, 0.1), 0 5px 15px rgba(0, 0, 0, 0.02) !important;
}

/* Cards image zoom */
.product-image-container, .card-img-wrapper {
  overflow: hidden;
  position: relative;
  border-radius: 6px;
  background-color: var(--color-cream);
  transition: background-color 0.3s ease;
}
.product-card:hover .product-image-container, 
.premium-card:hover .card-img-wrapper {
  background-color: #faf6ee;
}
.product-image, .card-img {
  transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1), filter 0.3s ease !important;
}
.product-card:hover .product-image, 
.premium-card:hover .card-img {
  transform: scale(1.08) rotate(1deg) !important;
  filter: drop-shadow(0 10px 20px rgba(121, 18, 22, 0.15)) !important;
}

/* Add a premium gold accent top border line to cards on hover */
.product-card::before, .premium-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--color-gold);
  transform: scaleX(0);
  transition: transform 0.3s ease;
  transform-origin: left center;
  z-index: 10;
}
.product-card:hover::before, .premium-card:hover::before {
  transform: scaleX(1);
}

/* Typography Hierarchy in Cards */
.product-name a, .card-title a {
  color: var(--color-maroon-dark) !important;
  font-weight: 700;
  transition: color 0.2s ease;
}
.product-card:hover .product-name a, 
.premium-card:hover .card-title a {
  color: var(--color-maroon) !important;
}

/* Category Sidebar Refinement & Sticky behavior (catalog page only) */
.catalog-page .catalog-sidebar {
  position: sticky !important;
  top: 100px !important;
  background: rgba(255, 255, 255, 0.98) !important;
  border: 1px solid var(--color-cream-dark) !important;
  border-radius: 8px !important;
  box-shadow: 0 10px 30px rgba(121, 18, 22, 0.03) !important;
}
.sidebar-link {
  position: relative;
  padding: 8px 12px !important;
  border-radius: 4px !important;
  margin-bottom: 2px !important;
  transition: all 0.25s ease !important;
  display: flex !important;
  align-items: center !important;
  gap: 6px !important;
}
.sidebar-link:hover, .sidebar-link.active {
  background-color: var(--color-cream) !important;
  color: var(--color-maroon) !important;
  padding-left: 16px !important;
}
.sidebar-link.active {
  border-left: 3px solid var(--color-gold) !important;
  font-weight: 700 !important;
}

/* Luxury Separators and Section Transitions */
.divider-gold-wrapper {
  display: flex;
  align-items: center;
  gap: 15px;
  justify-content: center;
  margin-bottom: 20px;
}
.divider-line {
  height: 1px;
  width: 80px;
  background: linear-gradient(90deg, rgba(197, 155, 39, 0) 0%, var(--color-gold) 50%, rgba(197, 155, 39, 0) 100%);
}

/* Trust Badges Widget in Details Page */
.trust-widget-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 15px;
  border-top: 1px solid var(--color-cream-dark);
  padding-top: 15px;
}
.trust-badge-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  background-color: var(--color-cream);
  border: 1px solid rgba(197, 155, 39, 0.1);
  padding: 10px 5px;
  border-radius: 4px;
}
.trust-badge-icon {
  width: 24px;
  height: 24px;
  color: var(--color-gold);
  margin-bottom: 4px;
}
.trust-badge-text {
  font-size: 0.6rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--color-text-dark);
  letter-spacing: 0.5px;
}

/* ==========================================================================
   AJ ROYAL SPICE - PREMIUM UI POLISH & VISUAL DEPTH OVERRIDES
   ========================================================================== */

/* 1. Homepage Hero Cinematic Glow & Contrast */
.hero-section {
  background: radial-gradient(circle at 75% 50%, rgba(121, 18, 22, 0.72) 0%, rgba(48, 3, 5, 0.98) 60%, #080102 100%) !important;
  box-shadow: inset 0 -30px 60px rgba(0, 0, 0, 0.45);
  position: relative;
  overflow: hidden;
}
.hero-visual {
  position: relative;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
.hero-visual::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 90%;
  height: 90%;
  background: radial-gradient(circle, rgba(197, 155, 39, 0.38) 0%, rgba(121, 18, 22, 0) 70%);
  z-index: 1;
  pointer-events: none;
  filter: blur(35px);
  animation: heroGlowPulse 8s infinite alternate ease-in-out;
}
.hero-image-wrapper {
  position: relative;
  z-index: 2;
}
.hero-main-image {
  filter: drop-shadow(0 25px 50px rgba(0, 0, 0, 0.85)) drop-shadow(0 5px 15px rgba(197, 155, 39, 0.25)) !important;
  transition: transform 0.8s cubic-bezier(0.165, 0.84, 0.44, 1) !important;
}
.hero-image-wrapper:hover .hero-main-image {
  transform: scale(1.03) rotate(0.5deg);
}

@keyframes heroGlowPulse {
  0% { transform: translate(-50%, -50%) scale(0.92); opacity: 0.75; }
  100% { transform: translate(-50%, -50%) scale(1.05); opacity: 1; }
}

/* 2. Premium Product Card Polish (Home & Related) */
.product-card, .premium-card {
  background: linear-gradient(180deg, var(--color-white) 0%, #fdfcf9 100%) !important;
  border: 1px solid var(--color-cream-dark) !important;
  border-radius: 12px !important;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.015), 0 2px 4px rgba(121, 18, 22, 0.01) !important;
  transition: all 0.45s cubic-bezier(0.165, 0.84, 0.44, 1) !important;
  position: relative;
  overflow: hidden;
}
.product-card:hover, .premium-card:hover {
  transform: translateY(-8px) !important;
  border-color: var(--color-gold) !important;
  box-shadow: 0 20px 40px rgba(121, 18, 22, 0.12), 0 8px 20px rgba(0, 0, 0, 0.03) !important;
}
.product-image-container, .card-img-wrapper {
  background-color: var(--color-cream) !important;
  border-radius: 8px !important;
  padding: 18px !important;
  overflow: hidden;
  position: relative;
  transition: background-color 0.3s ease;
}
.product-card:hover .product-image-container, 
.premium-card:hover .card-img-wrapper {
  background-color: #faf5e8 !important;
}
.product-image, .card-img {
  transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1), filter 0.3s ease !important;
}
.product-card:hover .product-image, 
.premium-card:hover .card-img {
  transform: scale(1.09) rotate(1deg) !important;
  filter: drop-shadow(0 12px 24px rgba(121, 18, 22, 0.18)) !important;
}

/* Premium card horizontal top accent border on hover */
.product-card::before, .premium-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--color-gold) 0%, var(--color-gold-light) 50%, var(--color-gold) 100%) !important;
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1) !important;
  z-index: 10;
}
.product-card:hover::before, .premium-card:hover::before {
  transform: scaleX(1);
}

.product-name a, .card-title a {
  color: var(--color-maroon-dark) !important;
  font-weight: 700;
  transition: color 0.25s ease;
}
.product-card:hover .product-name a, 
.premium-card:hover .card-title a {
  color: var(--color-maroon) !important;
}

/* Catalog listing — large image + overlay badge */
.catalog-page .card-img-wrapper {
  padding: 0 !important;
  aspect-ratio: 1 / 1 !important;
  min-height: 220px;
}

.catalog-page .card-img {
  max-height: none !important;
  width: 100% !important;
  height: 100% !important;
}

.catalog-page .badge-export {
  position: absolute !important;
  top: 10px !important;
  left: 10px !important;
  z-index: 3 !important;
  background: linear-gradient(135deg, var(--color-gold) 0%, var(--color-gold-dark) 100%) !important;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.14) !important;
}

/* 3. Category Page Refinements & Sidebar */
.catalog-page .catalog-sidebar {
  background: rgba(255, 255, 255, 0.96) !important;
  backdrop-filter: blur(10px);
  border: 1px solid var(--color-cream-dark) !important;
  border-top: 3px solid var(--color-gold) !important;
  border-radius: 10px !important;
  box-shadow: 0 12px 36px rgba(121, 18, 22, 0.03) !important;
  transition: all 0.3s ease;
}

@media (max-width: 992px) {
  .catalog-page .catalog-sidebar {
    border-radius: 0 !important;
    border-top: none !important;
    backdrop-filter: none !important;
  }
}
.filter-section-title {
  font-family: var(--font-serif);
  font-size: 0.95rem !important;
  color: var(--color-maroon-dark) !important;
  letter-spacing: 0.8px !important;
  border-bottom: 2px solid var(--color-cream-dark) !important;
  padding-bottom: 8px !important;
}
.sidebar-link {
  font-size: 0.84rem !important;
  font-weight: 600 !important;
  padding: 8px 12px !important;
  border-radius: 6px !important;
  transition: all 0.25s cubic-bezier(0.25, 0.8, 0.25, 1) !important;
  display: flex !important;
  align-items: center !important;
  gap: 8px !important;
  color: var(--color-text-muted) !important;
}
.sidebar-link:hover, .sidebar-link.active {
  background-color: var(--color-cream) !important;
  color: var(--color-maroon) !important;
  padding-left: 18px !important;
}
.sidebar-link.active {
  border-left: 3px solid var(--color-gold) !important;
  font-weight: 700 !important;
}
.sidebar-nested-list {
  border-left: 1.5px solid var(--color-cream-dark) !important;
  margin-left: 18px !important;
  padding-left: 12px !important;
}

/* 4. Mega Menu Spacing, Blur & Animation (desktop only) */
@media (min-width: 993px) {
  .mega-menu {
    width: 960px !important;
    background: rgba(255, 255, 255, 0.93) !important;
    backdrop-filter: blur(25px) !important;
    border: 1px solid var(--color-cream-dark) !important;
    border-top: 4px solid var(--color-gold) !important;
    border-radius: 12px !important;
    box-shadow: 0 30px 60px rgba(121, 18, 22, 0.16), 0 10px 20px rgba(0, 0, 0, 0.04) !important;
    padding: 35px 40px !important;
    gap: 30px !important;
  }
}
.mega-menu-title-wrapper {
  border-bottom: 1.5px solid var(--color-cream-dark) !important;
  padding-bottom: 10px !important;
  margin-bottom: 15px !important;
}
.mega-menu-col h4 a {
  font-size: 0.92rem !important;
  font-weight: 800 !important;
  letter-spacing: 0.5px !important;
}
.mega-menu-col ul {
  gap: 10px !important;
}
.mega-menu-col ul li a {
  font-size: 0.82rem !important;
  font-weight: 600 !important;
  transition: all 0.25s cubic-bezier(0.25, 0.8, 0.25, 1) !important;
}
.mega-menu-col ul li a:hover {
  color: var(--color-maroon) !important;
  transform: translateX(6px) !important;
}
.mega-menu-promo {
  background: linear-gradient(135deg, var(--color-maroon-dark) 0%, #300305 100%) !important;
  border: 1.5px solid rgba(197, 155, 39, 0.25) !important;
  border-radius: 8px !important;
  padding: 24px !important;
}

/* 5. Product Detail — Premium 2-Column Layout */
.product-detail-page {
  background: linear-gradient(180deg, #ffffff 0%, #fdfbf6 45%, #ffffff 100%);
}

.detail-breadcrumb {
  background-color: var(--color-cream);
  border-bottom: 1px solid var(--color-cream-dark);
  padding: 12px 0;
  font-size: 0.78rem;
  color: var(--color-text-muted);
}

.detail-breadcrumb a:hover {
  color: var(--color-maroon);
}

.detail-layout-container {
  display: grid;
  grid-template-columns: minmax(300px, 420px) 1fr;
  gap: 48px;
  padding: 44px 0 56px;
  align-items: start;
}

.detail-info-column {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.detail-title-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 14px;
}

.detail-title-block {
  flex: 1;
  min-width: 0;
}

.detail-category-label {
  color: var(--color-gold-dark);
  font-weight: 700;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  display: block;
  margin-bottom: 6px;
}

.detail-product-title {
  font-family: var(--font-serif);
  font-size: 2.15rem;
  color: var(--color-maroon-dark);
  margin: 0;
  line-height: 1.2;
  font-weight: 700;
}

.detail-share-actions {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-shrink: 0;
  padding-top: 4px;
}

.detail-share-btn {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1px solid var(--color-cream-dark);
  background: var(--color-white);
  color: var(--color-text-muted);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition-fast);
  text-decoration: none;
}

.detail-share-btn:hover {
  border-color: var(--color-gold);
  color: var(--color-maroon);
  box-shadow: 0 4px 12px rgba(121, 18, 22, 0.08);
}

.detail-share-btn svg {
  width: 15px;
  height: 15px;
}

.detail-lead-text {
  font-size: 1rem;
  font-weight: 600;
  color: var(--color-text-dark);
  line-height: 1.65;
  margin: 0 0 12px;
}

.detail-body-text {
  font-size: 0.9rem;
  color: var(--color-text-muted);
  line-height: 1.75;
  margin: 0 0 28px;
}

.detail-section {
  margin-bottom: 28px;
  padding-bottom: 28px;
  border-bottom: 1px solid rgba(240, 230, 210, 0.85);
}

.detail-section:last-of-type {
  border-bottom: none;
  padding-bottom: 0;
  margin-bottom: 0;
}

.detail-section-heading {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  color: var(--color-maroon);
  margin: 0 0 14px;
  font-weight: 700;
  letter-spacing: 0.2px;
}

.detail-section-text {
  font-size: 0.88rem;
  color: var(--color-text-muted);
  line-height: 1.7;
  margin: 0;
}

/* Premium specification list (replaces mini-cards) */
.spec-premium-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  background: linear-gradient(135deg, rgba(250, 246, 238, 0.9) 0%, rgba(255, 255, 255, 0.95) 100%);
  border: 1px solid var(--color-cream-dark);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(121, 18, 22, 0.04);
}

.spec-premium-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 14px 20px;
  border-bottom: 1px solid rgba(240, 230, 210, 0.6);
  transition: background-color 0.2s ease;
}

.spec-premium-row:last-child {
  border-bottom: none;
}

.spec-premium-row:hover {
  background-color: rgba(255, 255, 255, 0.7);
}

.spec-premium-key {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--color-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.6px;
}

.spec-premium-value {
  font-family: var(--font-serif);
  font-size: 1rem;
  font-weight: 700;
  color: var(--color-maroon-dark);
  text-align: right;
}

.detail-moq-strip {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 20px;
  background: linear-gradient(90deg, rgba(197, 155, 39, 0.12) 0%, rgba(250, 246, 238, 0.5) 100%);
  border-left: 3px solid var(--color-gold);
  border-radius: 6px;
}

.detail-moq-strip .moq-label {
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--color-maroon);
  text-transform: uppercase;
  letter-spacing: 0.6px;
  display: block;
  margin-bottom: 2px;
}

.detail-moq-strip .moq-val {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--color-maroon-dark);
}

.detail-cert-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 12px;
}

.detail-cert-badge {
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 5px 12px;
  border-radius: 20px;
  background: var(--color-cream);
  border: 1px solid var(--color-cream-dark);
  color: var(--color-maroon-dark);
}

.detail-cert-badge.gold {
  background: linear-gradient(135deg, var(--color-gold) 0%, var(--color-gold-light) 100%);
  border-color: var(--color-gold);
  color: var(--color-maroon-dark);
}

/* Premium integrated CTA block */
.premium-cta-block {
  margin-top: 32px;
  padding: 28px;
  background: linear-gradient(145deg, #ffffff 0%, #faf6ee 55%, #fffefb 100%);
  border: 1px solid var(--color-cream-dark);
  border-radius: 12px;
  box-shadow: 0 12px 40px rgba(121, 18, 22, 0.06), 0 2px 8px rgba(0, 0, 0, 0.02);
}

.premium-cta-buttons {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 22px;
}

.btn-detail-action {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  min-height: 52px;
  padding: 14px 24px;
  font-family: var(--font-sans);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  border-radius: 8px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: all 0.35s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.btn-detail-action svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.btn-detail-whatsapp {
  background: linear-gradient(135deg, #2ecc71 0%, #20a85a 50%, #1a9e52 100%);
  color: var(--color-white);
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.28), inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.btn-detail-whatsapp:hover {
  background: linear-gradient(135deg, #34d97a 0%, #22b863 100%);
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(37, 211, 102, 0.35);
  color: var(--color-white);
}

.btn-detail-quote {
  background: linear-gradient(135deg, var(--color-maroon) 0%, var(--color-maroon-dark) 100%);
  color: var(--color-white);
  box-shadow: 0 8px 24px rgba(121, 18, 22, 0.25), inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.btn-detail-quote:hover {
  background: linear-gradient(135deg, var(--color-maroon-light) 0%, var(--color-maroon-dark) 100%);
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(121, 18, 22, 0.32);
  color: var(--color-gold-light);
}

.premium-trust-points {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px 16px;
  padding-top: 20px;
  border-top: 1px solid var(--color-cream-dark);
}

.premium-trust-point {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--color-text-dark);
}

.premium-trust-point svg {
  width: 16px;
  height: 16px;
  color: var(--color-gold);
  flex-shrink: 0;
}

/* Magnifier & gallery */
.magnifier-container {
  background: linear-gradient(180deg, #faf6ee 0%, #ffffff 100%);
  border: 1px solid var(--color-cream-dark);
  border-radius: 10px;
  padding: 28px;
  text-align: center;
  box-shadow: 0 8px 32px rgba(121, 18, 22, 0.06);
  overflow: hidden;
  position: relative;
  cursor: zoom-in;
}

.magnifier-image {
  max-height: 380px;
  margin: 0 auto;
  display: block;
  transition: transform 0.2s ease-out;
  transform-origin: center center;
  filter: drop-shadow(0 12px 24px rgba(0, 0, 0, 0.08));
}

.sticky-visual-column {
  position: sticky;
  top: 110px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.gallery-thumbnails {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin-top: 15px;
}
.thumbnail-item {
  background-color: var(--color-cream);
  border: 1.5px solid var(--color-cream-dark);
  border-radius: 6px;
  aspect-ratio: 1.0;
  overflow: hidden;
  padding: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
}
.thumbnail-item:hover, .thumbnail-item.active {
  border-color: var(--color-gold);
  background-color: #faf5e8;
  box-shadow: 0 4px 10px rgba(121, 18, 22, 0.04);
}
.thumbnail-item img {
  max-height: 55px;
  width: auto;
  object-fit: contain;
  transition: transform 0.2s ease;
}
.thumbnail-item:hover img {
  transform: scale(1.05);
}
/* Product detail sub-sections */
.detail-faq-section {
  padding: 50px 0;
  background: linear-gradient(180deg, var(--color-cream) 0%, #f5efe3 100%);
  border-top: 1px solid var(--color-cream-dark);
}

.detail-faq-inner {
  max-width: 900px;
  margin: 0 auto;
}

.detail-faq-header {
  text-align: center;
  margin-bottom: 32px;
}

.detail-faq-eyebrow {
  font-family: var(--font-cursive);
  font-size: 2rem;
  color: var(--color-gold);
  display: block;
  line-height: 1;
}

.detail-faq-title {
  font-family: var(--font-serif);
  font-size: 1.75rem;
  color: var(--color-maroon-dark);
  margin: 6px 0 0;
  font-weight: 700;
}

.detail-faq-item {
  background: var(--color-white);
  border: 1px solid var(--color-cream-dark);
  border-left: 3px solid var(--color-gold);
  padding: 18px 22px;
  border-radius: 6px;
  box-shadow: 0 4px 16px rgba(121, 18, 22, 0.03);
  margin-bottom: 12px;
}

.detail-faq-item h4 {
  font-size: 0.92rem;
  color: var(--color-maroon-dark);
  font-weight: 700;
  margin-bottom: 6px;
}

.detail-faq-item p {
  font-size: 0.84rem;
  color: var(--color-text-muted);
  line-height: 1.55;
  margin: 0;
}

.detail-products-strip {
  padding: 52px 0;
  background: var(--color-white);
  border-top: 1px solid var(--color-cream-dark);
}

.detail-strip-header {
  text-align: center;
  margin-bottom: 32px;
}

.detail-strip-eyebrow {
  font-family: var(--font-cursive);
  font-size: 1.85rem;
  color: var(--color-gold);
  display: block;
  line-height: 1;
}

.detail-strip-title {
  font-family: var(--font-serif);
  font-size: 1.65rem;
  color: var(--color-maroon-dark);
  margin: 6px 0 0;
  font-weight: 700;
}

/* 6. B2B Trust Sections on Homepage */
.b2b-trust-section {
  padding: 55px 0;
  background-color: var(--color-white);
  border-top: 1.5px solid var(--color-cream-dark);
}
.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
  margin-top: 30px;
}
.trust-card {
  background: var(--color-cream);
  border: 1.5px solid var(--color-cream-dark);
  border-radius: 8px;
  padding: 28px 24px;
  text-align: center;
  transition: all 0.3s ease;
}
.trust-card:hover {
  border-color: var(--color-gold);
  background-color: var(--color-white);
  box-shadow: 0 10px 25px rgba(121, 18, 22, 0.04);
  transform: translateY(-3px);
}
.trust-card-icon {
  width: 48px;
  height: 48px;
  color: var(--color-gold);
  margin: 0 auto 15px auto;
}
.trust-card h3 {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  color: var(--color-maroon-dark);
  font-weight: 700;
  margin-bottom: 8px;
}
.trust-card p {
  font-size: 0.82rem;
  color: var(--color-text-muted);
  line-height: 1.5;
}

/* 7. Complete Mobile Responsiveness Overrides */
@media (max-width: 1200px) {
  .detail-layout-container {
    grid-template-columns: 1fr;
    gap: 36px;
    padding: 32px 0 48px;
  }
  .sticky-visual-column {
    position: static;
    max-width: 440px;
    margin: 0 auto;
    width: 100%;
  }
  .premium-trust-points {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 576px) {
  .detail-product-title {
    font-size: 1.75rem;
  }
  .detail-title-row {
    flex-direction: column;
  }
  .detail-share-actions {
    align-self: flex-start;
  }
  .premium-cta-block {
    padding: 20px;
  }
}

@media (max-width: 992px) {
  .main-header {
    height: 75px !important;
  }
  .hero-container {
    grid-template-columns: 1fr !important;
    text-align: center;
    gap: 25px;
    padding: 15px 0 35px 0;
  }
  .hero-content {
    order: 1;
  }
  .hero-visual {
    order: 2;
    justify-content: center;
    max-width: 400px;
    margin: 0 auto;
  }
  .hero-subtext {
    font-size: 2.2rem !important;
  }
  .hero-title {
    font-size: 2.6rem !important;
  }
  .hero-description-bullets {
    border-left: none;
    border-top: 1.5px solid var(--color-gold);
    border-bottom: 1.5px solid var(--color-gold);
    padding: 10px 0;
    margin: 15px auto;
    max-width: 480px;
  }
  .hero-actions {
    justify-content: center;
  }
  .features-grid {
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 15px !important;
  }
  .products-grid {
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 15px !important;
  }
  .about-container {
    grid-template-columns: 1fr !important;
    gap: 35px;
  }
  .about-graphic {
    max-width: 320px;
    margin: 0 auto;
    order: 2;
  }
  .about-content {
    order: 1;
    text-align: center;
  }
  .about-stats {
    order: 3;
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 30px !important;
  }
  .trust-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }
}

@media (max-width: 768px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 12px !important;
  }
  .products-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 12px !important;
  }
  .about-stats {
    grid-template-columns: 1fr;
  }
  .trust-grid {
    grid-template-columns: 1fr;
  }
  .mobile-filter-bar {
    margin-bottom: 10px;
  }
}

@media (max-width: 576px) {
  .container {
    padding: 0 15px;
  }
  .features-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 8px !important;
  }
  .products-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 8px !important;
  }
  .feature-card {
    padding: 15px 8px !important;
  }
  .feature-card h3 {
    font-size: 0.72rem !important;
  }
  .feature-circle-outer {
    width: 42px !important;
    height: 42px !important;
  }
  .hero-title {
    font-size: 2.0rem !important;
  }
  .hero-subtext {
    font-size: 1.6rem !important;
  }
  .footer-grid {
    grid-template-columns: 1fr !important;
    gap: 20px !important;
  }
  .logo-block {
    transform: scale(0.95);
  }
}