/* ==========================================================================
   3 STAR BD - MODERN INDUSTRIAL TECH E-COMMERCE STYLESHEET
   Brand: 3 Star BD / RJ Imports - Commercial & Industrial Weighing Systems
   ========================================================================== */

:root {
  --primary-navy: #0A192F;
  --secondary-navy: #112240;
  --accent-gold: #D4AF37;
  --accent-gold-hover: #b89726;
  --tech-cyan: #00E5FF;
  --tech-emerald: #00C853;
  --text-primary: #1E293B;
  --text-secondary: #64748B;
  --text-light: #F8FAFC;
  --bg-main: #F8FAFC;
  --bg-card: #FFFFFF;
  --border-light: #E2E8F0;
  --border-focus: #D4AF37;
  --shadow-sm: 0 2px 4px rgba(10, 25, 47, 0.05);
  --shadow-md: 0 6px 16px rgba(10, 25, 47, 0.08);
  --shadow-lg: 0 12px 28px rgba(10, 25, 47, 0.12);
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  --font-mono: 'JetBrains Mono', 'Courier New', monospace;
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: var(--font-sans);
  background-color: var(--bg-main);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
  text-decoration: none;
  transition: all 0.2s ease;
}

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

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

/* ==========================================================================
   TOP BAR & HEADER
   ========================================================================== */
.top-notice-bar {
  background: var(--primary-navy);
  color: #94A3B8;
  font-size: 0.85rem;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.top-notice-content {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  gap: 10px;
}
.top-notice-text span {
  color: var(--accent-gold);
  font-weight: 600;
}
.top-contact-links {
  display: flex;
  align-items: center;
  gap: 18px;
}
.lang-switch-wrap {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 255, 255, 0.08);
  padding: 2px 8px;
  border-radius: 20px;
  font-size: 0.78rem;
  font-weight: 600;
}
.lang-pill {
  color: #94A3B8;
  padding: 2px 4px;
  transition: all 0.2s;
}
.lang-pill.active {
  color: #FFFFFF;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.lang-pill:hover {
  color: var(--accent-gold);
}
.lang-sep {
  color: rgba(255, 255, 255, 0.2);
}

.lang-switch-badge {
  display: inline-flex;
  background: #F1F5F9;
  border: 1px solid var(--border-light);
  border-radius: 20px;
  padding: 2px;
}
.badge-lang {
  padding: 4px 10px;
  font-size: 0.78rem;
  font-weight: 700;
  border-radius: 16px;
  color: var(--text-secondary);
  transition: all 0.2s;
}
.badge-lang.active {
  background: var(--primary-navy);
  color: #FFFFFF;
}
.badge-lang:hover:not(.active) {
  color: var(--primary-navy);
}

@media (min-width: 769px) {
  .mobile-only-lang {
    display: none !important;
  }
}
.mobile-only-lang {
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid var(--border-light);
}
.lang-switch-wrap.mobile {
  background: #F1F5F9;
  padding: 6px 14px;
  border-radius: 20px;
}
.lang-switch-wrap.mobile .lang-pill {
  color: var(--text-secondary);
}
.lang-switch-wrap.mobile .lang-pill.active {
  color: var(--primary-navy);
  font-weight: 700;
  text-decoration: underline;
}
.lang-switch-wrap.mobile .lang-sep {
  color: #CBD5E1;
}

.top-contact-links a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.top-contact-links a:hover {
  color: var(--accent-gold);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
}

.header-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 76px;
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
  text-decoration: none;
}
.brand-logo img {
  height: 48px;
  width: auto;
  object-fit: contain;
  flex-shrink: 0;
}
.brand-text {
  display: flex;
  flex-direction: column;
}
.brand-text .title {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--primary-navy);
  letter-spacing: -0.5px;
  line-height: 1.1;
}
.brand-text .title span {
  color: var(--accent-gold);
}
.brand-text .tagline {
  font-size: 0.72rem;
  text-transform: uppercase;
  color: var(--text-secondary);
  letter-spacing: 1px;
  font-weight: 600;
}

.nav-menu {
  display: flex;
  align-items: center;
  list-style: none;
  gap: 28px;
}
.nav-link {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-primary);
  position: relative;
  padding: 6px 0;
}
.nav-link:hover, .nav-link.active {
  color: var(--accent-gold);
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 2px;
  background: var(--accent-gold);
  transition: width 0.2s ease;
}
.nav-link:hover::after, .nav-link.active::after {
  width: 100%;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}
.btn-call-direct {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #EFF6FF;
  color: var(--primary-navy);
  border: 1px solid #BFDBFE;
  padding: 8px 16px;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: 0.9rem;
}
.btn-call-direct:hover {
  background: #DBEAFE;
}
.cart-trigger {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #F1F5F9;
  color: var(--primary-navy);
  font-size: 1.1rem;
}
.cart-trigger:hover {
  background: #E2E8F0;
}
.cart-badge {
  position: absolute;
  top: -4px;
  right: -4px;
  background: #EF4444;
  color: white;
  font-size: 0.72rem;
  font-weight: 700;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mobile-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: var(--primary-navy);
  cursor: pointer;
}

/* ==========================================================================
   BUTTONS & BADGES
   ========================================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: var(--radius-md);
  font-size: 0.95rem;
  font-weight: 700;
  cursor: pointer;
  border: none;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  text-align: center;
}
.btn-gold {
  background: linear-gradient(135deg, #E5B83B 0%, #D4AF37 100%);
  color: #0A192F;
  box-shadow: 0 4px 14px rgba(212, 175, 55, 0.35);
}
.btn-gold:hover {
  background: linear-gradient(135deg, #D4AF37 0%, #B89726 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(212, 175, 55, 0.45);
}
.btn-navy {
  background: var(--primary-navy);
  color: var(--text-light);
}
.btn-navy:hover {
  background: var(--secondary-navy);
  transform: translateY(-2px);
}
.btn-outline {
  background: transparent;
  border: 2px solid var(--border-light);
  color: var(--text-primary);
}
.btn-outline:hover {
  border-color: var(--accent-gold);
  color: var(--accent-gold);
}
.btn-pulse {
  animation: pulse-glow 2s infinite;
}
@keyframes pulse-glow {
  0% { box-shadow: 0 0 0 0 rgba(212, 175, 55, 0.7); }
  70% { box-shadow: 0 0 0 12px rgba(212, 175, 55, 0); }
  100% { box-shadow: 0 0 0 0 rgba(212, 175, 55, 0); }
}

.badge-tech {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: rgba(10, 25, 47, 0.08);
  color: var(--primary-navy);
  font-size: 0.78rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 4px;
  font-family: var(--font-mono);
}
.badge-tech.gold {
  background: rgba(212, 175, 55, 0.15);
  color: #8C6D14;
  border: 1px solid rgba(212, 175, 55, 0.3);
}
.badge-tech.green {
  background: #ECFDF5;
  color: #047857;
  border: 1px solid #A7F3D0;
}

/* ==========================================================================
   HERO SECTION (INDUSTRIAL TECH)
   ========================================================================== */
.hero-industrial {
  position: relative;
  background: radial-gradient(circle at 80% 20%, #172a4d 0%, #0A192F 70%);
  color: #FFFFFF;
  padding: 80px 0 100px;
  overflow: hidden;
}
.hero-industrial::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: 
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 40px 40px;
  pointer-events: none;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  align-items: center;
  gap: 48px;
  position: relative;
  z-index: 2;
}
.hero-badge-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(212, 175, 55, 0.15);
  border: 1px solid rgba(212, 175, 55, 0.4);
  color: var(--accent-gold);
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  margin-bottom: 20px;
}
.hero-title {
  font-size: 3rem;
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 20px;
  letter-spacing: -1px;
}
.hero-title span {
  color: var(--accent-gold);
  background: linear-gradient(135deg, #FFE28A 0%, #D4AF37 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.hero-description {
  font-size: 1.1rem;
  color: #94A3B8;
  line-height: 1.7;
  margin-bottom: 32px;
  max-width: 580px;
}
.hero-cta-group {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}
.hero-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding-top: 24px;
}
.metric-item .val {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--accent-gold);
  font-family: var(--font-mono);
}
.metric-item .label {
  font-size: 0.82rem;
  color: #94A3B8;
}

.hero-showcase-card {
  position: relative;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-lg);
  padding: 30px;
  backdrop-filter: blur(12px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
  text-align: center;
}
.hero-showcase-img {
  max-height: 360px;
  margin: 0 auto 20px;
  filter: drop-shadow(0 15px 25px rgba(0,0,0,0.5));
  transition: transform 0.4s ease;
}
.hero-showcase-card:hover .hero-showcase-img {
  transform: translateY(-8px) scale(1.02);
}
.floating-spec-badge {
  position: absolute;
  background: rgba(10, 25, 47, 0.88);
  border: 1px solid rgba(212, 175, 55, 0.5);
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  font-size: 0.8rem;
  font-weight: 700;
  color: #FFFFFF;
  backdrop-filter: blur(6px);
  z-index: 5;
}
.badge-top-right {
  top: 20px;
  right: 20px;
}
.badge-bottom-left {
  bottom: 20px;
  left: 20px;
}

/* Hero Showcase Slider */
.hero-showcase-slider-wrap {
  position: relative;
  width: 100%;
}
.hero-showcase-slider {
  position: relative;
  min-height: 470px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(12px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s ease, transform 0.5s ease;
  transform: scale(0.96);
  pointer-events: none;
}
.hero-slide.active {
  opacity: 1;
  visibility: visible;
  transform: scale(1);
  pointer-events: auto;
  position: relative;
}
.slide-img-box {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 270px;
  max-height: 320px;
}
.hero-slide .hero-showcase-img {
  max-height: 290px;
  max-width: 90%;
  object-fit: contain;
  margin: 0 auto;
}
.slide-caption {
  margin-top: 12px;
  z-index: 2;
}
.slide-caption-title {
  font-weight: 700;
  font-size: 1.12rem;
  color: #FFFFFF;
}
.slide-caption-sub {
  color: var(--accent-gold);
  font-size: 0.9rem;
  font-family: var(--font-mono);
  margin-top: 4px;
}
.slider-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 14px;
}
.slider-arrow {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: #FFFFFF;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
  font-size: 0.88rem;
}
.slider-arrow:hover {
  background: var(--accent-gold);
  color: var(--primary-navy);
  border-color: var(--accent-gold);
  transform: scale(1.08);
}
.slider-dots {
  display: flex;
  gap: 8px;
  align-items: center;
}
.slider-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.35);
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 0;
}
.slider-dot.active {
  background: var(--accent-gold);
  width: 26px;
  border-radius: 10px;
}

/* ==========================================================================
   FEATURE CARDS SECTION
   ========================================================================== */
.features-strip {
  background: #FFFFFF;
  padding: 32px 0;
  border-bottom: 1px solid var(--border-light);
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.feature-box {
  display: flex;
  align-items: center;
  gap: 16px;
}
.feature-icon-wrapper {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-md);
  background: #FFFBEB;
  color: #D4AF37;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  flex-shrink: 0;
}
.feature-info h4 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--primary-navy);
  margin-bottom: 2px;
}
.feature-info p {
  font-size: 0.82rem;
  color: var(--text-secondary);
}

/* ==========================================================================
   PRODUCTS CATALOG & GRID
   ========================================================================== */
.section-padding {
  padding: 80px 0;
}
.section-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 50px;
}
.section-subtitle {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--accent-gold);
  font-weight: 700;
  margin-bottom: 8px;
}
.section-title {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--primary-navy);
  line-height: 1.25;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}
.product-card {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
}
.product-card:hover {
  transform: translateY(-6px);
  border-color: rgba(212, 175, 55, 0.4);
  box-shadow: var(--shadow-lg);
}
.product-img-wrap {
  position: relative;
  background: #F1F5F9;
  padding: 30px;
  text-align: center;
  min-height: 280px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.product-img-wrap img {
  max-height: 230px;
  object-fit: contain;
  transition: transform 0.4s ease;
}
.product-card:hover .product-img-wrap img {
  transform: scale(1.06);
}
.product-chip {
  position: absolute;
  top: 16px;
  left: 16px;
  background: var(--primary-navy);
  color: #FFFFFF;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 4px;
  font-family: var(--font-mono);
}
.product-stock-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  background: #ECFDF5;
  color: #047857;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 20px;
  border: 1px solid #A7F3D0;
}

.product-body {
  padding: 28px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}
.product-model-label {
  font-size: 0.78rem;
  color: var(--text-secondary);
  font-family: var(--font-mono);
  margin-bottom: 6px;
}
.product-card-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--primary-navy);
  line-height: 1.35;
  margin-bottom: 12px;
}
.product-card-title a:hover {
  color: var(--accent-gold);
}
.product-card-desc {
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.5;
  margin-bottom: 14px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  min-height: 2.55em;
}

/* Compact 2x2 Micro-Spec Badge Grid */
.specs-compact-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
  margin-bottom: 16px;
}
.spec-chip {
  background: #F8FAFC;
  border: 1px solid #E2E8F0;
  border-radius: 8px;
  padding: 6px 10px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  color: #334155;
  transition: all 0.2s ease;
}
.spec-chip:hover {
  background: #FFFFFF;
  border-color: #F59E0B;
  box-shadow: 0 2px 6px rgba(245, 158, 11, 0.12);
}
.spec-chip i {
  color: #D97706;
  font-size: 0.88rem;
  width: 16px;
  text-align: center;
  flex-shrink: 0;
}
.spec-chip-text {
  min-width: 0;
  flex: 1;
}
.spec-chip .chip-label {
  font-size: 0.68rem;
  color: #64748B;
  display: block;
  line-height: 1.1;
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 0.3px;
}
.spec-chip .chip-val {
  font-weight: 700;
  color: var(--primary-navy);
  display: block;
  line-height: 1.2;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  font-size: 0.8rem;
}

.specs-mini-list {
  background: #F8FAFC;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-sm);
  padding: 10px 14px;
  margin-bottom: 18px;
}
.spec-mini-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.82rem;
  padding: 3px 0;
  border-bottom: 1px dashed #E2E8F0;
}
.spec-mini-row:last-child {
  border-bottom: none;
}
.spec-mini-row span:first-child {
  color: var(--text-secondary);
}
.spec-mini-row span:last-child {
  font-weight: 700;
  color: var(--primary-navy);
}

.product-footer {
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding-top: 16px;
  border-top: 1px solid var(--border-light);
  flex-wrap: wrap;
}
.price-block .current-price {
  font-size: 1.45rem;
  font-weight: 800;
  color: var(--primary-navy);
  font-family: var(--font-mono);
}
.price-block .regular-price {
  font-size: 0.9rem;
  color: #94A3B8;
  text-decoration: line-through;
  margin-left: 6px;
}
.product-action-btns {
  display: flex;
  gap: 8px;
  align-items: center;
  flex: 1;
  justify-content: flex-end;
}
.product-action-btns .btn {
  padding: 9px 14px;
  font-size: 0.84rem;
  font-weight: 700;
  border-radius: 6px;
  white-space: nowrap;
}

/* ==========================================================================
   SPEC COMPARISON MATRIX
   ========================================================================== */
.comparison-section {
  background: #FFFFFF;
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
}
.comparison-toolbar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-bottom: 28px;
  background: #F8FAFC;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 18px 24px;
  flex-wrap: wrap;
}
.compare-selector-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  flex: 1;
  min-width: 240px;
}
.compare-selector-group label {
  font-size: 0.84rem;
  font-weight: 700;
  color: var(--primary-navy);
  display: flex;
  align-items: center;
  gap: 6px;
}
.compare-dropdown {
  width: 100%;
  padding: 10px 14px;
  border: 1.5px solid var(--border-light);
  border-radius: var(--radius-sm);
  background: #FFFFFF;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--primary-navy);
  cursor: pointer;
  outline: none;
  transition: all 0.2s;
}
.compare-dropdown:focus {
  border-color: var(--accent-gold);
  box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.15);
}
.compare-vs-badge {
  background: var(--primary-navy);
  color: var(--accent-gold);
  font-weight: 800;
  font-size: 0.95rem;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: var(--shadow-sm);
  border: 2px solid var(--accent-gold);
}
.compare-prod-thumb {
  width: 50px;
  height: 50px;
  object-fit: contain;
  margin-bottom: 6px;
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.comparison-table-wrapper {
  overflow-x: auto;
  box-shadow: var(--shadow-sm);
  border-radius: var(--radius-md);
  border: 1px solid var(--border-light);
}
.spec-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
  background: #FFFFFF;
}
.spec-table th, .spec-table td {
  padding: 16px 20px;
  border-bottom: 1px solid var(--border-light);
}
.spec-table th {
  background: var(--primary-navy);
  color: #FFFFFF;
  font-weight: 700;
  font-size: 0.95rem;
}
.spec-table th.highlight-col {
  background: #0D2240;
  color: var(--accent-gold);
}
.spec-table tr:hover td {
  background: #F8FAFC;
}
.spec-table td.feature-title {
  font-weight: 600;
  color: var(--text-primary);
  width: 25%;
}

/* ==========================================================================
   PRODUCT DETAIL PAGE
   ========================================================================== */
.product-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}
.gallery-main {
  background: #FFFFFF;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 40px;
  text-align: center;
  position: relative;
}
.gallery-main img {
  max-height: 420px;
  margin: 0 auto;
  object-fit: contain;
}
.detail-info-block h1 {
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary-navy);
  margin-bottom: 12px;
  line-height: 1.25;
}
.detail-price-box {
  background: #F8FAFC;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 20px;
  margin: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.detail-price-box .price-wrap {
  display: flex;
  align-items: baseline;
  gap: 12px;
}
.detail-price-box .active-price {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--primary-navy);
  font-family: var(--font-mono);
}
.detail-price-box .old-price {
  font-size: 1.2rem;
  color: #94A3B8;
  text-decoration: line-through;
}
.detail-stock-status {
  font-size: 0.85rem;
  font-weight: 700;
  color: #059669;
  background: #D1FAE5;
  padding: 6px 14px;
  border-radius: 20px;
}

.order-actions-bar {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 28px 0;
}
.btn-quick-order-large {
  width: 100%;
  font-size: 1.15rem;
  padding: 16px;
  border-radius: var(--radius-md);
}

.guarantee-badges-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 24px;
  border-top: 1px solid var(--border-light);
  padding-top: 20px;
}
.guarantee-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-secondary);
}
.guarantee-item i {
  color: var(--accent-gold);
  font-size: 1.1rem;
}

/* ==========================================================================
   1-CLICK FAST CHECKOUT MODAL (HIGH CONVERSION BD)
   ========================================================================== */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(10, 25, 47, 0.7);
  backdrop-filter: blur(6px);
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.modal-overlay.active {
  display: flex;
  opacity: 1;
}
.modal-dialog {
  background: #FFFFFF;
  width: 100%;
  max-width: 580px;
  border-radius: var(--radius-lg);
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.35);
  overflow: hidden;
  animation: modal-slide-in 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  max-height: 90vh;
  display: flex;
  flex-direction: column;
}
@keyframes modal-slide-in {
  from { transform: translateY(30px) scale(0.97); }
  to { transform: translateY(0) scale(1); }
}

.modal-header {
  background: var(--primary-navy);
  color: #FFFFFF;
  padding: 20px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.modal-header h3 {
  font-size: 1.25rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 8px;
}
.modal-close-btn {
  background: rgba(255, 255, 255, 0.15);
  border: none;
  color: #FFFFFF;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  font-size: 1.1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}
.modal-close-btn:hover {
  background: rgba(255, 255, 255, 0.3);
}

.modal-body {
  padding: 24px;
  overflow-y: auto;
}

.order-summary-box {
  background: #F8FAFC;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 16px;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 16px;
}
.order-summary-thumb {
  width: 60px;
  height: 60px;
  border-radius: var(--radius-sm);
  background: #FFFFFF;
  border: 1px solid var(--border-light);
  object-fit: contain;
  padding: 4px;
}
.order-summary-info {
  flex-grow: 1;
}
.order-summary-title {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--primary-navy);
  margin-bottom: 4px;
}
.order-summary-price {
  font-weight: 800;
  color: var(--accent-gold-hover);
  font-family: var(--font-mono);
}

.form-group {
  margin-bottom: 16px;
}
.form-label {
  display: block;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 6px;
}
.form-label .required {
  color: #EF4444;
}
.form-input, .form-select, .form-textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-sm);
  font-size: 0.95rem;
  font-family: inherit;
  transition: border-color 0.2s;
  background: #FFFFFF;
}
.form-input:focus, .form-select:focus, .form-textarea:focus {
  outline: none;
  border-color: var(--accent-gold);
  box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.2);
}

.delivery-zones-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 16px;
}
.zone-option {
  position: relative;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-sm);
  padding: 12px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: all 0.2s;
}
.zone-option input[type="radio"] {
  accent-color: var(--accent-gold);
}
.zone-option.selected {
  border-color: var(--accent-gold);
  background: #FFFBEB;
}

.order-calc-table {
  width: 100%;
  margin: 16px 0;
  border-top: 1px dashed var(--border-light);
  padding-top: 12px;
}
.order-calc-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.9rem;
  padding: 4px 0;
  color: var(--text-secondary);
}
.order-calc-row.grand-total {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--primary-navy);
  border-top: 1px solid var(--border-light);
  padding-top: 8px;
  margin-top: 4px;
}
.order-calc-row.grand-total span:last-child {
  color: #B45309;
  font-family: var(--font-mono);
}

/* ==========================================================================
   ORDER SUCCESS MODAL / POPUP
   ========================================================================== */
.order-success-content {
  text-align: center;
  padding: 30px 20px;
}
.success-icon-wrap {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: #ECFDF5;
  color: #059669;
  font-size: 2.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}
.success-order-number {
  background: #F1F5F9;
  font-family: var(--font-mono);
  font-weight: 800;
  font-size: 1.3rem;
  color: var(--primary-navy);
  padding: 8px 16px;
  border-radius: var(--radius-sm);
  display: inline-block;
  margin: 14px 0;
  border: 1px dashed #CBD5E1;
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.site-footer {
  background: #060F1E;
  color: #94A3B8;
  padding: 70px 0 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 40px;
  margin-bottom: 50px;
}
.footer-col h4 {
  color: #FFFFFF;
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 10px;
}
.footer-col h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 32px;
  height: 2px;
  background: var(--accent-gold);
}
.footer-links {
  list-style: none;
}
.footer-links li {
  margin-bottom: 10px;
}
.footer-links a:hover {
  color: var(--accent-gold);
  padding-left: 4px;
}
.footer-contact-item {
  display: flex;
  gap: 12px;
  margin-bottom: 14px;
  font-size: 0.9rem;
}
.footer-contact-item i {
  color: var(--accent-gold);
  margin-top: 4px;
}
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
  flex-wrap: wrap;
  gap: 16px;
}

/* Floating WhatsApp Button */
.floating-whatsapp {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25D366;
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4);
  z-index: 1500;
  transition: transform 0.3s ease;
}
.floating-whatsapp:hover {
  transform: scale(1.1);
  color: #FFFFFF;
}

/* ==========================================================================
   RESPONSIVE DESIGN (MOBILE, TABLET & DESKTOP OPTIMIZATIONS)
   ========================================================================== */

/* Layout Helpers */
.checkout-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 32px;
  align-items: start;
}
.cart-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 32px;
  align-items: start;
}
.cart-table-wrap {
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
.cart-table-wrap table {
  width: 100%;
  border-collapse: collapse;
}

.tracking-steps-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 8px;
  margin: 30px 0;
  text-align: center;
}
.tracking-step-item {
  position: relative;
}
.tracking-step-item .step-circle {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  margin: 0 auto 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  font-weight: 700;
}
.tracking-step-item .step-label {
  font-size: 0.75rem;
}
.tracking-info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 14px;
}
.tracking-info-grid .full-col {
  grid-column: span 2;
}

.mobile-swipe-hint {
  display: none;
  font-size: 0.82rem;
  color: var(--text-secondary);
  background: #F1F5F9;
  border: 1px dashed var(--border-light);
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  margin-bottom: 12px;
  text-align: center;
}

/* Tablet & Smaller Desktops (<= 992px) */
@media (max-width: 992px) {
  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 36px;
  }
  .hero-description {
    margin: 0 auto 28px;
  }
  .hero-cta-group {
    justify-content: center;
  }
  .products-grid {
    grid-template-columns: 1fr;
  }
  .checkout-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .cart-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 30px;
  }
  .features-grid {
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }
  .product-detail-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}

/* Mobile Devices (<= 768px) */
@media (max-width: 768px) {
  .container {
    padding: 0 16px;
  }
  .section-padding {
    padding: 48px 0;
  }

  /* Top Notice Bar */
  .top-notice-bar {
    padding: 6px 0;
    font-size: 0.76rem;
  }
  .top-notice-content {
    justify-content: center;
    text-align: center;
    gap: 6px;
  }
  .top-contact-links {
    display: none; /* Hide bulky links in tiny top strip to prevent 3-line wrap */
  }

  /* Header & Navigation */
  .header-wrapper {
    height: 64px;
  }
  .brand-logo img {
    height: 38px;
  }
  .brand-text .title {
    font-size: 1.15rem;
    line-height: 1.1;
  }
  .brand-text .tagline {
    display: none;
  }

  .header-actions {
    gap: 8px;
  }
  .btn-call-direct {
    width: 38px;
    height: 38px;
    padding: 0;
    justify-content: center;
    border-radius: 50%;
    font-size: 0.95rem;
  }
  .btn-call-direct span {
    display: none;
  }
  .cart-trigger {
    width: 38px;
    height: 38px;
    font-size: 1rem;
  }
  .lang-switch-badge {
    padding: 1px;
  }
  .badge-lang {
    padding: 3px 7px;
    font-size: 0.72rem;
  }

  .mobile-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    font-size: 1.25rem;
    border-radius: 6px;
    background: #F1F5F9;
    color: var(--primary-navy);
  }

  /* Mobile Drawer Dropdown */
  .nav-menu {
    display: none;
    position: absolute;
    top: 64px;
    left: 0;
    width: 100%;
    background: #FFFFFF;
    flex-direction: column;
    padding: 12px 18px 20px;
    box-shadow: 0 16px 32px rgba(10, 25, 47, 0.18);
    border-bottom: 2px solid var(--accent-gold);
    z-index: 9999;
    gap: 0;
  }
  .nav-menu.open {
    display: flex !important;
  }
  .nav-menu li {
    width: 100%;
    border-bottom: 1px solid var(--border-light);
  }
  .nav-menu li:last-child {
    border-bottom: none;
  }
  .nav-menu .nav-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 13px 4px;
    font-size: 1.02rem;
    color: var(--primary-navy);
  }
  .nav-menu .nav-link::after {
    display: none;
  }
  .nav-menu .nav-link.active {
    color: var(--accent-gold-hover);
    font-weight: 700;
  }

  /* Hero Section */
  .hero-industrial {
    padding: 36px 0 50px;
  }
  .hero-badge-tag {
    font-size: 0.75rem;
    padding: 4px 12px;
    margin-bottom: 14px;
  }
  .hero-title {
    font-size: 1.95rem;
    line-height: 1.2;
    letter-spacing: -0.5px;
    margin-bottom: 14px;
  }
  .hero-description {
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 24px;
  }
  .hero-cta-group {
    flex-direction: column;
    width: 100%;
    gap: 10px;
    margin-bottom: 28px;
  }
  .hero-cta-group .btn {
    width: 100%;
    justify-content: center;
    padding: 12px;
    font-size: 0.95rem;
  }
  .hero-metrics {
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    padding-top: 18px;
  }
  .metric-item .val {
    font-size: 1.28rem;
  }
  .metric-item .label {
    font-size: 0.72rem;
  }

  .hero-showcase-card,
  .hero-showcase-slider {
    min-height: 380px;
    padding: 16px 12px;
  }
  .hero-slide {
    padding: 16px 10px;
  }
  .slide-img-box {
    min-height: 200px;
    max-height: 220px;
  }
  .hero-showcase-img,
  .hero-slide .hero-showcase-img {
    max-height: 200px;
  }
  .floating-spec-badge {
    position: static;
    display: inline-block;
    margin: 4px;
    font-size: 0.72rem;
    padding: 5px 10px;
  }
  .comparison-toolbar {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
    padding: 14px;
  }
  .compare-selector-group {
    min-width: 100%;
  }
  .compare-vs-badge {
    margin: 0 auto;
    width: 36px;
    height: 36px;
    font-size: 0.85rem;
  }

  /* Features Strip */
  .features-strip {
    padding: 28px 0;
  }
  .features-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .feature-box {
    padding: 16px;
  }

  /* Section Titles */
  .section-title {
    font-size: 1.75rem;
  }

  /* Product Catalog */
  .products-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .product-img-wrap {
    min-height: 200px;
    padding: 20px;
  }
  .product-img-wrap img {
    max-height: 180px;
  }
  .product-card-title {
    font-size: 1.15rem;
  }
  .product-body {
    padding: 18px;
  }
  .product-footer {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
  }
  .product-action-btns {
    width: 100%;
    display: flex;
    gap: 8px;
  }
  .product-action-btns .btn {
    flex: 1;
    justify-content: center;
    padding: 10px;
    font-size: 0.85rem;
  }

  /* Comparison Matrix Table */
  .mobile-swipe-hint {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
  }
  .comparison-table-wrapper {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    border-radius: var(--radius-sm);
  }
  .spec-table {
    min-width: 540px;
  }
  .spec-table th, .spec-table td {
    padding: 12px 14px;
    font-size: 0.85rem;
  }

  /* Product Detail Page */
  .gallery-main {
    padding: 20px 14px;
  }
  .gallery-main img {
    max-height: 260px;
  }
  .detail-info-block h1 {
    font-size: 1.5rem;
  }
  .detail-price-box {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    padding: 16px;
  }
  .detail-price-box .active-price {
    font-size: 1.8rem;
  }
  .order-actions-bar form {
    flex-direction: column;
  }
  .order-actions-bar form input[type="number"] {
    width: 100%;
  }
  .guarantee-badges-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  /* Cart & Checkout */
  .cart-table-card {
    padding: 16px 12px !important;
  }
  .cart-table-wrap table {
    min-width: 500px;
  }
  .delivery-zones-wrap {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  /* Order Tracking Page */
  .tracking-steps-grid {
    grid-template-columns: 1fr;
    gap: 12px;
    text-align: left;
    margin: 20px 0;
  }
  .tracking-step-item {
    display: flex;
    align-items: center;
    gap: 14px;
  }
  .tracking-step-item .step-circle {
    margin: 0;
    min-width: 34px;
    width: 34px;
    height: 34px;
    font-size: 0.85rem;
  }
  .tracking-info-grid {
    grid-template-columns: 1fr;
    gap: 8px;
  }
  .tracking-info-grid .full-col {
    grid-column: span 1;
  }

  /* 1-Click Fast Order Modal */
  .modal-overlay {
    padding: 10px;
  }
  .modal-dialog {
    max-height: 94vh;
    border-radius: var(--radius-md);
  }
  .modal-header {
    padding: 14px 16px;
  }
  .modal-header h3 {
    font-size: 1.05rem;
  }
  .modal-body {
    padding: 16px 14px;
  }
  .order-summary-box {
    padding: 12px 10px;
    gap: 10px;
  }
  .order-summary-thumb {
    width: 50px;
    height: 50px;
  }
  .order-summary-title {
    font-size: 0.88rem;
  }
  .order-summary-price {
    font-size: 0.95rem;
  }

  /* Footer */
  .site-footer {
    padding: 40px 0 20px;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 12px;
  }

  /* Floating WhatsApp */
  .floating-whatsapp {
    bottom: 16px;
    right: 16px;
    width: 48px;
    height: 48px;
    font-size: 1.5rem;
  }
}

/* Small Phones (<= 480px) */
@media (max-width: 480px) {
  .hero-title {
    font-size: 1.65rem;
  }
  .hero-metrics {
    grid-template-columns: 1fr;
    gap: 10px;
    text-align: center;
  }
  .section-title {
    font-size: 1.5rem;
  }
  .btn-quick-order-large {
    font-size: 1rem;
    padding: 13px;
  }
}

/* =========================================================
   LUVIORE-INSPIRED ARCHITECTURE (NAVY #0A192F & GOLD #D4AF37)
   ========================================================= */

/* Header Search Bar (Modern High-Conversion Pill) */
.header-middle-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
  gap: 20px;
}
.header-search-bar {
  display: flex;
  flex: 1;
  max-width: 560px;
  margin: 0 15px;
  border: 2px solid #CBD5E1;
  border-radius: 50px;
  background: #FFFFFF;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(10, 25, 47, 0.04);
  transition: all 0.25s ease;
}
.header-search-bar:focus-within {
  border-color: #F59E0B;
  box-shadow: 0 0 0 4px rgba(245, 158, 11, 0.16), 0 4px 14px rgba(10, 25, 47, 0.08);
}
.header-search-bar select {
  background: #F8FAFC;
  border: none;
  border-right: 1.5px solid #E2E8F0;
  padding: 0 18px;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--primary-navy);
  outline: none;
  cursor: pointer;
  max-width: 175px;
  transition: background 0.2s;
}
.header-search-bar select:hover {
  background: #F1F5F9;
}
.header-search-bar input {
  flex: 1;
  border: none;
  padding: 12px 18px;
  font-size: 0.92rem;
  outline: none;
  color: #1E293B;
  min-width: 120px;
}
.header-search-bar input::placeholder {
  color: #94A3B8;
  font-size: 0.88rem;
}
.header-search-bar button {
  background: linear-gradient(135deg, #F59E0B 0%, #D4AF37 100%);
  color: #0A192F;
  border: none;
  padding: 0 24px;
  font-size: 1.05rem;
  font-weight: 800;
  cursor: pointer;
  transition: all 0.25s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}
.header-search-bar button:hover {
  background: linear-gradient(135deg, #D4AF37 0%, #B89628 100%);
  color: #FFFFFF;
}

/* Header Contact Hotline Box (Illuminated Pill) */
.header-contact-box {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  padding: 6px 16px;
  background: linear-gradient(135deg, #F8FAFC 0%, #FEF3C7 100%);
  border: 1.5px solid rgba(245, 158, 11, 0.35);
  border-radius: 50px;
  box-shadow: 0 2px 8px rgba(245, 158, 11, 0.08);
  transition: all 0.25s ease;
}
.header-contact-box:hover {
  border-color: #F59E0B;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(245, 158, 11, 0.2);
}
.header-contact-box i {
  font-size: 1.7rem;
  color: #D97706;
}
.header-contact-box .label {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 0.72rem;
  color: #78350F;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-weight: 700;
}
.header-contact-box .number {
  display: block;
  font-size: 0.98rem;
  font-weight: 800;
  color: var(--primary-navy);
  font-family: var(--font-mono);
}
.hotline-pulse-dot {
  display: inline-block;
  width: 7px;
  height: 7px;
  background: #10B981;
  border-radius: 50%;
  box-shadow: 0 0 0 2px rgba(16, 185, 129, 0.3);
  animation: pulseGreenDot 1.8s infinite;
}
@keyframes pulseGreenDot {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.35); opacity: 0.7; }
}

/* Header Bottom Nav Bar (Royal Sapphire Gradient) */
.header-nav-bar {
  background: linear-gradient(90deg, #071527 0%, #0F2D54 50%, #071527 100%);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 2px solid #F59E0B;
  box-shadow: 0 4px 16px rgba(7, 21, 39, 0.3);
}
.header-nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 52px;
}
.header-nav-bar .nav-link {
  color: #E2E8F0;
  font-weight: 600;
  font-size: 0.92rem;
  padding: 15px 0;
  letter-spacing: 0.2px;
  transition: all 0.2s ease;
}
.header-nav-bar .nav-link:hover, 
.header-nav-bar .nav-link.active {
  color: #FBBF24;
}
.header-nav-bar .nav-link::after {
  background: #FBBF24;
  height: 3px;
  border-radius: 3px;
  box-shadow: 0 0 8px rgba(251, 191, 36, 0.6);
}

.browse-cat-dropdown {
  position: relative;
}
.browse-cat-btn {
  background: linear-gradient(135deg, #F59E0B 0%, #D4AF37 100%);
  color: #0A192F;
  border: none;
  border-radius: 50px;
  padding: 8px 20px;
  font-size: 0.88rem;
  font-weight: 800;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  transition: all 0.25s ease;
  box-shadow: 0 2px 8px rgba(245, 158, 11, 0.3);
}
.browse-cat-btn:hover {
  background: linear-gradient(135deg, #FBBF24 0%, #F59E0B 100%);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(245, 158, 11, 0.45);
}
.browse-cat-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  width: 290px;
  background: #FFFFFF;
  border: 1px solid var(--border-light);
  border-radius: 10px;
  box-shadow: 0 12px 28px rgba(10, 25, 47, 0.12);
  list-style: none;
  padding: 8px 0;
  margin: 0;
  opacity: 0;
  visibility: hidden;
  transition: all 0.25s ease;
  z-index: 1000;
}
.browse-cat-dropdown:hover .browse-cat-menu {
  opacity: 1;
  visibility: visible;
}
.browse-cat-menu li a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 11px 20px;
  color: #1E293B;
  font-size: 0.88rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s;
}
.browse-cat-menu li a:hover {
  background: #F8FAFC;
  color: #D4AF37;
  padding-left: 24px;
}
.browse-cat-menu li a i {
  width: 20px;
  color: var(--accent-gold);
  text-align: center;
}

/* Category Showcase Grid */
.category-showcase-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
  margin: 30px 0;
}
.category-card {
  background: #FFFFFF;
  border: 1px solid var(--border-light);
  border-radius: 12px;
  padding: 24px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
}
.category-card:hover {
  transform: translateY(-6px);
  border-color: var(--accent-gold);
  box-shadow: 0 12px 24px rgba(10, 25, 47, 0.08);
}
.category-card-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: #0A192F;
  color: #D4AF37;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin-bottom: 16px;
  transition: all 0.3s ease;
}
.category-card:hover .category-card-icon {
  background: #D4AF37;
  color: #0A192F;
  transform: scale(1.08);
}
.category-card-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--primary-navy);
  margin-bottom: 6px;
}
.category-card-count {
  font-size: 0.82rem;
  color: var(--text-secondary);
  font-weight: 600;
}

/* Customer Testimonials Grid */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin: 35px 0;
}
.testimonial-card {
  background: #FFFFFF;
  border: 1px solid var(--border-light);
  border-radius: 12px;
  padding: 26px;
  position: relative;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
}
.testimonial-card:hover {
  border-color: var(--accent-gold);
  box-shadow: 0 10px 24px rgba(10, 25, 47, 0.06);
}
.testimonial-stars {
  color: #F59E0B;
  margin-bottom: 14px;
  font-size: 0.95rem;
  display: flex;
  gap: 3px;
}
.testimonial-text {
  color: #334155;
  font-size: 0.93rem;
  line-height: 1.7;
  margin-bottom: 18px;
  font-style: italic;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.testimonial-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #0A192F;
  color: #D4AF37;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.1rem;
}
.testimonial-info h4 {
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--primary-navy);
  margin: 0;
}
.testimonial-info span {
  font-size: 0.78rem;
  color: #10B981;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

/* Mobile Bottom Navigation Bar */
.mobile-bottom-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 60px;
  background: #FFFFFF;
  border-top: 1px solid #E2E8F0;
  z-index: 99999;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.08);
}
.mobile-bottom-bar ul {
  display: flex;
  align-items: center;
  justify-content: space-around;
  height: 100%;
  margin: 0;
  padding: 0;
  list-style: none;
}
.mobile-bottom-bar a {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #64748B;
  font-size: 0.72rem;
  font-weight: 600;
  text-decoration: none;
  position: relative;
  width: 25%;
}
.mobile-bottom-bar a i {
  font-size: 1.25rem;
  margin-bottom: 3px;
}
.mobile-bottom-bar a.active, .mobile-bottom-bar a:hover {
  color: #0A192F;
}
.mobile-bottom-bar .bottom-cart-badge {
  position: absolute;
  top: 2px;
  right: calc(50% - 16px);
  background: #D4AF37;
  color: #0A192F;
  font-size: 0.65rem;
  font-weight: 800;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 768px) {
  .mobile-bottom-bar {
    display: block;
  }
  body {
    padding-bottom: 60px;
  }
  .header-search-bar {
    display: none;
  }
  .header-contact-box {
    display: none;
  }
}

/* Official Importer Authority Card (RJ Imports) */
.importer-authority-grid {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 40px;
  align-items: center;
}
@media (max-width: 900px) {
  .importer-authority-grid {
    grid-template-columns: 1fr;
    gap: 25px;
    text-align: center;
  }
}

/* ==========================================================================
   HOMEPAGE INTERACTIVE PRODUCT SLIDER / CAROUSEL
   ========================================================================== */
.product-slider-section {
  padding: 60px 0;
  background: #FFFFFF;
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
  position: relative;
}
.slider-header-wrap {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 30px;
  flex-wrap: wrap;
  gap: 20px;
}
.slider-controls-group {
  display: flex;
  align-items: center;
  gap: 10px;
}
.slider-nav-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #FFFFFF;
  border: 1.5px solid #CBD5E1;
  color: var(--primary-navy);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(10, 25, 47, 0.08);
  transition: all 0.25s ease;
}
.slider-nav-btn:hover {
  background: linear-gradient(135deg, #F59E0B 0%, #D4AF37 100%);
  color: #0A192F;
  border-color: #F59E0B;
  transform: scale(1.08);
  box-shadow: 0 4px 14px rgba(245, 158, 11, 0.35);
}
.product-slider-track-wrap {
  position: relative;
  overflow: hidden;
  padding: 10px 4px 20px;
}
.product-slider-track {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  padding-bottom: 10px;
  scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none; /* IE/Edge */
}
.product-slider-track::-webkit-scrollbar {
  display: none; /* Chrome/Safari */
}
.product-slider-track .product-card {
  flex: 0 0 290px;
  max-width: 300px;
  min-width: 270px;
  scroll-snap-align: start;
  border-radius: 12px;
  background: #FFFFFF;
  border: 1px solid #E2E8F0;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  display: flex;
  flex-direction: column;
}
.product-slider-track .product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 24px rgba(10, 25, 47, 0.12);
  border-color: #CBD5E1;
}
.product-slider-track .product-img-wrap {
  min-height: 195px;
  height: 195px;
  padding: 16px;
  background: #F8FAFC;
  border-radius: 12px 12px 0 0;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.product-slider-track .product-img-wrap img {
  max-height: 150px;
  max-width: 85%;
  object-fit: contain;
  transition: transform 0.3s ease;
}
.product-slider-track .product-card:hover .product-img-wrap img {
  transform: scale(1.06);
}
.product-slider-track .product-body {
  padding: 16px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.product-slider-track .product-card-title {
  font-size: 1.02rem;
  font-weight: 700;
  line-height: 1.35;
  height: 2.75rem;
  margin-bottom: 6px;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
.product-slider-track .product-card-desc {
  font-size: 0.82rem;
  color: #64748B;
  line-height: 1.45;
  margin-bottom: 12px;
  height: 2.45rem;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
.product-slider-track .specs-compact-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 6px;
  margin-bottom: 14px;
}
.product-slider-track .spec-chip {
  padding: 5px 8px;
  border-radius: 6px;
  border: 1px solid #E2E8F0;
  background: #F8FAFC;
}
.product-slider-track .spec-chip i {
  font-size: 0.85rem;
  color: var(--luv-champagne);
}
.product-slider-track .chip-label {
  font-size: 0.65rem;
  color: #64748B;
}
.product-slider-track .chip-val {
  font-size: 0.78rem;
  color: #0F172A;
  font-weight: 700;
}
/* Luviore Price Block in Card */
.prod-price-block {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: auto;
  padding-top: 10px;
}
.prod-price-block .price-row {
  display: flex;
  align-items: baseline;
  gap: 6px;
}
.prod-price-block .current-price {
  font-size: 1.15rem;
  font-weight: 800;
  color: #0F172A;
  font-family: var(--font-mono);
}
.prod-price-block .regular-price {
  font-size: 0.85rem;
  color: #94A3B8;
  text-decoration: line-through;
  font-weight: 600;
}
.prod-price-block .cod-chip {
  font-size: 0.68rem;
  font-weight: 700;
  color: #059669;
  background: #ECFDF5;
  padding: 2px 7px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  gap: 3px;
  white-space: nowrap;
}

/* Luviore Full-Width Card Action Buttons */
.prod-actions {
  display: flex;
  width: 100%;
  border-top: 1px solid #E2E8F0;
  margin-top: auto;
  border-radius: 0 0 12px 12px;
  overflow: hidden;
}
.prod-btn {
  flex: 1;
  padding: 11px 8px;
  cursor: pointer;
  transition: all 0.25s ease;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: 700;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border: none;
  text-decoration: none;
  white-space: nowrap;
  box-sizing: border-box;
}
.prod-btn.btn-view {
  background: #FFFFFF;
  color: #0F172A;
  border-right: 1px solid #E2E8F0;
}
.prod-btn.btn-view:hover {
  background: #F8FAFC;
  color: var(--luv-champagne);
}
.prod-btn.btn-buy {
  background: var(--luv-champagne);
  color: #0A192F;
}
.prod-btn.btn-buy:hover {
  background: #0A192F;
  color: #FFFFFF;
}

@media (max-width: 900px) {
  .product-slider-track .product-card {
    flex: 0 0 265px;
    min-width: 250px;
  }
}
.slider-progress-bar {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin-top: 20px;
}
.slider-progress-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #CBD5E1;
  cursor: pointer;
  transition: all 0.3s ease;
}
.slider-progress-dot.active {
  background: #F59E0B;
  width: 28px;
  border-radius: 12px;
}

/* ==========================================================================
   PRODUCT DETAIL PAGE TABS & STREAMLINED FIT
   ========================================================================== */
.product-tabs-container {
  margin-top: 40px;
  background: #FFFFFF;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.product-tabs-nav {
  display: flex;
  background: #F8FAFC;
  border-bottom: 1.5px solid #E2E8F0;
  overflow-x: auto;
  scrollbar-width: none;
}
.product-tabs-nav::-webkit-scrollbar {
  display: none;
}
.product-tab-btn {
  padding: 16px 24px;
  background: transparent;
  border: none;
  font-size: 0.95rem;
  font-weight: 700;
  color: #64748B;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-bottom: 3px solid transparent;
  margin-bottom: -1.5px;
  transition: all 0.2s ease;
  white-space: nowrap;
}
.product-tab-btn:hover {
  color: var(--primary-navy);
}
.product-tab-btn.active {
  color: var(--primary-navy);
  border-bottom-color: #F59E0B;
  background: #FFFFFF;
}
.product-tab-content {
  padding: 32px;
}
.product-tab-pane {
  display: none;
}
.product-tab-pane.active {
  display: block;
}

/* Brand Verified Pill Badge in Header */
.brand-verified-chip {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: rgba(212, 175, 55, 0.12);
  color: #B45309;
  border: 1px solid rgba(212, 175, 55, 0.3);
  padding: 2px 8px;
  border-radius: 12px;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.3px;
  margin-left: 8px;
  vertical-align: middle;
}
.brand-verified-chip i {
  color: #D4AF37;
}

/* ==========================================================================
   LUVIORE-INSPIRED 100% FAITHFUL ARCHITECTURE (NAVY #0A192F & GOLD #D4AF37)
   ========================================================================== */
:root {
  --luv-onyx: #0A192F;
  --luv-alabaster: #FAFAFA;
  --luv-champagne: #D4AF37; 
  --luv-champagne-dark: #B89628; 
  --luv-text-main: #1E293B;
  --luv-text-muted: #64748B;
  --luv-border: #E5E7EB;
}

/* DESKTOP HEADER (100% Luviore Architecture) */
.desktop-header {
  background: #FFFFFF;
  border-bottom: 1px solid #E2E8F0;
  position: relative;
  z-index: 1000;
}
.header-middle {
  max-width: 1280px;
  margin: 0 auto;
  padding: 14px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
}
.brand-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  flex-shrink: 0;
}
.brand-logo img {
  height: 50px;
  width: auto;
  object-fit: contain;
}
.brand-text .title {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--luv-champagne);
  line-height: 1.1;
  display: flex;
  align-items: center;
  gap: 8px;
}
.brand-verified-chip {
  font-size: 0.68rem;
  font-weight: 800;
  color: #B45309;
  background: #FEF3C7;
  padding: 2px 7px;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.4px;
  display: inline-flex;
  align-items: center;
  gap: 3px;
}
.brand-text .tagline {
  font-size: 0.70rem;
  font-weight: 700;
  color: #64748B;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-top: 3px;
}

/* Luviore Search Bar */
.header-search {
  flex: 1;
  max-width: 580px;
  display: flex;
  align-items: center;
  position: relative;
  height: 48px;
  border: 2px solid var(--luv-champagne);
  border-radius: 50px;
  background: #FFFFFF;
  box-shadow: 0 2px 6px rgba(0,0,0,0.02);
  padding: 3px 4px 3px 6px;
  transition: border-color 0.25s, box-shadow 0.25s;
}
.header-search:focus-within {
  border-color: var(--luv-onyx);
  box-shadow: 0 4px 14px rgba(10, 25, 47, 0.08);
}
.header-search select {
  background: transparent;
  border: none;
  border-right: 1.5px solid #CBD5E1;
  border-radius: 0;
  padding: 0 10px 0 12px;
  font-family: inherit;
  font-size: 0.88rem;
  font-weight: 600;
  color: #334155;
  outline: none;
  cursor: pointer;
  max-width: 145px;
  min-width: 130px;
  height: 28px;
  line-height: 28px;
  flex-shrink: 0;
}
.header-search input {
  flex: 1;
  border: none;
  padding: 0 16px;
  font-family: inherit;
  font-size: 0.92rem;
  outline: none;
  background: transparent;
  color: #0F172A;
  min-width: 0;
}
.header-search input::placeholder {
  color: #94A3B8;
  font-size: 0.88rem;
}
.header-search button {
  background: var(--luv-champagne);
  color: #0A192F;
  border: none;
  border-radius: 50px;
  width: 44px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 0.95rem;
  transition: 0.25s ease;
  flex-shrink: 0;
  margin-right: 2px;
}
.header-search button:hover {
  background: var(--luv-onyx);
  color: #FFFFFF;
}

/* Luviore Helpline & Flash Button */
.header-contact {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-shrink: 0;
}
.contact-box {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  flex-shrink: 0;
}
.contact-icon-box {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(212, 175, 55, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--luv-champagne);
  font-size: 1.15rem;
  flex-shrink: 0;
}
.contact-text {
  display: flex;
  flex-direction: column;
  white-space: nowrap;
}
.contact-text span {
  font-size: 0.72rem;
  font-weight: 700;
  color: #64748B;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  line-height: 1.2;
}
.contact-text strong {
  font-size: 1rem;
  font-weight: 800;
  color: #0F172A;
  white-space: nowrap;
  letter-spacing: 0.3px;
  font-family: var(--font-mono);
  line-height: 1.3;
}
.btn-flash {
  background: var(--luv-champagne);
  color: #0A192F;
  padding: 10px 22px;
  border-radius: 50px;
  font-weight: 800;
  font-size: 0.88rem;
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: none;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: 0.25s;
  box-shadow: 0 4px 14px rgba(212, 175, 55, 0.25);
  text-decoration: none;
  flex-shrink: 0;
}
.btn-flash:hover {
  background: var(--luv-onyx);
  color: #FFFFFF;
  box-shadow: 0 6px 18px rgba(10, 25, 47, 0.2);
  transform: translateY(-1px);
}

/* Header Bottom Navigation (100% Luviore Navigation Architecture) */
.header-bottom-wrap {
  border-top: 1px solid #E2E8F0;
  background: #FFFFFF;
}
.header-bottom {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  height: 56px;
  gap: 20px;
}

/* Browse Categories Pill Button */
.browse-categories {
  position: relative;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #0A192F;
  color: #FFFFFF;
  padding: 0 22px;
  border-radius: 50px;
  cursor: pointer;
  font-weight: 800;
  font-size: 0.84rem;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  min-width: 220px;
  gap: 12px;
  flex-shrink: 0;
  z-index: 1000;
  transition: 0.25s ease;
  box-shadow: 0 2px 8px rgba(10, 25, 47, 0.15);
}
.browse-categories:hover {
  background: var(--luv-champagne);
  color: #0A192F;
}
.browse-categories .bc-title-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
}
.browse-categories .bc-chevron {
  font-size: 0.75rem;
  transition: transform 0.2s ease;
}
.browse-categories:hover .bc-chevron {
  transform: rotate(180deg);
}

.category-dropdown-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  width: 100%;
  background: #FFFFFF;
  border: 1px solid #E2E8F0;
  border-radius: 10px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  opacity: 0;
  visibility: hidden;
  transition: 0.25s ease;
  margin: 0;
  padding: 6px 0;
  list-style: none;
}
.browse-categories:hover .category-dropdown-menu {
  opacity: 1;
  visibility: visible;
}
.category-dropdown-menu > li {
  border-bottom: 1px solid #F1F5F9;
}
.category-dropdown-menu > li:last-child {
  border-bottom: none;
}
.category-dropdown-menu > li > a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 18px;
  font-size: 0.88rem;
  color: #334155;
  transition: 0.2s;
  font-weight: 600;
  text-decoration: none;
}
.category-dropdown-menu > li > a:hover {
  color: var(--luv-champagne);
  padding-left: 22px;
  background: #F8FAFC;
}

/* Main Navigation Links (Luviore Exact) */
.main-nav {
  display: flex;
  gap: 26px;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
  flex: 1;
}
.main-nav a {
  font-weight: 700;
  font-size: 0.92rem;
  color: #0F172A;
  text-decoration: none;
  position: relative;
  padding: 8px 0;
  transition: color 0.2s;
  white-space: nowrap;
}
.main-nav a:hover,
.main-nav a.active {
  color: var(--luv-champagne);
}
.main-nav a.active::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2.5px;
  background: var(--luv-champagne);
  border-radius: 2px;
}

/* Right Utility Icons (Account, Compare, Wishlist, Cart) */
.header-icons {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-left: auto;
  flex-shrink: 0;
}
.header-util-icon {
  position: relative;
  color: #0F172A;
  font-size: 1.15rem;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: color 0.2s;
  padding: 4px;
}
.header-util-icon:hover {
  color: var(--luv-champagne);
}
.header-util-icon .util-badge {
  position: absolute;
  top: -6px;
  right: -8px;
  background: var(--luv-champagne);
  color: #0A192F;
  font-size: 0.65rem;
  font-weight: 800;
  border-radius: 50%;
  min-width: 17px;
  height: 17px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 1px 4px rgba(0,0,0,0.15);
}
.header-util-cart {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: #0F172A;
  transition: color 0.2s;
  padding: 4px 6px;
}
.header-util-cart:hover {
  color: var(--luv-champagne);
}
.cart-icon-wrap {
  position: relative;
  font-size: 1.2rem;
  display: flex;
  align-items: center;
}
.cart-icon-wrap .util-badge {
  position: absolute;
  top: -8px;
  right: -10px;
  background: var(--luv-champagne);
  color: #0A192F;
  font-size: 0.65rem;
  font-weight: 800;
  border-radius: 50%;
  min-width: 18px;
  height: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 1px 4px rgba(0,0,0,0.15);
}
.cart-summary-text {
  font-size: 0.88rem;
  font-weight: 700;
  color: #0F172A;
  white-space: nowrap;
}
.header-util-cart:hover .cart-summary-text {
  color: var(--luv-champagne);
}

/* LUVIORE SHOP PAGE ARCHITECTURE */
.shop-page-banner {
  background-color: var(--luv-alabaster);
  border-bottom: 1px solid var(--luv-border);
  padding: 36px 20px;
  text-align: center;
  margin-bottom: 35px;
}
.shop-page-banner h1 {
  font-size: 2.2rem;
  font-weight: 800;
  margin-bottom: 6px;
  color: var(--luv-onyx);
}
.breadcrumbs {
  font-size: 0.85rem;
  color: var(--luv-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.breadcrumbs a {
  color: var(--luv-onyx);
  font-weight: 600;
  text-decoration: none;
}
.breadcrumbs a:hover {
  color: var(--luv-champagne);
}
.breadcrumbs span {
  margin: 0 8px;
}
.shop-container-inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 20px;
  margin-bottom: 70px;
}
.shop-layout {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 35px;
  align-items: start;
}
.shop-sidebar {
  background: #FFFFFF;
  border: 1px solid var(--luv-border);
  padding: 22px;
  position: sticky;
  top: 90px;
  border-radius: 6px;
}
.sidebar-widget {
  margin-bottom: 25px;
  border-bottom: 1px solid var(--luv-border);
  padding-bottom: 20px;
}
.sidebar-widget:last-child {
  margin-bottom: 0;
  border-bottom: none;
  padding-bottom: 0;
}
.widget-title {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--luv-onyx);
}
.category-list, .brand-list, .status-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.category-list li, .brand-list li {
  margin-bottom: 6px;
}
.category-list a, .brand-list a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--luv-text-muted);
  text-decoration: none;
  font-size: 0.88rem;
  transition: 0.25s;
  padding: 4px 0;
  font-weight: 500;
}
.category-list a:hover, .category-list a.active,
.brand-list a:hover, .brand-list a.active {
  color: var(--luv-champagne);
  font-weight: 700;
  padding-left: 4px;
}
.count {
  background: #F1F5F9;
  color: var(--luv-onyx);
  font-size: 0.75rem;
  padding: 2px 7px;
  border-radius: 10px;
  font-weight: 700;
}

/* TOP BAR SORTING */
.shop-top-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--luv-border);
}
.result-count {
  font-size: 0.88rem;
  color: var(--luv-text-muted);
}
.shop-sort select {
  padding: 7px 14px;
  border: 1px solid var(--luv-border);
  background: transparent;
  font-family: inherit;
  font-size: 0.85rem;
  color: var(--luv-onyx);
  outline: none;
  cursor: pointer;
  border-radius: 4px;
}

/* LUVIORE 1:1 PRODUCT GRID & CARD */
.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.prod-card {
  background: #FFFFFF;
  border: 1px solid var(--luv-border);
  display: flex;
  flex-direction: column;
  position: relative;
  transition: all 0.3s ease;
  border-radius: 6px;
  overflow: hidden;
}
.prod-card:hover {
  box-shadow: 0 6px 20px rgba(10, 25, 47, 0.08);
  border-color: #CBD5E1;
}
.prod-img-box {
  position: relative;
  width: 100%;
  padding-top: 100%;
  background: #F8FAFC;
  overflow: hidden;
}
.prod-img-box img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 16px;
  transition: transform 0.4s ease;
}
.prod-card:hover .prod-img-box img {
  transform: scale(1.06);
}
.badge-sale {
  position: absolute;
  top: 10px;
  left: 10px;
  background: #DC2626;
  color: #FFFFFF;
  font-size: 0.65rem;
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 0.5px;
  padding: 3px 8px;
  z-index: 2;
  border-radius: 3px;
}
.badge-capacity-pill {
  position: absolute;
  top: 10px;
  right: 10px;
  background: var(--luv-onyx);
  color: #FFFFFF;
  font-size: 0.68rem;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 3px;
  z-index: 2;
  font-family: var(--font-mono);
}
.prod-info {
  padding: 14px 14px 10px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}
.prod-cat {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: var(--luv-text-muted);
  margin-bottom: 4px;
  font-weight: 600;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.prod-info h4 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--luv-onyx);
  margin-bottom: 8px;
  line-height: 1.35;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.prod-price {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--luv-onyx);
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: auto;
  font-family: var(--font-mono);
}
.prod-old-price {
  font-size: 0.85rem;
  color: #94A3B8;
  text-decoration: line-through;
  font-weight: 500;
}

/* Luviore 1:1 Action Buttons */
.prod-actions {
  display: flex;
  width: 100%;
  border-top: 1px solid var(--luv-border);
  margin-top: auto;
}
.btn-icon {
  width: 44px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--luv-text-muted);
  font-size: 1.1rem;
  transition: 0.25s;
  text-decoration: none;
  background: #FDFDFD;
}
.btn-icon:hover {
  color: #25D366;
  background: #F8FAFC;
}
.btn-icon.left {
  border-right: 1px solid var(--luv-border);
}
.btn-icon.right {
  border-left: 1px solid var(--luv-border);
}
.btn-cart {
  flex: 1;
  text-align: center;
  padding: 11px 8px;
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: 0.25s;
  text-decoration: none;
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--luv-onyx);
  background: transparent;
}
.btn-cart:hover {
  background: var(--luv-champagne);
  color: #0A192F;
}

/* LUVIORE SINGLE PRODUCT PAGE ARCHITECTURE (sp-wrapper) */
.sp-wrapper {
  max-width: 1240px;
  margin: 30px auto;
  padding: 0 20px;
  font-family: inherit;
}
.sp-grid {
  display: grid;
  grid-template-columns: 460px 1fr;
  gap: 50px;
  align-items: start;
  margin-bottom: 50px;
}
.sp-gallery-container {
  position: sticky;
  top: 90px;
  width: 100%;
}
.sp-main-img-box {
  width: 100%;
  aspect-ratio: 1/1;
  background: #FFFFFF;
  border: 1px solid var(--luv-border);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 30px;
  position: relative;
  overflow: hidden;
}
.sp-main-img-box img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}
.sp-details {
  padding-top: 5px;
}
.sp-details h1 {
  font-size: 2rem;
  color: var(--luv-onyx);
  margin-bottom: 12px;
  font-weight: 800;
  line-height: 1.25;
}
.sp-price-wrap {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
}
.sp-price {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--luv-onyx);
  font-family: var(--font-mono);
}
.sp-old-price {
  font-size: 1.2rem;
  color: #94A3B8;
  text-decoration: line-through;
  font-weight: 600;
}
.sp-action-row {
  display: flex;
  gap: 10px;
  align-items: center;
  margin-bottom: 20px;
  flex-wrap: wrap;
}
.sp-action-row .btn-add-cart,
.sp-action-row .btn-buy-now {
  flex: 0 0 140px;
  width: 140px;
  height: 44px;
  border: none;
  font-size: 0.85rem;
  font-weight: 700;
  cursor: pointer;
  transition: 0.25s ease;
  text-transform: uppercase;
  border-radius: 4px;
  white-space: nowrap;
  display: flex;
  justify-content: center;
  align-items: center;
}
.sp-action-row .btn-add-cart {
  background-color: #E2E8F0;
  color: var(--luv-onyx);
}
.sp-action-row .btn-add-cart:hover {
  background-color: var(--luv-champagne);
  color: #0A192F;
}
.sp-action-row .btn-buy-now {
  background-color: var(--luv-onyx);
  color: #FFFFFF;
}
.sp-action-row .btn-buy-now:hover {
  background-color: var(--luv-champagne);
  color: #0A192F;
}
.action-icons {
  display: flex;
  gap: 8px;
}
.action-icons a, .action-icons button {
  width: 44px;
  height: 44px;
  border-radius: 4px;
  background: #FFFFFF;
  border: 1px solid var(--luv-border);
  color: #64748B;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 1.1rem;
  transition: 0.25s;
}
.action-icons a:hover, .action-icons button:hover {
  color: #25D366;
  border-color: #25D366;
}
.sp-meta {
  font-size: 0.9rem;
  color: var(--luv-text-muted);
  margin-bottom: 8px;
}
.sp-meta span {
  color: var(--luv-onyx);
  font-weight: 700;
}
.sp-tabs-wrapper {
  border-top: 1px solid var(--luv-border);
  padding-top: 35px;
}
.sp-tabs {
  display: flex;
  gap: 15px;
  border-bottom: 1px solid var(--luv-border);
  margin-bottom: 25px;
}
.sp-tabs .tab-btn {
  background: transparent;
  border: none;
  font-size: 1.05rem;
  font-weight: 700;
  padding: 10px 20px;
  cursor: pointer;
  color: var(--luv-text-muted);
  border-bottom: 3px solid transparent;
  margin-bottom: -1px;
}
.sp-tabs .tab-btn.active {
  color: var(--luv-onyx);
  border-bottom-color: var(--luv-champagne);
}
.sp-desc-content {
  font-size: 0.95rem;
  line-height: 1.8;
  color: var(--luv-text-main);
}

/* Luviore Mobile Header & Navigation */
.mobile-header, .mobile-bottom-nav, .mobile-search-bar, .mobile-sidebar, .mobile-sidebar-overlay { display: none; }

@media (max-width: 991px) {
    .desktop-header { display: none !important; }
    
    /* Mobile Top Bar */
    .mobile-header {
        display: flex; 
        justify-content: space-between; 
        align-items: center;
        padding: 12px 18px; 
        background: #FFFFFF; 
        border-bottom: 1px solid var(--luv-border);
        position: sticky; 
        top: 0; 
        z-index: 1000;
        box-shadow: 0 2px 8px rgba(0,0,0,0.04);
    }
    .mh-btn { 
        background: transparent; 
        border: none; 
        font-size: 1.35rem; 
        color: var(--luv-onyx); 
        cursor: pointer; 
        display: flex;
        align-items: center;
    }
    .mobile-logo img { 
        height: 36px; 
        object-fit: contain;
    }
    
    .mh-icons { display: flex; gap: 15px; align-items: center; }
    .mh-icon { position: relative; font-size: 1.25rem; color: var(--luv-onyx); text-decoration: none; }
    .mh-badge { 
        position: absolute; 
        top: -6px; 
        right: -8px; 
        background: var(--luv-champagne); 
        color: #0A192F; 
        font-size: 0.65rem; 
        width: 18px; 
        height: 18px; 
        display: flex; 
        justify-content: center; 
        align-items: center; 
        border-radius: 50%; 
        font-weight: 700; 
    }

    /* Mobile Search Bar */
    .mobile-search-bar { 
        padding: 12px 18px; 
        background: var(--luv-alabaster); 
        border-bottom: 1px solid var(--luv-border); 
        display: none;
    }
    .mobile-search-bar.active { display: block; }
    .ms-form { 
        display: flex; 
        width: 100%; 
        position: relative; 
        height: 42px; 
        border: 2px solid var(--luv-champagne); 
        border-radius: 30px; 
        background: #FFFFFF; 
    }
    .ms-form input { 
        flex: 1; 
        border: none; 
        border-radius: 30px 0 0 30px; 
        padding: 0 15px; 
        outline: none; 
        font-family: inherit; 
        font-size: 0.9rem; 
        background: transparent; 
    }
    .ms-form button { 
        background: var(--luv-champagne); 
        border: none; 
        border-radius: 0 28px 28px 0; 
        color: #0A192F; 
        padding: 0 20px; 
        cursor: pointer; 
        font-weight: 700;
    }

    /* Mobile Bottom Navigation */
    .mobile-bottom-nav {
        display: flex; 
        justify-content: space-between; 
        align-items: center;
        position: fixed; 
        bottom: 0; 
        left: 0; 
        width: 100%;
        background: #FFFFFF; 
        border-top: 1px solid var(--luv-border); 
        padding: 6px 4px;
        z-index: 1000; 
        box-shadow: 0 -2px 10px rgba(0,0,0,0.06);
    }
    
    .bottom-nav-item {
        display: flex; 
        flex-direction: column; 
        align-items: center; 
        justify-content: center;
        color: var(--luv-text-muted); 
        font-size: 0.72rem; 
        text-transform: capitalize;
        font-weight: 600; 
        gap: 3px; 
        flex: 1; 
        text-align: center;
        text-decoration: none;
    }
    .bottom-nav-item span { white-space: nowrap; } 
    .bottom-nav-item.active, .bottom-nav-item:hover { color: var(--luv-champagne); }
    
    .nav-icon-wrap { 
        position: relative; 
        display: inline-flex; 
        align-items: center; 
        justify-content: center; 
        margin-bottom: 2px; 
        margin-top: 4px; 
    }
    .nav-icon-wrap i { font-size: 1.15rem; }
    
    .nav-badge { 
        position: absolute; 
        top: -6px; 
        right: -10px; 
        width: 16px; 
        height: 16px; 
        font-size: 0.6rem; 
        background: var(--luv-champagne); 
        color: #0A192F; 
        display: flex; 
        justify-content: center; 
        align-items: center; 
        border-radius: 50%; 
        font-weight: 800; 
        z-index: 2;
    }

    body { padding-bottom: 65px; }

    /* Slide-Out Mobile Sidebar */
    .mobile-sidebar { 
        position: fixed; 
        top: 0; 
        left: -320px; 
        width: 300px; 
        height: 100%; 
        height: 100dvh; 
        background: #FFFFFF; 
        z-index: 9999; 
        transition: left 0.3s cubic-bezier(0.16, 1, 0.3, 1); 
        display: flex; 
        flex-direction: column; 
        box-shadow: 2px 0 15px rgba(0,0,0,0.1);
    }
    .mobile-sidebar.open { left: 0; }
    .mobile-sidebar-overlay { 
        position: fixed; 
        top: 0; 
        left: 0; 
        width: 100%; 
        height: 100%; 
        background: rgba(0,0,0,0.6); 
        z-index: 9998; 
        opacity: 0; 
        visibility: hidden; 
        transition: 0.3s ease; 
    }
    .mobile-sidebar-overlay.open { opacity: 1; visibility: visible; }
    
    .ms-header { 
        display: flex; 
        justify-content: space-between; 
        align-items: center; 
        padding: 16px 20px; 
        border-bottom: 1px solid var(--luv-border); 
        flex-shrink: 0;
    }
    .ms-close { 
        background: #FFFFFF; 
        border: 1px solid var(--luv-border); 
        width: 34px; 
        height: 34px; 
        border-radius: 50%; 
        font-size: 1rem; 
        cursor: pointer; 
        color: var(--luv-onyx); 
        display: flex; 
        justify-content: center; 
        align-items: center; 
        box-shadow: 0 2px 5px rgba(0,0,0,0.05); 
    }
    
    .ms-content { padding: 20px; overflow-y: auto; flex: 1; padding-bottom: 50px; }
    .ms-section-title { 
        font-size: 0.75rem; 
        color: #94A3B8; 
        text-transform: uppercase; 
        letter-spacing: 1.5px; 
        margin-bottom: 12px; 
        font-weight: 700; 
    }
    .ms-content a.nav-link { 
        display: block; 
        padding: 12px 0; 
        color: var(--luv-onyx); 
        text-decoration: none; 
        font-weight: 600; 
        font-size: 0.95rem; 
        border-bottom: 1px solid #F1F5F9; 
    }
    .ms-cat-wrapper {
        border-bottom: 1px solid #F1F5F9;
    }
    .ms-cat-header { 
        display: flex; 
        justify-content: space-between; 
        align-items: center; 
    }
    .ms-toggle { 
        width: 40px; 
        height: 40px; 
        display: flex; 
        justify-content: flex-end; 
        align-items: center; 
        cursor: pointer; 
        color: #64748B; 
        font-size: 0.85rem;
    }
    .ms-sub-menu { 
        display: none; 
        padding-left: 15px; 
        background: #F8FAFC; 
        list-style: none; 
        margin: 0;
    }
    .ms-sub-menu li a { 
        display: block; 
        padding: 10px 0; 
        color: #475569; 
        font-size: 0.85rem; 
        border-bottom: 1px solid #E2E8F0; 
        text-decoration: none;
    }
    .ms-sub-menu li:last-child a { border-bottom: none; }
}

/* Luviore Mobile Filter Bar & Drawer on Shop */
.mobile-filter-bar { display: none; }
.sidebar-close { display: none; }
.sidebar-overlay { display: none; }

@media (max-width: 991px) {
    .shop-layout { grid-template-columns: 1fr; gap: 20px; }
    .shop-container-inner { padding: 0 16px; }
    .shop-page-banner { padding: 25px 16px; margin-bottom: 20px; }
    .shop-page-banner h1 { font-size: 1.8rem; }
    .shop-top-bar { display: none; } 
    
    .mobile-filter-bar { 
        display: flex; 
        justify-content: space-between; 
        align-items: center; 
        padding: 10px 0; 
        border-bottom: 1px solid var(--luv-border); 
        margin-bottom: 18px;
    }
    .btn-filter-toggle { 
        background: transparent; 
        border: 1.5px solid var(--luv-onyx); 
        color: var(--luv-onyx); 
        padding: 8px 18px; 
        font-family: inherit; 
        text-transform: uppercase; 
        letter-spacing: 0.5px; 
        font-size: 0.8rem; 
        font-weight: 700; 
        display: flex; 
        align-items: center; 
        gap: 8px; 
        cursor: pointer; 
        border-radius: 4px;
    }
    
    .shop-sidebar { 
        position: fixed; 
        top: 0; 
        left: -100%; 
        width: 300px; 
        max-width: 85vw; 
        height: 100vh; 
        background: #FFFFFF; 
        z-index: 2000; 
        padding: 30px 20px; 
        overflow-y: auto; 
        transition: 0.35s cubic-bezier(0.16, 1, 0.3, 1); 
        box-shadow: 10px 0 30px rgba(0,0,0,0.12);
    }
    .shop-sidebar.active { left: 0; }
    
    .sidebar-close { 
        display: block; 
        position: absolute; 
        top: 15px; 
        right: 15px; 
        background: none; 
        border: none; 
        font-size: 1.8rem; 
        cursor: pointer; 
        color: var(--luv-onyx);
        line-height: 1;
    }
    
    .sidebar-overlay { 
        position: fixed; 
        inset: 0; 
        background: rgba(0,0,0,0.5); 
        z-index: 1999; 
        opacity: 0; 
        visibility: hidden; 
        transition: 0.3s; 
        backdrop-filter: blur(2px);
    }
    .sidebar-overlay.active { opacity: 1; visibility: visible; }
    .product-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
    .sp-grid { grid-template-columns: 1fr; gap: 30px; }
    .sp-wrapper { padding: 0 16px; }
    .sp-gallery-container { position: relative; top: 0; }
}

@media (max-width: 576px) {
    .shop-container-inner { padding: 0 10px; }
    .product-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
    .badge-sale { padding: 2px 6px; font-size: 0.55rem; top: 6px; left: 6px; }
    .badge-capacity-pill { padding: 2px 6px; font-size: 0.58rem; top: 6px; right: 6px; }
    .prod-info { padding: 10px 8px; }
    .prod-cat { font-size: 0.6rem; margin-bottom: 2px; }
    .prod-info h4 { font-size: 0.85rem; margin-bottom: 4px; }
    .prod-price { font-size: 0.95rem; gap: 4px; }
    .prod-old-price { font-size: 0.75rem; }
    .btn-icon { width: 36px; font-size: 0.95rem; }
    .btn-cart { font-size: 0.72rem; padding: 8px 4px; }
    .sp-action-row { flex-wrap: wrap !important; justify-content: space-between !important; }
    .qty-wrap { width: 90px !important; }
    .action-icons { flex: 1; justify-content: flex-end; }
    .sp-action-row .btn-add-cart, .sp-action-row .btn-buy-now { 
        flex: 1 1 45% !important; min-width: 45% !important; max-width: none !important; margin-top: 6px;
    }
}

/* Quantity stepper & single product actions */
.qty-wrap { 
    display: flex; 
    align-items: center; 
    border: 1.5px solid var(--luv-border); 
    height: 44px; 
    background: #FFFFFF; 
    width: 80px; 
    border-radius: 4px;
    flex-shrink: 0; 
}
.qty-wrap input { 
    width: 45px; 
    text-align: center; 
    border: none; 
    font-size: 0.95rem; 
    font-weight: 700; 
    font-family: inherit; 
    outline: none; 
    -moz-appearance: textfield;
}
.qty-wrap input::-webkit-outer-spin-button, 
.qty-wrap input::-webkit-inner-spin-button { 
    -webkit-appearance: none; 
    margin: 0; 
}
.qty-arrows { 
    display: flex; 
    flex-direction: column; 
    width: 25px; 
    border-left: 1px solid var(--luv-border); 
    height: 100%;
}
.qty-arrows button { 
    height: 50%; 
    border: none; 
    background: #F8FAFC; 
    cursor: pointer; 
    font-size: 0.65rem; 
    color: #475569; 
    transition: 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
}
.qty-arrows button:first-child { border-bottom: 1px solid var(--luv-border); }
.qty-arrows button:hover { background: #E2E8F0; color: #0A192F; }

/* 1-Click Quick Order Button */
.btn-quick-order-luv {
    background: linear-gradient(135deg, #F59E0B 0%, #D4AF37 100%);
    color: #0A192F !important;
    width: 100%;
    height: 46px;
    border: none;
    border-radius: 4px;
    font-weight: 800;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 14px;
    box-shadow: 0 4px 14px rgba(245, 158, 11, 0.35);
    transition: 0.25s ease;
}
.btn-quick-order-luv:hover {
    background: linear-gradient(135deg, #D4AF37 0%, #B89628 100%);
    color: #FFFFFF !important;
    transform: translateY(-1px);
}

/* Sticky Mobile Action Bar */
.sp-mobile-sticky-bar {
    display: none;
    position: fixed;
    bottom: 58px;
    left: 0;
    right: 0;
    background: #FFFFFF;
    border-top: 1px solid #E2E8F0;
    box-shadow: 0 -4px 15px rgba(0,0,0,0.08);
    padding: 10px 14px;
    z-index: 998;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}
@media (max-width: 768px) {
    .sp-mobile-sticky-bar { display: flex; }
}

/* Card Tools Overlay (Wishlist & Compare) */
.card-tools-overlay {
  position: absolute;
  top: 10px;
  right: 10px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  z-index: 5;
}
.btn-tool-overlay {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid #E2E8F0;
  color: #475569;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
  font-size: 0.85rem;
  box-shadow: 0 2px 6px rgba(0,0,0,0.08);
}
.btn-tool-overlay:hover {
  background: #0A192F;
  color: #D4AF37;
  border-color: #D4AF37;
  transform: scale(1.1);
}
.btn-tool-overlay.active {
  background: rgba(239, 68, 68, 0.12);
  border-color: #EF4444;
  color: #EF4444;
}
.btn-tool-overlay.compare-btn.active {
  background: rgba(37, 99, 235, 0.12);
  border-color: #2563EB;
  color: #2563EB;
}

/* Single Product Page Wishlist & Compare Action Buttons */
.btn-tool-sp {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  background: #FFFFFF;
  border: 1.5px solid #CBD5E1;
  border-radius: 6px;
  color: #334155;
  font-size: 0.9rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s ease;
  box-shadow: 0 1px 3px rgba(0,0,0,0.04);
}
.btn-tool-sp:hover {
  background: #0A192F;
  color: #D4AF37;
  border-color: #0A192F;
}
.btn-tool-sp.active {
  background: rgba(239, 68, 68, 0.08);
  border-color: #EF4444;
  color: #EF4444;
}
.btn-tool-sp.compare-btn.active {
  background: rgba(37, 99, 235, 0.08);
  border-color: #2563EB;
  color: #2563EB;
}

/* Global Floating Toast Notification */
.store-toast {
  background: #0A192F;
  color: #FFFFFF;
  padding: 14px 20px;
  border-radius: 10px;
  border: 1px solid rgba(212, 175, 55, 0.4);
  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.92rem;
  font-weight: 600;
  animation: toastSlideUp 0.3s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}
.store-toast.toast-remove {
  border-color: rgba(239, 68, 68, 0.4);
}
@keyframes toastSlideUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes toastFadeOut {
  from { opacity: 1; transform: translateY(0); }
  to { opacity: 0; transform: translateY(20px); }
}


/* User Account Dropdown (Luviore Luxury Architecture) */
.header-user-menu {
  position: relative;
  display: inline-block;
}
.user-dropdown-panel {
  display: none;
  position: absolute;
  top: calc(100% + 12px);
  right: -10px;
  width: 240px;
  background: #0c182c;
  border: 1px solid rgba(212, 175, 55, 0.3);
  border-radius: 12px;
  padding: 16px;
  box-shadow: 0 16px 36px rgba(0,0,0,0.4);
  z-index: 1000;
  animation: fadeInDown 0.2s ease forwards;
}
.header-user-menu:hover .user-dropdown-panel,
.header-user-menu:focus-within .user-dropdown-panel {
  display: block;
}
.udp-header {
  padding-bottom: 12px;
  margin-bottom: 10px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.udp-link {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 10px;
  color: #CBD5E1;
  text-decoration: none;
  font-size: 0.88rem;
  font-weight: 500;
  border-radius: 6px;
  transition: all 0.2s;
}
.udp-link:hover {
  background: rgba(212, 175, 55, 0.1);
  color: #D4AF37;
}
.udp-link i {
  width: 18px;
  text-align: center;
  font-size: 0.85rem;
}
.udp-btn-signin {
  display: block;
  width: 100%;
  padding: 9px;
  text-align: center;
  background: linear-gradient(135deg, #F59E0B 0%, #D4AF37 100%);
  color: #0A192F;
  font-weight: 700;
  font-size: 0.88rem;
  border-radius: 6px;
  text-decoration: none;
  transition: opacity 0.2s;
}
.udp-btn-signin:hover {
  opacity: 0.92;
}

/* Live Search Dropdown (Luviore Fast Autocomplete) */
.header-search-wrap {
  position: relative;
  flex: 1;
  max-width: 580px;
}
.live-search-dropdown {
  display: none;
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  right: 0;
  background: #0c182c;
  border: 1px solid rgba(212, 175, 55, 0.3);
  border-radius: 12px;
  max-height: 380px;
  overflow-y: auto;
  box-shadow: 0 16px 36px rgba(0,0,0,0.45);
  z-index: 1001;
  padding: 8px 0;
}
.live-search-dropdown.active {
  display: block;
  animation: fadeInDown 0.2s ease forwards;
}
.ls-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 16px;
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  transition: background 0.2s;
}
.ls-item:last-child {
  border-bottom: none;
}
.ls-item:hover {
  background: rgba(212, 175, 55, 0.08);
}
.ls-img {
  width: 44px;
  height: 44px;
  object-fit: contain;
  background: #FFFFFF;
  border-radius: 6px;
  padding: 2px;
  flex-shrink: 0;
}
.ls-info {
  flex: 1;
  min-width: 0;
}
.ls-title {
  color: #FFFFFF;
  font-size: 0.9rem;
  font-weight: 600;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-bottom: 2px;
}
.ls-meta {
  font-size: 0.78rem;
  color: #94A3B8;
}
.ls-price {
  color: #D4AF37;
  font-weight: 700;
  font-size: 0.95rem;
  font-family: var(--font-mono);
  flex-shrink: 0;
}
.ls-empty {
  padding: 20px;
  text-align: center;
  color: #94A3B8;
  font-size: 0.88rem;
}
@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-6px); }
  to { opacity: 1; transform: translateY(0); }
}



