/* ==========================================================================
   NEW RAJIV CROCKERIES - PREMIUM STYLE SYSTEM (SINCE 2004)
   ========================================================================== */

/* --- Google Fonts Import --- */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;0,700;1,400&family=Inter:wght@300;400;500;600;700&display=swap');

/* --- Core Variables --- */
:root {
  --color-dark-bg: #101114;
  --color-dark-surface: #17181c;
  --color-dark-card: #202227;
  --color-light-bg: #fdfdfc;
  --color-light-surface: #f7f6f2;
  --color-light-card: #ffffff;
  
  --color-gold: #c5a880;
  --color-gold-bright: #d4af37;
  --color-gold-hover: #b0936b;
  --color-gold-glow: rgba(197, 168, 128, 0.2);
  
  --color-text-dark-primary: #ffffff;
  --color-text-dark-secondary: #a0a2ad;
  --color-text-dark-muted: #696b75;
  
  --color-text-light-primary: #1c1d21;
  --color-text-light-secondary: #565861;
  --color-text-light-muted: #8c8e99;
  
  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  
  --transition-smooth: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-fast: all 0.25s ease;
  
  --radius-sm: 4px;
  --radius-md: 12px;
  --radius-lg: 24px;
  --radius-full: 9999px;
  
  --shadow-premium: 0 10px 40px -10px rgba(0, 0, 0, 0.3);
  --shadow-gold: 0 8px 30px rgba(197, 168, 128, 0.15);
  
  --nav-height: 80px;

  /* --- Default Theme variables --- */
  --header-nav-bg: rgba(16, 17, 20, 0.85);
  --border-light: rgba(255, 255, 255, 0.03);
  --border-medium: rgba(255, 255, 255, 0.05);
}

/* --- Theme Adaptability (CSS Variable Redefinitions) --- */
[data-theme="light"] {
  --color-dark-bg: var(--color-light-bg);
  --color-dark-surface: var(--color-light-surface);
  --color-dark-card: var(--color-light-card);
  
  --color-gold: #ab8554;
  --color-gold-bright: #9a7446;
  --color-gold-hover: #8e683a;
  --color-gold-glow: rgba(171, 133, 84, 0.2);
  
  --color-text-dark-primary: var(--color-text-light-primary);
  --color-text-dark-secondary: var(--color-text-light-secondary);
  --color-text-dark-muted: var(--color-text-light-muted);
  
  --header-nav-bg: rgba(253, 253, 252, 0.9);
  --border-light: rgba(0, 0, 0, 0.03);
  --border-medium: rgba(0, 0, 0, 0.05);
}

/* --- Light Mode UI Optimization & Contrast Refinements --- */
[data-theme="light"] #topbar {
  border-bottom-color: rgba(0, 0, 0, 0.08);
}
[data-theme="light"] .tb-link {
  border-right-color: rgba(0, 0, 0, 0.08);
}
[data-theme="light"] .tb-social {
  background: rgba(0, 0, 0, 0.04);
}
[data-theme="light"] .tb-social:hover {
  background: var(--color-gold);
  color: #ffffff;
}
[data-theme="light"] .inquiry-cart-trigger {
  border-color: rgba(0, 0, 0, 0.12);
  color: var(--color-text-light-primary);
}
[data-theme="light"] .inquiry-cart-trigger:hover {
  border-color: var(--color-gold);
  color: var(--color-gold);
  background: rgba(0, 0, 0, 0.02);
}
[data-theme="light"] .phone-quick {
  border-color: rgba(197, 168, 128, 0.4);
  background-color: rgba(197, 168, 128, 0.06);
}
[data-theme="light"] .phone-quick:hover {
  background-color: rgba(197, 168, 128, 0.12);
}

/* Header Navigation (Light Theme Contrast Optimization) */
[data-theme="light"] .header-nav {
  background: rgba(253, 253, 252, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

/* Hero Section (Fully Theme-Adaptive) */
[data-theme="light"] .hero-section {
  background-color: var(--color-light-bg);
}
[data-theme="light"] .hero-bg-container::after {
  background: linear-gradient(90deg, rgba(253, 253, 252, 0.99) 0%, rgba(253, 253, 252, 0.96) 45%, rgba(253, 253, 252, 0.7) 80%, rgba(253, 253, 252, 0.2) 100%);
}
[data-theme="light"] .hero-img.active {
  opacity: 1.0;
}
[data-theme="light"] .hero-title {
  color: var(--color-text-light-primary);
}
[data-theme="light"] .hero-description {
  color: var(--color-text-light-secondary);
}
[data-theme="light"] .hero-brand-tagline {
  color: var(--color-gold-hover);
}
[data-theme="light"] .text-gold {
  color: var(--color-gold-hover);
}
[data-theme="light"] .hero-section .btn-secondary {
  color: var(--color-text-light-primary);
  border-color: rgba(0, 0, 0, 0.15);
}
[data-theme="light"] .hero-section .btn-secondary:hover {
  border-color: var(--color-gold);
  color: var(--color-gold);
  background-color: rgba(197, 168, 128, 0.05);
}

/* Catalog Grid & Filters */
[data-theme="light"] .catalog-filters {
  background-color: rgba(0, 0, 0, 0.04);
  border-color: rgba(0, 0, 0, 0.08);
}
[data-theme="light"] .filter-btn:hover:not(.active) {
  color: var(--color-text-light-primary);
  background-color: rgba(0, 0, 0, 0.04);
}
[data-theme="light"] .product-card {
  border-color: rgba(0, 0, 0, 0.06);
}
[data-theme="light"] .product-card:hover {
  border-color: rgba(197, 168, 128, 0.4);
}
[data-theme="light"] .product-img-wrapper {
  background-color: var(--color-light-surface);
}

/* B2B Cover Estimator (Quote Builder) */
[data-theme="light"] .quote-interactive-box {
  border-color: rgba(0, 0, 0, 0.06);
}
[data-theme="light"] .cover-option {
  border-color: rgba(0, 0, 0, 0.1);
  background-color: rgba(0, 0, 0, 0.01);
}
[data-theme="light"] .cover-option:hover {
  border-color: rgba(197, 168, 128, 0.4);
  background-color: rgba(197, 168, 128, 0.02);
}
[data-theme="light"] .cover-option.active {
  border-color: var(--color-gold);
  background-color: var(--color-gold-glow);
}
[data-theme="light"] .custom-covers-input {
  background-color: rgba(0, 0, 0, 0.04);
  border-color: rgba(0, 0, 0, 0.08);
}
[data-theme="light"] .tableware-option {
  border-color: rgba(0, 0, 0, 0.1);
  background-color: rgba(0, 0, 0, 0.01);
}
[data-theme="light"] .tableware-option:hover {
  border-color: rgba(197, 168, 128, 0.4);
  background-color: rgba(197, 168, 128, 0.02);
}
[data-theme="light"] .tableware-option.active {
  border-color: var(--color-gold);
  background-color: var(--color-gold-glow);
}
[data-theme="light"] .tableware-checkbox {
  border-color: rgba(0, 0, 0, 0.25);
}
[data-theme="light"] .tableware-option.active .tableware-checkbox {
  border-color: var(--color-gold);
}
[data-theme="light"] .estimator-category-group {
  border-color: rgba(0, 0, 0, 0.08);
  background-color: rgba(0, 0, 0, 0.01);
}
[data-theme="light"] .estimator-category-group:hover {
  border-color: rgba(197, 168, 128, 0.2);
}
[data-theme="light"] .estimator-category-group.active {
  border-color: rgba(197, 168, 128, 0.4);
  background-color: rgba(197, 168, 128, 0.01);
}
[data-theme="light"] .estimator-subcategories {
  background-color: rgba(0, 0, 0, 0.03);
  border-top-color: rgba(0, 0, 0, 0.06);
}
[data-theme="light"] .sub-option {
  border-color: rgba(0, 0, 0, 0.06);
  background-color: rgba(0, 0, 0, 0.01);
}
[data-theme="light"] .sub-option:hover {
  background-color: rgba(0, 0, 0, 0.03);
  border-color: rgba(197, 168, 128, 0.2);
}
[data-theme="light"] .sub-option.active {
  background-color: rgba(197, 168, 128, 0.04);
  border-color: rgba(197, 168, 128, 0.4);
}
[data-theme="light"] .sub-checkbox {
  border-color: rgba(0, 0, 0, 0.25);
}
[data-theme="light"] .sub-option.active .sub-checkbox {
  border-color: var(--color-gold);
}
[data-theme="light"] .quote-summary-panel {
  background: rgba(197, 168, 128, 0.02);
  border-color: rgba(197, 168, 128, 0.25);
}
[data-theme="light"] .summary-item-row {
  border-bottom-color: rgba(0, 0, 0, 0.06);
}

/* Contact & Locator Panels */
[data-theme="light"] .contact-form-container {
  border-color: rgba(0, 0, 0, 0.06);
}
[data-theme="light"] .form-input {
  background: rgba(0, 0, 0, 0.015);
  border-color: rgba(0, 0, 0, 0.08);
}
[data-theme="light"] .form-input:focus {
  background: #ffffff;
  border-color: var(--color-gold);
  box-shadow: 0 0 0 3px rgba(197, 168, 128, 0.12);
}
[data-theme="light"] .form-input:-webkit-autofill,
[data-theme="light"] .form-input:-webkit-autofill:hover, 
[data-theme="light"] .form-input:-webkit-autofill:focus, 
[data-theme="light"] .form-input:-webkit-autofill:active {
  -webkit-text-fill-color: var(--color-text-light-primary) !important;
}
[data-theme="light"] .form-input:focus ~ .form-label,
[data-theme="light"] .form-input:not(:placeholder-shown) ~ .form-label {
  color: var(--color-gold-hover);
}
[data-theme="light"] .showroom-card {
  border-color: rgba(0, 0, 0, 0.06);
}
[data-theme="light"] .showroom-card:hover {
  border-color: rgba(197, 168, 128, 0.35);
}
[data-theme="light"] .showroom-card.highlight {
  border-color: var(--color-gold);
  background: linear-gradient(145deg, #ffffff 0%, rgba(197, 168, 128, 0.02) 100%);
}

/* Lucknow Interactive Grid Map Overrides */
[data-theme="light"] .luxury-map-mock {
  background-color: #f5f4f0;
  border-color: rgba(0, 0, 0, 0.08);
  box-shadow: inset 0 0 25px rgba(0, 0, 0, 0.05);
}

[data-theme="light"] .google-map-iframe {
  filter: grayscale(0.15) contrast(1) brightness(1);
}
[data-theme="light"] .map-canvas-mock {
  background-image: 
    linear-gradient(rgba(0, 0, 0, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 0, 0, 0.05) 1px, transparent 1px);
}
[data-theme="light"] .map-river-mock {
  background-color: rgba(197, 168, 128, 0.15);
}
[data-theme="light"] .pin-icon {
  background-color: #ffffff;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}
[data-theme="light"] .map-pin:hover .pin-icon,
[data-theme="light"] .map-pin.active .pin-icon {
  background-color: var(--color-gold);
  box-shadow: 0 0 20px rgba(197, 168, 128, 0.6);
}
[data-theme="light"] .pin-label {
  background: #ffffff;
  border-color: rgba(0, 0, 0, 0.1);
  color: var(--color-text-light-primary);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}
[data-theme="light"] .map-pin.active .pin-label {
  border-color: var(--color-gold);
  color: var(--color-gold-hover);
}
[data-theme="light"] .dot-label {
  background: #ffffff;
  border-color: rgba(0, 0, 0, 0.1);
  color: var(--color-text-light-primary);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

/* Modals & Cart Drawer Overrides */
[data-theme="light"] .inquiry-drawer {
  border-left-color: rgba(0, 0, 0, 0.08);
  box-shadow: -10px 0 40px rgba(0, 0, 0, 0.08);
}
[data-theme="light"] .drawer-header,
[data-theme="light"] .drawer-footer {
  border-color: rgba(0, 0, 0, 0.06);
}
[data-theme="light"] .drawer-close-btn {
  border-color: rgba(0, 0, 0, 0.08);
}
[data-theme="light"] .drawer-cart-item {
  border-color: rgba(0, 0, 0, 0.06);
}
[data-theme="light"] .drawer-item-img {
  background: var(--color-light-surface);
  border-color: rgba(0, 0, 0, 0.05);
}
[data-theme="light"] .drawer-item-qty-input {
  background: rgba(0, 0, 0, 0.04);
  border-color: rgba(0, 0, 0, 0.08);
}
[data-theme="light"] .drawer-empty-state svg {
  color: rgba(0, 0, 0, 0.06);
}
[data-theme="light"] .category-modal {
  background: rgba(255, 255, 255, 0.98);
  border-color: rgba(197, 168, 128, 0.3);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15), inset 0 0 20px rgba(0, 0, 0, 0.02);
}
[data-theme="light"] .modal-header {
  border-bottom-color: rgba(0, 0, 0, 0.06);
}
[data-theme="light"] .modal-close-btn {
  background: rgba(0, 0, 0, 0.02);
  border-color: rgba(0, 0, 0, 0.05);
}
[data-theme="light"] .modal-close-btn:hover {
  background: rgba(197, 168, 128, 0.15);
}
[data-theme="light"] .modal-product-card {
  background: rgba(0, 0, 0, 0.01);
  border-color: rgba(0, 0, 0, 0.06);
}
[data-theme="light"] .modal-product-card:hover {
  background: rgba(197, 168, 128, 0.02);
  border-color: rgba(197, 168, 128, 0.2);
}
[data-theme="light"] .modal-prod-img-wrapper {
  background-color: var(--color-light-surface);
  border-color: rgba(0, 0, 0, 0.05);
}
[data-theme="light"] .modal-qty-selector {
  border-color: rgba(0, 0, 0, 0.1);
  background: rgba(0, 0, 0, 0.04);
}
[data-theme="light"] .modal-qty-btn {
  color: var(--color-text-light-primary);
}

/* Client Showcase Overrides */
[data-theme="light"] .stat-label {
  color: var(--color-text-light-secondary);
}
[data-theme="light"] .client-card {
  border-color: rgba(0, 0, 0, 0.06);
}
[data-theme="light"] .client-card:hover {
  border-color: var(--color-gold);
  background: linear-gradient(180deg, var(--color-light-surface) 0%, rgba(197, 168, 128, 0.02) 100%);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
}
[data-theme="light"] .client-brand-name {
  color: var(--color-text-light-primary);
}
[data-theme="light"] .client-tagline {
  color: var(--color-text-light-secondary);
}
[data-theme="light"] .client-logo-wrapper {
  color: var(--color-text-light-secondary);
}
[data-theme="light"] .client-logo-wrapper img {
  filter: none !important; /* Show true brand colors by default in light mode */
  opacity: 0.75 !important;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform, opacity;
}
[data-theme="light"] .client-card:hover .client-logo-wrapper {
  color: var(--color-gold-hover);
}
[data-theme="light"] .client-card:hover .client-logo-wrapper img {
  opacity: 1 !important;
  transform: scale(1.06);
}

[data-theme="light"] .domestic-panel .panel-badge {
  color: var(--color-gold-hover);
}
[data-theme="light"] .domestic-panel .showroom-more-note {
  color: var(--color-gold-hover);
}
[data-theme="light"] .domestic-panel .features-list li::before {
  color: var(--color-gold-hover);
}
[data-theme="light"] .showroom-tag {
  color: var(--color-gold-hover);
  border-color: var(--color-gold-hover);
}
[data-theme="light"] .product-category {
  color: var(--color-gold-hover);
}

/* Footer Contrast Overrides */
[data-theme="light"] footer {
  color: rgba(255, 255, 255, 0.6) !important;
}
[data-theme="light"] footer .footer-heading {
  color: #ffffff !important;
}
[data-theme="light"] footer .footer-links a {
  color: rgba(255, 255, 255, 0.6) !important;
}
[data-theme="light"] footer .footer-links a:hover {
  color: var(--color-gold) !important;
}
[data-theme="light"] footer .footer-contact-item {
  color: rgba(255, 255, 255, 0.6) !important;
}
[data-theme="light"] footer .footer-bottom {
  color: rgba(255, 255, 255, 0.4) !important;
  border-top-color: rgba(255, 255, 255, 0.05) !important;
}
[data-theme="light"] footer .footer-map-link {
  color: rgba(255, 255, 255, 0.6) !important;
}

/* Global Transition for Smooth Theme Switching */
body, section, header, footer, .product-card, .client-card, .brand-item-badge, .modal-product-card, input, textarea, button, p, h1, h2, h3, h4, h5, h6, span, a {
  transition: background-color 0.4s ease, border-color 0.4s ease, color 0.4s ease, box-shadow 0.4s ease;
}

/* Theme Toggle Button Styles */
.theme-toggle-btn {
  background: none;
  border: none;
  color: var(--color-gold);
  cursor: pointer;
  padding: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-fast);
  border-radius: var(--radius-full);
  margin-right: 15px;
}

.theme-toggle-btn:hover {
  color: var(--color-gold-bright);
  background: rgba(255, 255, 255, 0.05);
}

[data-theme="light"] .theme-toggle-btn:hover {
  background: rgba(0, 0, 0, 0.05);
}

/* Toggle Sun/Moon display based on active theme */
.theme-toggle-btn .sun-icon {
  display: block;
}
.theme-toggle-btn .moon-icon {
  display: none;
}

[data-theme="light"] .theme-toggle-btn .sun-icon {
  display: none;
}
[data-theme="light"] .theme-toggle-btn .moon-icon {
  display: block;
}

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

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

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-serif);
  font-weight: 600;
  letter-spacing: -0.01em;
}

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

button, input, textarea, select {
  font-family: inherit;
  outline: none;
  border: none;
}

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

/* --- Custom Scrollbar --- */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: var(--color-dark-bg);
}
::-webkit-scrollbar-thumb {
  background: #2b2d35;
  border-radius: var(--radius-full);
}
::-webkit-scrollbar-thumb:hover {
  background: var(--color-gold);
}

/* --- Scroll Progress Indicator --- */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--color-gold-bright), var(--color-gold));
  z-index: 1005;
  width: 0%;
  transition: width 0.1s ease-out;
}

/* --- Global Utilities --- */
.section-padding {
  padding: 120px 8% 100px 8%;
}

@media (max-width: 768px) {
  .section-padding {
    padding: 80px 5% 60px 5%;
  }
}

.gold-text {
  color: var(--color-gold);
  font-family: var(--font-serif);
  font-style: italic;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background-color: var(--color-gold);
  color: #101114;
  padding: 14px 28px;
  border-radius: var(--radius-full);
  font-weight: 500;
  font-size: 0.95rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  box-shadow: var(--shadow-gold);
  cursor: pointer;
  transition: var(--transition-smooth);
}

.btn-primary:hover {
  background-color: var(--color-gold-bright);
  transform: translateY(-2px);
  box-shadow: 0 12px 35px rgba(197, 168, 128, 0.35);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background-color: transparent;
  color: var(--color-text-dark-primary);
  border: 1px solid rgba(255, 255, 255, 0.15);
  padding: 14px 28px;
  border-radius: var(--radius-full);
  font-weight: 500;
  font-size: 0.95rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  cursor: pointer;
  transition: var(--transition-smooth);
}

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

.section-tag {
  font-family: var(--font-sans);
  font-size: 0.8rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--color-gold);
  display: inline-block;
  margin-bottom: 15px;
  font-weight: 600;
}

.section-title {
  font-size: 3.5rem;
  line-height: 1.15;
  margin-bottom: 25px;
  font-weight: 300;
}

@media (max-width: 768px) {
  .section-title {
    font-size: 2.5rem;
  }
}

.section-desc {
  max-width: 600px;
  color: var(--color-text-dark-secondary);
  font-size: 1.1rem;
  font-weight: 300;
  margin-bottom: 40px;
}

/* ==========================================================================
   HEADER & NAVIGATION
   ========================================================================== */
/* --- Top Bar --- */
#topbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1001;
  background: var(--color-dark-surface);
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 8%;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  font-family: var(--font-sans);
}

.tb-contacts {
  display: flex;
  align-items: center;
  height: 38px;
  gap: 0;
}

.tb-link {
  display: flex;
  align-items: center;
  gap: 7px;
  color: var(--color-text-dark-secondary);
  text-decoration: none;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  padding: 0 18px;
  height: 38px;
  border-right: 1px solid rgba(255, 255, 255, 0.08);
  transition: var(--transition-fast);
  white-space: nowrap;
}

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

.tb-link:first-child {
  padding-left: 0;
}

.tb-icon {
  background: var(--color-gold);
  color: var(--color-dark-bg);
  width: 18px;
  height: 18px;
  border-radius: 3px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 9px;
  flex-shrink: 0;
  line-height: 1;
}

.tb-link:hover .tb-icon {
  background: var(--color-gold-bright);
}

.tb-right {
  display: flex;
  align-items: center;
  gap: 15px;
}

.tb-loc {
  color: var(--color-text-dark-secondary);
  font-size: 0.72rem;
  letter-spacing: 0.05em;
  font-weight: 500;
}

.tb-social {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-text-dark-secondary);
  font-size: 0.75rem;
  text-decoration: none;
  transition: var(--transition-fast);
}

.tb-social:hover {
  background: var(--color-gold);
  color: var(--color-dark-bg);
}

.header-nav {
  position: fixed;
  top: 38px;
  left: 0;
  width: 100%;
  height: var(--nav-height);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 8%;
  z-index: 99;
  transition: var(--transition-smooth);
}

.header-nav.scrolled {
  background: var(--header-nav-bg);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-medium);
  height: 70px;
  box-shadow: var(--shadow-premium);
}

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

.logo-link {
  display: flex;
  align-items: center;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.logo-link:hover img {
  transform: scale(1.04);
}

.logo-main {
  font-size: 1.4rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-text-dark-primary);
}

.logo-main span {
  color: var(--color-gold);
}

.logo-sub {
  font-size: 0.65rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--color-text-dark-secondary);
  margin-top: 1px;
}

.nav-links {
  display: flex;
  gap: 35px;
  list-style: none;
}

.nav-links a {
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--color-text-dark-secondary);
  position: relative;
  padding: 8px 0;
}

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

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

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.nav-links a.nav-highlight {
  color: var(--color-gold) !important;
  border: 1.5px solid rgba(197, 168, 128, 0.4);
  padding: 6px 16px;
  border-radius: var(--radius-sm);
  transition: all 0.3s ease;
}

.nav-links a.nav-highlight::after {
  display: none !important;
}

.nav-links a.nav-highlight:hover {
  background-color: var(--color-gold);
  color: #101114 !important;
  border-color: var(--color-gold);
  box-shadow: 0 4px 15px rgba(197, 168, 128, 0.2);
}

.nav-links a.nav-highlight.active {
  border-color: var(--color-gold);
}


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

.phone-quick {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--color-text-dark-primary);
  border: 1px solid rgba(197, 168, 128, 0.25);
  padding: 8px 16px;
  border-radius: var(--radius-full);
  background-color: rgba(197, 168, 128, 0.05);
}

.phone-quick svg {
  color: var(--color-gold);
}

.phone-quick:hover {
  border-color: var(--color-gold);
  background-color: rgba(197, 168, 128, 0.15);
}

/* Inquiry Cart Trigger */
.inquiry-cart-trigger {
  position: relative;
  background: transparent;
  color: var(--color-text-dark-primary);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: var(--radius-full);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: var(--transition-fast);
}

.inquiry-cart-trigger:hover {
  border-color: var(--color-gold);
  color: var(--color-gold);
  background: rgba(255, 255, 255, 0.02);
}

.cart-count {
  position: absolute;
  top: -4px;
  right: -4px;
  background-color: var(--color-gold-bright);
  color: #101114;
  font-size: 0.7rem;
  font-weight: 700;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-fast);
  transform: scale(0);
}

.cart-count.active {
  transform: scale(1);
}

/* Mobile Menu Toggle */
.mobile-menu-btn {
  display: none;
  background: transparent;
  color: var(--color-text-dark-primary);
  cursor: pointer;
  font-size: 1.5rem;
}

@media (max-width: 1024px) {
  .nav-links, .phone-quick {
    display: none;
  }
  .mobile-menu-btn {
    display: block;
  }
}

/* Mobile Nav Screen overlay */
.mobile-nav-panel {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: var(--color-dark-bg);
  z-index: 98;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 30px;
  transform: translateY(-100%);
  transition: var(--transition-smooth);
}

.mobile-nav-panel.open {
  transform: translateY(0);
}

.mobile-nav-links {
  list-style: none;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.mobile-nav-links a {
  font-size: 1.8rem;
  font-family: var(--font-serif);
  color: var(--color-text-dark-secondary);
}

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

.mobile-phone-link {
  margin-top: 20px;
  font-size: 1.1rem;
  color: var(--color-gold);
  border: 1px solid rgba(197, 168, 128, 0.4);
  padding: 12px 24px;
  border-radius: var(--radius-full);
}

/* ==========================================================================
   HERO LANDING SECTION
   ========================================================================== */
.hero-section {
  height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  padding: 0 8%;
  overflow: hidden;
  background-color: var(--color-dark-bg);
}

.hero-bg-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.hero-bg-container::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, rgba(16, 17, 20, 0.95) 0%, rgba(16, 17, 20, 0.5) 40%, rgba(16, 17, 20, 0) 80%);
  z-index: 2;
}

.hero-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0;
  z-index: 1;
  transition: opacity 1.5s ease-in-out;
  transform: scale(1.02);
  pointer-events: none;
}

.hero-img.active {
  opacity: 0.85;
  animation: zoomSlow 20s infinite alternate ease-in-out;
}

@keyframes zoomSlow {
  0% { transform: scale(1.02); }
  100% { transform: scale(1.1); }
}

.hero-content {
  position: relative;
  z-index: 3;
  max-width: 800px;
  margin-top: 60px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(197, 168, 128, 0.12);
  border: 1px solid rgba(197, 168, 128, 0.3);
  padding: 8px 18px;
  border-radius: var(--radius-full);
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: 25px;
  backdrop-filter: blur(5px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  animation: fadeInUp 0.8s ease-out;
}

.hero-badge .bullet {
  width: 6px;
  height: 6px;
  background-color: var(--color-gold-bright);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--color-gold-bright);
}

.hero-title {
  font-size: 4.8rem;
  font-weight: 300;
  line-height: 1.05;
  margin-bottom: 25px;
  animation: fadeInUp 1s cubic-bezier(0.16, 1, 0.3, 1) 0.1s both;
}

.hero-title strong {
  font-weight: 600;
  color: var(--color-gold);
  font-style: italic;
  font-family: var(--font-serif);
}

.text-gold {
  color: var(--color-gold);
  font-weight: 600;
  font-family: var(--font-serif);
  font-style: italic;
}

.typing-cursor {
  font-weight: 300;
  color: var(--color-gold);
  animation: blink-cursor 1s step-end infinite;
  margin-left: 4px;
}

@keyframes blink-cursor {
  from, to { color: transparent }
  50% { color: var(--color-gold) }
}

@media (max-width: 768px) {
  .hero-title {
    font-size: 3rem;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 2.1rem;
  }
  .hero-description {
    font-size: 1.05rem;
    margin-bottom: 30px;
  }
}

.hero-description {
  font-size: 1.25rem;
  font-weight: 300;
  color: var(--color-text-dark-secondary);
  margin-bottom: 45px;
  max-width: 620px;
  animation: fadeInUp 1s cubic-bezier(0.16, 1, 0.3, 1) 0.2s both;
}

.hero-btns {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  animation: fadeInUp 1s cubic-bezier(0.16, 1, 0.3, 1) 0.3s both;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ==========================================================================
   THE DUAL BRANCH SHOWCASE
   ========================================================================== */
.showroom-intro {
  text-align: center;
  background: var(--color-dark-surface);
  border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}

.showroom-intro .section-desc {
  margin: 0 auto;
}

.dual-showrooms {
  display: flex;
  min-height: 90vh;
  position: relative;
  background-color: var(--color-dark-bg);
}

.showroom-panel {
  flex: 1;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 8% 5%;
  overflow: hidden;
  transition: var(--transition-smooth);
  cursor: pointer;
}

/* Left panel (HoReCa Focus) - Dark Theme */
.horeca-panel {
  background-color: #121317;
  color: #ffffff;
  border-right: 1px solid rgba(255, 255, 255, 0.05);
}

/* Right panel (Domestic) - Light Theme */
.domestic-panel {
  background-color: var(--color-light-bg);
  color: var(--color-text-light-primary);
}

/* Image background overlays */
.showroom-panel-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  overflow: hidden;
}

.showroom-panel-bg::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transition: var(--transition-smooth);
  z-index: 2;
}

.horeca-panel .showroom-panel-bg::after {
  background: linear-gradient(180deg, rgba(16, 18, 22, 0.4) 0%, rgba(16, 18, 22, 0.95) 90%);
}

.domestic-panel .showroom-panel-bg::after {
  background: linear-gradient(180deg, rgba(253, 253, 252, 0.25) 0%, rgba(253, 253, 252, 0.95) 90%);
}

.panel-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.35;
  transition: var(--transition-smooth);
  filter: grayscale(40%);
}

.horeca-panel .panel-img {
  opacity: 0.45;
}

.showroom-panel:hover .panel-img {
  transform: scale(1.05);
  filter: grayscale(0%);
}

.showroom-panel:hover {
  flex: 1.15;
}

/* Panel Contents */
.showroom-panel-content {
  position: relative;
  z-index: 3;
  max-width: 500px;
}

.panel-badge {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 15px;
  color: var(--color-gold);
}

.panel-title {
  font-size: 3rem;
  font-weight: 300;
  margin-bottom: 20px;
  line-height: 1.1;
}

.panel-title strong {
  font-weight: 600;
}

@media (max-width: 768px) {
  .panel-title {
    font-size: 2.1rem;
  }
}

@media (max-width: 480px) {
  .panel-title {
    font-size: 1.8rem;
    margin-bottom: 15px;
  }
}

.horeca-panel .panel-title strong {
  color: var(--color-gold);
}

.panel-text {
  font-size: 1rem;
  margin-bottom: 30px;
  font-weight: 300;
}

.horeca-panel .panel-title {
  color: #ffffff;
}

.domestic-panel .panel-title {
  color: var(--color-text-light-primary);
}

.horeca-panel .panel-text {
  color: rgba(255, 255, 255, 0.7);
}

.domestic-panel .panel-text {
  color: var(--color-text-light-secondary);
}

/* Interactive tags list inside panel */
.panel-tags {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 35px;
}

.panel-tag {
  font-size: 0.75rem;
  padding: 6px 14px;
  border-radius: var(--radius-full);
  font-weight: 500;
  border: 1px solid;
}

.horeca-panel .panel-tag {
  border-color: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.75);
  background-color: rgba(255, 255, 255, 0.02);
}

.domestic-panel .panel-tag {
  border-color: rgba(0, 0, 0, 0.08);
  color: rgba(0, 0, 0, 0.65);
  background-color: rgba(0, 0, 0, 0.02);
}

/* Showroom Displayed Varieties List Styling */
.showroom-features {
  margin-top: 25px;
  margin-bottom: 30px;
  text-align: left;
}

.features-title {
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 15px;
  font-weight: 600;
  font-family: var(--font-sans);
}

.horeca-panel .features-title {
  color: var(--color-gold);
}

.domestic-panel .features-title {
  color: #1c1d21;
  border-bottom-color: rgba(0, 0, 0, 0.08);
}

.features-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.features-list li {
  font-size: 0.9rem;
  line-height: 1.45;
  position: relative;
  padding-left: 20px;
  font-weight: 300;
}

.features-list li::before {
  content: "•";
  position: absolute;
  left: 2px;
  top: -1px;
  font-size: 1.25rem;
  line-height: 1;
}

.horeca-panel .features-list li::before {
  color: var(--color-gold);
}

.domestic-panel .features-list li::before {
  color: #c5a880;
}

.horeca-panel .features-list li {
  color: rgba(255, 255, 255, 0.7);
}

.domestic-panel .features-list li {
  color: rgba(28, 29, 33, 0.75);
}

.horeca-panel .features-list li strong {
  color: #ffffff;
  font-weight: 500;
}

.domestic-panel .features-list li strong {
  color: #1c1d21;
  font-weight: 500;
}

.showroom-more-note {
  font-size: 0.85rem;
  font-style: italic;
  margin-top: 15px;
  font-weight: 400;
  letter-spacing: 0.02em;
}

.horeca-panel .showroom-more-note {
  color: var(--color-gold);
  opacity: 0.85;
}

.domestic-panel .showroom-more-note {
  color: #c5a880;
}

@media (max-width: 900px) {
  .dual-showrooms {
    flex-direction: column;
    min-height: auto;
  }
  .showroom-panel {
    min-height: 60vh;
    padding: 60px 30px;
  }
  .showroom-panel:hover {
    flex: 1;
  }
}

@media (max-width: 480px) {
  .showroom-panel {
    padding: 40px 20px;
  }
}

/* ==========================================================================
   PRODUCT CATALOG SECTION
   ========================================================================== */
.catalog-section {
  background-color: var(--color-dark-surface);
}

.catalog-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 50px;
}

@media (max-width: 900px) {
  .catalog-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 30px;
  }
}

/* Elegant Segmented Catalog Filter */
.catalog-filters {
  display: flex;
  gap: 8px;
  background-color: rgba(0, 0, 0, 0.2);
  padding: 6px;
  border-radius: var(--radius-full);
  border: 1px solid rgba(255, 255, 255, 0.03);
  overflow-x: auto;
  max-width: 100%;
}

.catalog-filters::-webkit-scrollbar {
  display: none;
}

.filter-btn {
  background: transparent;
  color: var(--color-text-dark-secondary);
  font-size: 0.8rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 10px 22px;
  border-radius: var(--radius-full);
  cursor: pointer;
  transition: var(--transition-fast);
  white-space: nowrap;
}

.filter-btn.active {
  background-color: var(--color-gold);
  color: #101114;
  font-weight: 600;
  box-shadow: 0 4px 15px rgba(197, 168, 128, 0.2);
}

.filter-btn:hover:not(.active) {
  color: var(--color-text-dark-primary);
  background-color: rgba(255, 255, 255, 0.03);
}

/* Catalog Showcase Grid */
.catalog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 30px;
}

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

.product-card:hover {
  transform: translateY(-8px);
  border-color: rgba(197, 168, 128, 0.25);
  box-shadow: var(--shadow-premium);
}

.product-img-wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  background-color: #1b1c20;
  overflow: hidden;
}

/* Premium Tableware Images styled inside card */

.product-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-smooth);
}

.product-card:hover .product-image {
  transform: scale(1.06);
}

.product-badge {
  position: absolute;
  top: 15px;
  left: 15px;
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-weight: 700;
  background-color: var(--color-gold);
  color: #101114;
  padding: 4px 10px;
  border-radius: var(--radius-sm);
}

.product-badge.horeca-badge {
  background-color: #101114;
  color: var(--color-gold);
  border: 1px solid var(--color-gold);
}



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

.product-category {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-gold);
  margin-bottom: 8px;
}

.product-name {
  font-size: 1.3rem;
  font-weight: 400;
  color: var(--color-text-dark-primary);
  margin-bottom: 10px;
  line-height: 1.2;
}

.product-details {
  font-size: 0.85rem;
  color: var(--color-text-dark-secondary);
  font-weight: 300;
  margin-top: auto;
}

/* ==========================================================================
   B2B HORECA QUOTE BUILDER SECTION
   ========================================================================== */
.quote-builder-section {
  position: relative;
  background-color: var(--color-dark-bg);
  overflow: hidden;
}

/* Background Glowing Elements */
.quote-builder-section::before {
  content: '';
  position: absolute;
  top: -20%;
  right: -10%;
  width: 50vw;
  height: 50vw;
  background: radial-gradient(circle, rgba(197, 168, 128, 0.035) 0%, rgba(16, 17, 20, 0) 70%);
  z-index: 1;
}

.quote-container {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

@media (max-width: 1024px) {
  .quote-container {
    grid-template-columns: 1fr;
    gap: 50px;
  }
}

.quote-builder-intro .section-desc {
  max-width: 100%;
}

.quote-interactive-box {
  background-color: var(--color-dark-surface);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-premium);
}

@media (max-width: 500px) {
  .quote-interactive-box {
    padding: 25px;
  }
}

.builder-step-title {
  font-size: 1.5rem;
  font-weight: 400;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.step-num {
  font-family: var(--font-serif);
  font-style: italic;
  color: var(--color-gold);
  border: 1px solid rgba(197, 168, 128, 0.3);
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
}

/* Custom cover sizing calculator */
.cover-calculator {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-bottom: 35px;
}

@media (max-width: 480px) {
  .cover-calculator {
    grid-template-columns: repeat(2, 1fr);
  }
}

.cover-option {
  border: 1px solid rgba(255, 255, 255, 0.08);
  background-color: rgba(255, 255, 255, 0.01);
  padding: 15px 10px;
  border-radius: var(--radius-md);
  text-align: center;
  cursor: pointer;
  transition: var(--transition-fast);
}

.cover-option:hover {
  border-color: rgba(197, 168, 128, 0.3);
  background-color: rgba(197, 168, 128, 0.02);
}

.cover-option.active {
  border-color: var(--color-gold);
  background-color: var(--color-gold-glow);
}

.cover-num {
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--color-text-dark-primary);
  margin-bottom: 2px;
}

.cover-option.active .cover-num {
  color: var(--color-gold);
}

.cover-label {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-text-dark-secondary);
}

/* Custom quantity slider */
.custom-covers-input {
  display: flex;
  align-items: center;
  gap: 15px;
  background-color: rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.05);
  padding: 10px 20px;
  border-radius: var(--radius-full);
  margin-bottom: 35px;
}

.custom-covers-input label {
  font-size: 0.8rem;
  color: var(--color-text-dark-secondary);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  white-space: nowrap;
}

.custom-covers-input input {
  background: transparent;
  color: var(--color-gold);
  font-size: 1.2rem;
  font-weight: 600;
  width: 100%;
  text-align: right;
}

/* Tableware item checkboxes */
.tableware-selector-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
  margin-bottom: 35px;
}

@media (max-width: 480px) {
  .tableware-selector-grid {
    grid-template-columns: 1fr;
  }
}

.tableware-option {
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background-color: rgba(255, 255, 255, 0.01);
  padding: 15px 18px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  user-select: none;
  transition: var(--transition-fast);
}

.tableware-option:hover {
  border-color: rgba(197, 168, 128, 0.3);
  background-color: rgba(197, 168, 128, 0.02);
}

.tableware-option.active {
  border-color: var(--color-gold);
  background-color: var(--color-gold-glow);
}

.tableware-checkbox {
  width: 18px;
  height: 18px;
  border-radius: 4px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-fast);
  flex-shrink: 0;
}

.tableware-option.active .tableware-checkbox {
  background-color: var(--color-gold);
  border-color: var(--color-gold);
}

.tableware-checkbox svg {
  color: #101114;
  display: none;
}

.tableware-option.active .tableware-checkbox svg {
  display: block;
}

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

.tableware-name {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--color-text-dark-primary);
}

.tableware-desc {
  font-size: 0.75rem;
  color: var(--color-text-dark-secondary);
}

/* Quote Summary Box */
.quote-summary-panel {
  background: rgba(197, 168, 128, 0.02);
  border: 1px dashed rgba(197, 168, 128, 0.2);
  border-radius: var(--radius-md);
  padding: 25px;
}

.summary-heading {
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 15px;
  color: var(--color-gold);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.summary-items-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 20px;
}

.summary-item-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.9rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.03);
  padding-bottom: 8px;
}

.summary-item-name {
  color: var(--color-text-dark-primary);
}

.summary-item-qty {
  color: var(--color-gold);
  font-weight: 600;
}

.summary-no-items {
  font-size: 0.9rem;
  color: var(--color-text-dark-muted);
  text-align: center;
  padding: 20px 0;
  font-style: italic;
}

/* ==========================================================================
   SHOWROOM LOCATOR & CONTACT HUB
   ========================================================================== */
.contact-section {
  background-color: var(--color-dark-surface);
}

.contact-layout {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 70px;
}

@media (max-width: 1024px) {
  .contact-layout {
    grid-template-columns: 1fr;
    gap: 50px;
  }
}

/* Elegant Form Styling with floating effects */
.contact-form-container {
  background-color: var(--color-dark-card);
  border: 1px solid rgba(255, 255, 255, 0.03);
  padding: 50px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-premium);
}

@media (max-width: 600px) {
  .contact-form-container {
    padding: 30px 20px;
  }
}

.contact-form-title {
  font-family: var(--font-serif);
  font-size: 1.85rem;
  font-weight: 600;
  color: var(--color-text-dark-primary);
  margin-bottom: 8px;
}

.contact-form-desc {
  font-size: 0.95rem;
  color: var(--color-text-dark-secondary);
  margin-bottom: 35px;
  font-weight: 300;
}

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

@media (max-width: 480px) {
  .form-group-row {
    grid-template-columns: 1fr;
    gap: 25px;
  }
}

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

.form-input {
  width: 100%;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  color: var(--color-text-dark-primary);
  font-size: 0.95rem;
  padding: 20px 16px 6px 16px;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.form-input:focus {
  border-color: var(--color-gold);
  background: rgba(255, 255, 255, 0.04);
  box-shadow: 0 0 0 3px rgba(197, 168, 128, 0.15);
}

/* Custom Webkit Autofill Overrides */
.form-input:-webkit-autofill,
.form-input:-webkit-autofill:hover, 
.form-input:-webkit-autofill:focus, 
.form-input:-webkit-autofill:active {
  -webkit-text-fill-color: var(--color-text-dark-primary) !important;
  -webkit-box-shadow: 0 0 0px 1000px transparent inset !important;
  transition: background-color 5000s ease-in-out 0s;
}

.form-label {
  position: absolute;
  left: 16px;
  top: 14px;
  color: var(--color-text-dark-secondary);
  font-size: 0.95rem;
  pointer-events: none;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Floating Label Logic */
.form-input:focus ~ .form-label,
.form-input:not(:placeholder-shown) ~ .form-label {
  top: 6px;
  font-size: 0.72rem;
  color: var(--color-gold);
  font-weight: 600;
  letter-spacing: 0.03em;
}

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

/* Custom styling for maps representation */
.showroom-map-container {
  display: flex;
  flex-direction: column;
  gap: 35px;
}

.showroom-card {
  background-color: var(--color-dark-card);
  border: 1px solid rgba(255, 255, 255, 0.03);
  border-radius: var(--radius-md);
  padding: 30px;
  transition: var(--transition-smooth);
}

.showroom-card:hover {
  border-color: rgba(197, 168, 128, 0.2);
  transform: translateY(-4px);
}

.showroom-card.highlight {
  border-color: var(--color-gold);
  background: linear-gradient(145deg, var(--color-dark-card) 0%, rgba(197, 168, 128, 0.02) 100%);
}

.showroom-card-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 18px;
}

.showroom-name {
  font-size: 1.6rem;
  font-weight: 400;
  color: var(--color-text-dark-primary);
}

.showroom-tag {
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-gold);
  border: 1px solid var(--color-gold);
  padding: 4px 10px;
  border-radius: var(--radius-sm);
  font-weight: 700;
}

.showroom-detail-item {
  display: flex;
  gap: 15px;
  margin-bottom: 12px;
  font-size: 0.95rem;
  color: var(--color-text-dark-secondary);
}

.showroom-detail-item svg {
  color: var(--color-gold);
  margin-top: 4px;
  flex-shrink: 0;
}

/* Beautiful Interactive Map Visual representation */
.map-container-wrapper {
  position: relative;
  width: 100%;
  height: 380px;
  margin-top: 15px;
}

.luxury-map-mock {
  position: relative;
  width: 100%;
  height: 100%;
  background-color: #15161b;
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: inset 0 0 40px rgba(0, 0, 0, 0.8);
}

.google-map-iframe {
  filter: grayscale(1) invert(0.92) hue-rotate(180deg) contrast(1.1) brightness(0.9);
  transition: filter 0.5s ease;
}

/* Glowing Supply Dot Styles for Pan India Map */
.supply-dot {
  position: absolute;
  transform: translate(-50%, -50%);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  transition: z-index 0.2s ease;
}

.supply-dot:hover {
  z-index: 100;
}

.dot-core {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: var(--color-gold);
  box-shadow: 0 0 10px var(--color-gold-bright);
  z-index: 3;
}

.dot-ring {
  position: absolute;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  border: 1.5px solid var(--color-gold);
  opacity: 0;
  animation: pulse-ring 2s cubic-bezier(0.215, 0.610, 0.355, 1) infinite;
  z-index: 2;
}

.dot-label {
  position: absolute;
  top: 14px;
  white-space: nowrap;
  font-family: 'Outfit', sans-serif;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: #ffffff;
  background: rgba(16, 17, 20, 0.85);
  border: 1px solid rgba(197, 168, 128, 0.3);
  padding: 2px 6px;
  border-radius: 3px;
  opacity: 0.85;
  pointer-events: none;
  text-transform: uppercase;
}

/* Specific styling for local regional district dots */
.supply-dot.district-dot .dot-core {
  width: 7px;
  height: 7px;
  box-shadow: 0 0 6px var(--color-gold-bright);
}

.supply-dot.district-dot .dot-ring {
  width: 16px;
  height: 16px;
  border: 1px solid var(--color-gold);
}

.supply-dot.district-dot .dot-label {
  opacity: 0;
  visibility: hidden;
  transform: translateY(5px);
  transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease;
}

.supply-dot.district-dot:hover .dot-label {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

@keyframes pulse-ring {
  0% {
    transform: scale(0.3);
    opacity: 0.8;
  }
  80%, 100% {
    transform: scale(1.5);
    opacity: 0;
  }
}

/* Canvas styled gridlines representing city planning of Lucknow */
.map-canvas-mock {
  position: absolute;
  width: 200%;
  height: 200%;
  top: -50%;
  left: -50%;
  background-image: 
    linear-gradient(rgba(255, 255, 255, 0.015) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.015) 1px, transparent 1px);
  background-size: 30px 30px;
  transform: rotate(-15deg);
}

.map-river-mock {
  position: absolute;
  top: 40%;
  left: -20%;
  width: 140%;
  height: 40px;
  background-color: rgba(197, 168, 128, 0.04);
  transform: rotate(-10deg);
  border-radius: 50px;
  filter: blur(2px);
}

/* Dynamic Pins */
.map-pin {
  position: absolute;
  cursor: pointer;
  transform: translate(-50%, -100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: var(--transition-smooth);
  z-index: 5;
}

.map-pin.pin-horeca {
  top: 35%;
  left: 60%;
}

.map-pin.pin-domestic {
  top: 60%;
  left: 35%;
}

.pin-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background-color: #101114;
  border: 2px solid var(--color-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
  transition: var(--transition-fast);
}

.map-pin:hover .pin-icon,
.map-pin.active .pin-icon {
  background-color: var(--color-gold);
  transform: scale(1.15);
  box-shadow: 0 0 25px var(--color-gold);
}

.pin-icon svg {
  color: var(--color-gold);
  transition: var(--transition-fast);
}

.map-pin:hover .pin-icon svg,
.map-pin.active .pin-icon svg {
  color: #101114;
}

.pin-pulse {
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background-color: var(--color-gold);
  opacity: 0.4;
  animation: pulse 2s infinite ease-out;
  z-index: -1;
}

@keyframes pulse {
  0% { transform: scale(1); opacity: 0.4; }
  100% { transform: scale(2.2); opacity: 0; }
}

.pin-label {
  background: #1c1d22;
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 4px 10px;
  border-radius: var(--radius-sm);
  font-size: 0.65rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--color-text-dark-primary);
  margin-top: 6px;
  white-space: nowrap;
  box-shadow: var(--shadow-premium);
}

.map-pin.active .pin-label {
  border-color: var(--color-gold);
  color: var(--color-gold);
}

/* Map legend / tagline */
.map-note {
  position: absolute;
  bottom: 12px;
  left: 12px;
  font-size: 0.7rem;
  color: var(--color-text-dark-muted);
}

/* ==========================================================================
   B2B INQUIRY DRAWER / PANEL
   ========================================================================== */
.inquiry-drawer {
  position: fixed;
  top: 0;
  right: 0;
  width: 480px;
  max-width: 100%;
  height: 100vh;
  background-color: var(--color-dark-surface);
  border-left: 1px solid rgba(255, 255, 255, 0.05);
  box-shadow: -10px 0 50px rgba(0, 0, 0, 0.6);
  z-index: 2000;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: var(--transition-smooth);
}

.inquiry-drawer.open {
  transform: translateX(0);
}

.drawer-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  z-index: 1999;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition-fast);
}

.drawer-backdrop.active {
  opacity: 1;
  pointer-events: all;
}

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

.drawer-title {
  font-size: 1.6rem;
  font-weight: 400;
  color: var(--color-text-dark-primary);
}

.drawer-close-btn {
  background: transparent;
  color: var(--color-text-dark-secondary);
  cursor: pointer;
  font-size: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: var(--transition-fast);
}

.drawer-close-btn:hover {
  color: var(--color-gold);
  border-color: var(--color-gold);
}

.drawer-content {
  flex-grow: 1;
  overflow-y: auto;
  padding: 30px;
}

.drawer-cart-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.drawer-cart-item {
  display: flex;
  gap: 15px;
  background-color: var(--color-dark-card);
  padding: 15px;
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.03);
}

.drawer-item-img {
  width: 60px;
  height: 60px;
  border-radius: 8px;
  background: #1b1c20;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.03);
}

.drawer-item-img svg {
  width: 36px;
  height: 36px;
}

.drawer-item-details {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.drawer-item-name {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--color-text-dark-primary);
}

.drawer-item-cat {
  font-size: 0.75rem;
  color: var(--color-gold);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-top: 2px;
}

.drawer-item-actions {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: space-between;
}

.drawer-remove-btn {
  background: transparent;
  color: var(--color-text-dark-muted);
  cursor: pointer;
  font-size: 0.95rem;
}

.drawer-remove-btn:hover {
  color: #ff4d4f;
}

.drawer-item-qty-input {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(0, 0, 0, 0.2);
  padding: 4px 8px;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.drawer-item-qty-input span {
  font-size: 0.8rem;
  color: var(--color-text-dark-secondary);
}

.drawer-item-qty-input input {
  background: transparent;
  color: var(--color-gold);
  width: 45px;
  text-align: center;
  font-weight: 600;
  font-size: 0.85rem;
}

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

.drawer-checkout-btn {
  width: 100%;
  display: flex;
  justify-content: center;
}

.drawer-empty-state {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 250px;
  text-align: center;
  color: var(--color-text-dark-muted);
}

.drawer-empty-state svg {
  font-size: 3rem;
  margin-bottom: 15px;
  color: rgba(255, 255, 255, 0.05);
}

/* ==========================================================================
   SUCCESS MODAL NOTIFICATION
   ========================================================================== */
.success-modal {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.9);
  background-color: var(--color-dark-surface);
  border: 1px solid var(--color-gold);
  box-shadow: var(--shadow-premium);
  border-radius: var(--radius-lg);
  padding: 40px;
  text-align: center;
  z-index: 2000;
  width: 400px;
  max-width: 90%;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition-smooth);
}

.success-modal.active {
  transform: translate(-50%, -50%) scale(1);
  opacity: 1;
  pointer-events: all;
}

.success-icon-wrapper {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--color-gold-glow);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px auto;
}

.success-icon-wrapper svg {
  color: var(--color-gold-bright);
  font-size: 1.8rem;
}

.success-title {
  font-size: 1.8rem;
  margin-bottom: 10px;
}

.success-text {
  font-size: 0.95rem;
  color: var(--color-text-dark-secondary);
  margin-bottom: 25px;
}

/* ==========================================================================
   ESTEEMED CLIENTS SECTION
   ========================================================================== */
.clients-section {
  background-color: var(--color-dark-bg);
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}

.clients-section::before {
  content: '';
  position: absolute;
  bottom: -10%;
  left: -10%;
  width: 40vw;
  height: 40vw;
  background: radial-gradient(circle, rgba(197, 168, 128, 0.02) 0%, rgba(16, 17, 20, 0) 70%);
  z-index: 1;
}

.clients-intro-container {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 50px;
  align-items: center;
  margin-bottom: 60px;
  position: relative;
  z-index: 2;
}

@media (max-width: 900px) {
  .clients-intro-container {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}

.stats-block-wrapper {
  display: flex;
  gap: 40px;
}

@media (max-width: 480px) {
  .stats-block-wrapper {
    flex-direction: column;
    gap: 25px;
  }
}

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

.stat-number {
  font-family: var(--font-serif);
  font-size: 3.5rem;
  font-weight: 600;
  color: var(--color-gold-bright);
  line-height: 1;
  margin-bottom: 8px;
  text-shadow: 0 4px 15px rgba(197, 168, 128, 0.15);
}

.stat-label {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-text-dark-secondary);
}

.clients-subheading {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  color: var(--color-gold-bright);
  margin-top: 60px;
  margin-bottom: 35px;
  text-align: left;
  letter-spacing: 0.05em;
  position: relative;
  z-index: 2;
  border-left: 2px solid var(--color-gold);
  padding-left: 15px;
}

@media (max-width: 768px) {
  .clients-subheading {
    font-size: 1.4rem;
    margin-top: 40px;
    margin-bottom: 25px;
  }
}

.clients-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  position: relative;
  z-index: 2;
}

@media (max-width: 1024px) {
  .clients-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .clients-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }
  .client-card {
    height: auto;
    min-height: 100px;
    padding: 12px;
  }
}

.client-card {
  background-color: var(--color-dark-surface);
  border: 1px solid rgba(255, 255, 255, 0.04);
  border-radius: var(--radius-md);
  padding: 15px 20px;
  text-align: center;
  transition: var(--transition-smooth);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0;
  min-height: 140px;
  height: auto;
}

.client-card:hover {
  transform: translateY(-4px);
  border-color: var(--color-gold);
  background: linear-gradient(180deg, var(--color-dark-surface) 0%, rgba(197, 168, 128, 0.02) 100%);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.4), 0 0 15px rgba(197, 168, 128, 0.15);
}

.client-logo-wrapper {
  height: 95px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-gold);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  margin-bottom: 0;
}

.client-logo-wrapper svg,
.client-logo-wrapper img {
  width: 100%;
  height: auto;
  max-height: 70px;
  max-width: 90%;
  opacity: 0.75;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  object-fit: contain;
  will-change: transform, opacity;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}

.client-logo-wrapper img {
  /* In dark mode, turn corporate black/dark PNGs into our exact subtle theme gold color (#c5a880) */
  filter: brightness(0) saturate(100%) invert(72%) sepia(21%) saturate(758%) hue-rotate(345deg) brightness(90%) contrast(89%);
}

/* Moti Mahal Dual-Logo Toggle */
#client-card-motimahal .logo-light {
  display: none !important;
}
#client-card-motimahal .logo-dark {
  display: block !important;
}

[data-theme="light"] #client-card-motimahal .logo-light {
  display: block !important;
}
[data-theme="light"] #client-card-motimahal .logo-dark {
  display: none !important;
}

/* Royal Cafe Dual-Logo Toggle & Filter Override */
#client-card-royalcafe .logo-light {
  display: none !important;
}
#client-card-royalcafe .logo-dark {
  display: block !important;
}

[data-theme="light"] #client-card-royalcafe .logo-light {
  display: block !important;
}
[data-theme="light"] #client-card-royalcafe .logo-dark {
  display: none !important;
}

#client-card-royalcafe .client-logo-wrapper img {
  filter: none !important;
}

/* Institutional Clients Logo Size Balance & Detail-Preserving Dark Mode Glow Filters */
#client-card-army .client-logo-wrapper img,
#client-card-airforce .client-logo-wrapper img,
#client-card-crpf .client-logo-wrapper img,
#client-card-police .client-logo-wrapper img {
  max-height: 98px; /* Increased from 70px to balance square/portrait aspect ratios */
  max-width: 95%;   /* Increased from 90% */
  opacity: 0.85;    /* Higher base opacity for better emblem detail visibility */
}

/* Specific filter for detailed emblems to preserve inner line-art & text in dark mode instead of silhouette */
#client-card-army .client-logo-wrapper img,
#client-card-airforce .client-logo-wrapper img,
#client-card-crpf .client-logo-wrapper img,
#client-card-police .client-logo-wrapper img {
  filter: grayscale(1) brightness(1.2) contrast(1.15) sepia(1) saturate(1.8) hue-rotate(345deg) drop-shadow(0 2px 8px rgba(255, 255, 255, 0.12));
}

/* Hover transitions and scaling */
#client-card-army:hover .client-logo-wrapper img,
#client-card-airforce:hover .client-logo-wrapper img,
#client-card-crpf:hover .client-logo-wrapper img,
#client-card-police:hover .client-logo-wrapper img {
  opacity: 1;
  filter: grayscale(1) brightness(1.3) contrast(1.2) sepia(1) saturate(2.2) hue-rotate(345deg) drop-shadow(0 4px 12px rgba(255, 255, 255, 0.22));
  transform: scale(1.06);
}

.client-card:hover .client-logo-wrapper svg,
.client-card:hover .client-logo-wrapper img {
  opacity: 1;
  transform: scale(1.06);
}

.client-brand-name {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  color: var(--color-text-dark-primary);
  margin-top: 5px;
  margin-bottom: 2px;
}

.client-tagline {
  font-size: 0.8rem;
  color: var(--color-text-dark-secondary);
  font-weight: 300;
}

/* ==========================================================================
   FOOTER SECTION
   ========================================================================== */
footer {
  background-color: #0b0c0e;
  border-top: 1px solid rgba(255, 255, 255, 0.03);
  padding: 80px 8% 40px 8%;
  color: var(--color-text-dark-secondary);
}

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

@media (max-width: 900px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
}

@media (max-width: 480px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }
}

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

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

.footer-desc {
  font-size: 0.9rem;
  font-weight: 300;
  margin-bottom: 25px;
}

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

.social-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-fast);
}

.social-icon:hover {
  border-color: var(--color-gold);
  color: var(--color-gold);
  background: rgba(255, 255, 255, 0.02);
}

.footer-heading {
  font-size: 1.1rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-text-dark-primary);
  margin-bottom: 25px;
  position: relative;
}

.footer-heading::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 30px;
  height: 1px;
  background-color: var(--color-gold);
}

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

.footer-links a {
  font-size: 0.9rem;
  font-weight: 300;
}

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

.footer-contact-item {
  display: flex;
  gap: 12px;
  margin-bottom: 15px;
  font-size: 0.9rem;
  font-weight: 300;
}

.footer-contact-item svg {
  color: var(--color-gold);
  margin-top: 4px;
  flex-shrink: 0;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
  font-weight: 300;
}

@media (max-width: 600px) {
  .footer-bottom {
    flex-direction: column;
    gap: 15px;
    text-align: center;
  }
}

/* Premium Google Maps Redirect Interactivity */
.showroom-map-link {
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.showroom-map-link:hover {
  color: var(--color-gold-bright) !important;
  transform: translateX(4px);
}
.showroom-map-link small {
  transition: color 0.3s ease;
}
.showroom-map-link:hover small {
  color: var(--color-gold-bright) !important;
  text-decoration: underline;
}

.footer-map-link {
  text-decoration: none;
  color: var(--color-text-dark-secondary);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  cursor: pointer;
}
.footer-map-link:hover {
  color: var(--color-gold-bright) !important;
  transform: translateX(4px);
}
.footer-map-link strong {
  transition: color 0.3s ease;
}
.footer-map-link:hover strong {
  color: var(--color-gold-bright) !important;
}

/* Premium B2B Cover Estimator Sub-categories layout */
.tableware-selector-wrapper {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 35px;
}

.estimator-category-group {
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.05);
  background-color: rgba(255, 255, 255, 0.01);
  overflow: hidden;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.estimator-category-group:hover {
  border-color: rgba(197, 168, 128, 0.15);
}

.estimator-category-group.active {
  border-color: rgba(197, 168, 128, 0.3);
  background-color: rgba(197, 168, 128, 0.015);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.tableware-option.parent-option {
  border: none;
  border-radius: 0;
  background-color: transparent;
  padding: 16px 20px;
  margin: 0;
}

.tableware-option.parent-option.active {
  background-color: rgba(197, 168, 128, 0.03);
  border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}

.estimator-subcategories {
  padding: 14px 20px 20px 20px;
  display: none;
  flex-direction: column;
  gap: 10px;
  background-color: rgba(0, 0, 0, 0.2);
  border-top: 1px solid rgba(255, 255, 255, 0.03);
}

.estimator-category-group.active .estimator-subcategories {
  display: flex;
}

.sub-option {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 14px;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255, 255, 255, 0.03);
  background-color: rgba(255, 255, 255, 0.01);
  cursor: pointer;
  user-select: none;
  transition: all 0.2s ease;
}

.sub-option:hover {
  background-color: rgba(255, 255, 255, 0.03);
  border-color: rgba(197, 168, 128, 0.2);
}

.sub-option.active {
  background-color: rgba(197, 168, 128, 0.04);
  border-color: rgba(197, 168, 128, 0.4);
}

.sub-checkbox {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
  flex-shrink: 0;
}

.sub-option.active .sub-checkbox {
  background-color: var(--color-gold);
  border-color: var(--color-gold);
  box-shadow: 0 0 6px var(--color-gold);
}

.sub-name {
  font-size: 0.85rem;
  font-weight: 400;
  color: var(--color-text-dark-secondary);
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.sub-option.active .sub-name {
  color: var(--color-text-dark-primary);
}

.sub-name small {
  color: var(--color-gold);
  font-family: var(--font-sans);
  font-weight: 300;
  font-size: 0.72rem;
  opacity: 0.85;
}

/* Premium Brands Marquee Grid inside Catalog */
.brands-marquee-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.brand-item-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 20px 25px;
  background: rgba(255, 255, 255, 0.01);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-md);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  min-width: 160px;
}

.brand-item-badge:hover {
  background: rgba(197, 168, 128, 0.03);
  border-color: rgba(197, 168, 128, 0.3);
  transform: translateY(-3px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.brand-logo-container {
  height: 65px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
  width: 100%;
}

.brand-item-logo-img {
  max-height: 58px;
  max-width: 135px;
  object-fit: contain;
  opacity: 0.65;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform, opacity;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  transform: translateZ(0);
  /* Default dark mode gold filter */
  filter: brightness(0) saturate(100%) invert(72%) sepia(21%) saturate(758%) hue-rotate(345deg) brightness(90%) contrast(89%);
}

.brand-item-badge:hover .brand-item-logo-img {
  opacity: 1;
  transform: scale(1.04);
}

[data-theme="light"] .brand-item-logo-img {
  filter: none !important;
  opacity: 0.65 !important;
}

[data-theme="light"] .brand-item-badge:hover .brand-item-logo-img {
  opacity: 0.95 !important;
}

.brand-item-logo {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: var(--color-gold);
  text-transform: uppercase;
}

.brand-item-type {
  font-size: 0.65rem;
  font-family: var(--font-sans);
  color: var(--color-text-dark-secondary);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-top: 4px;
}

/* Premium Category Products Modal Styling */
.modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 1200;
  display: none;
  opacity: 0;
  transition: opacity 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.modal-backdrop.active {
  display: block;
  opacity: 1;
}

.category-modal {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -45%) scale(0.95);
  width: 90%;
  max-width: 800px;
  max-height: 85vh;
  background: rgba(20, 21, 25, 0.95);
  border: 1px solid rgba(197, 168, 128, 0.15);
  border-radius: var(--radius-lg);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.8), inset 0 0 30px rgba(0, 0, 0, 0.4);
  z-index: 1201;
  display: none;
  opacity: 0;
  flex-direction: column;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.category-modal.active {
  display: flex;
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

.modal-close-btn {
  position: absolute;
  top: 20px;
  right: 20px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.05);
  color: var(--color-gold);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 10;
}

.modal-close-btn:hover {
  background: rgba(197, 168, 128, 0.15);
  color: var(--color-gold-bright);
  transform: rotate(90deg);
}

.modal-header {
  padding: 30px 40px 20px 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}

.modal-category-tag {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  color: var(--color-gold);
  text-transform: uppercase;
  font-weight: 700;
  display: inline-block;
  margin-bottom: 8px;
}

.modal-title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 2rem;
  font-weight: 600;
  color: var(--color-text-dark-primary);
  margin-bottom: 8px;
}

.modal-desc {
  font-size: 0.9rem;
  color: var(--color-text-dark-secondary);
  font-weight: 300;
  line-height: 1.5;
}

.modal-body {
  padding: 20px 40px 40px 40px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

/* Modal Inner Product Rows */
.modal-product-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 20px;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.01);
  border: 1px solid rgba(255, 255, 255, 0.03);
  transition: all 0.3s ease;
}

.modal-product-card:hover {
  background: rgba(197, 168, 128, 0.02);
  border-color: rgba(197, 168, 128, 0.2);
}

.modal-prod-img-wrapper {
  width: 70px;
  height: 70px;
  border-radius: var(--radius-sm);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.05);
  background-color: #1b1c20;
  flex-shrink: 0;
}

.modal-prod-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.modal-prod-info {
  flex-grow: 1;
}

.modal-prod-brand {
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-gold);
  font-weight: 700;
  margin-bottom: 4px;
  display: block;
}

.modal-prod-name {
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--color-text-dark-primary);
  margin-bottom: 4px;
}

.modal-prod-desc {
  font-size: 0.8rem;
  color: var(--color-text-dark-secondary);
  font-weight: 300;
  line-height: 1.4;
}

.modal-prod-actions {
  display: flex;
  align-items: center;
  gap: 15px;
  flex-shrink: 0;
}

/* Quantity Incrementer inside Modal */
.modal-qty-selector {
  display: flex;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-sm);
  background: rgba(0, 0, 0, 0.2);
  overflow: hidden;
}

.modal-qty-btn {
  background: transparent;
  border: none;
  color: var(--color-text-dark-primary);
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 1rem;
  transition: all 0.2s ease;
}

.modal-qty-btn:hover {
  background: rgba(197, 168, 128, 0.15);
  color: var(--color-gold-bright);
}

.modal-qty-input {
  width: 32px;
  text-align: center;
  background: transparent;
  border: none;
  color: var(--color-gold);
  font-size: 0.85rem;
  font-weight: 600;
}

.btn-modal-add {
  padding: 8px 16px;
  font-size: 0.8rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
}

@media (max-width: 600px) {
  #topbar {
    display: none;
  }
  .header-nav {
    top: 0;
  }
  .modal-product-card {
    flex-direction: column;
    align-items: stretch;
    gap: 15px;
  }
  .modal-prod-actions {
    justify-content: space-between;
  }
  .modal-header, .modal-body {
    padding-left: 20px;
    padding-right: 20px;
  }
}

/* Scroll Reveal Animation Styles */
.scroll-reveal {
  opacity: 0;
  transform: translateY(35px);
  transition: opacity 0.85s cubic-bezier(0.16, 1, 0.3, 1), transform 0.85s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}

.scroll-reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

/* Category-wise Catalog Styles */
.catalog-categories-container {
  display: flex;
  flex-direction: column;
  gap: 60px;
  margin-top: 40px;
}

.catalog-category-group {
  scroll-margin-top: 130px; /* Offset for fixed header navigation */
  display: flex;
  flex-direction: column;
  gap: 25px;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.45s cubic-bezier(0.16, 1, 0.3, 1), transform 0.45s cubic-bezier(0.16, 1, 0.3, 1);
}

.catalog-category-group.fade-in-active {
  opacity: 1;
  transform: translateY(0);
}

.category-info-header {
  border-left: 3px solid var(--color-gold);
  padding-left: 20px;
  margin-bottom: 5px;
}

.category-title-text {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 2rem;
  font-weight: 600;
  color: var(--color-text-dark-primary);
  letter-spacing: 0.03em;
  margin-bottom: 8px;
  text-transform: capitalize;
}

.category-title-text strong {
  color: var(--color-gold);
  font-weight: 700;
}

.category-desc-text {
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  color: var(--color-text-dark-secondary);
  font-weight: 300;
  max-width: 800px;
  line-height: 1.6;
}

[data-theme="light"] .category-title-text {
  color: #1c1d21;
}

[data-theme="light"] .category-desc-text {
  color: #5a5d66;
}

/* ==========================================
     PAGE TRANSITIONS & INTEGRATION
   ========================================== */
html {
  background-color: var(--color-dark-bg);
}

body {
  opacity: 1;
  transition: opacity 0.3s ease-in-out;
}

body.page-loading {
  opacity: 0 !important;
}

/* Mode Switching Visibility */
body.mode-horeca .domestic-only {
  display: none !important;
}
body.mode-domestic .horeca-only {
  display: none !important;
}

/* Mode Selector UI Styling */
.mode-selector-wrapper {
  display: flex;
  background: rgba(255, 255, 255, 0.04);
  border: 1.5px solid rgba(197, 168, 128, 0.25);
  padding: 3px;
  border-radius: 30px;
  align-items: center;
}
[data-theme="light"] .mode-selector-wrapper {
  background: rgba(0, 0, 0, 0.03);
  border-color: rgba(197, 168, 128, 0.35);
}
.mode-selector-btn {
  background: transparent;
  color: var(--color-text-dark-secondary);
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 25px;
  cursor: pointer;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border: none;
  outline: none;
}
.mode-selector-btn.active {
  background: var(--color-gold);
  color: #101114;
  box-shadow: 0 4px 10px rgba(197, 168, 128, 0.2);
}
[data-theme="light"] .mode-selector-btn {
  color: #5a5d66;
}
[data-theme="light"] .mode-selector-btn.active {
  color: #101114;
}

/* ==========================================================================
   WELCOME PORTAL (HOMEPAGE) STYLING
   ========================================================================== */
body.mode-welcome #topbar,
body.mode-welcome #global-header,
body.mode-welcome section:not(#welcome-portal),
body.mode-welcome footer {
  display: none !important;
}

body:not(.mode-welcome) #welcome-portal {
  display: none !important;
}

.welcome-portal-section {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 10000;
  overflow: hidden;
  background-color: #0f1013;
  display: flex;
  flex-direction: column;
}

/* Centered Floating Branding Block */
.welcome-branding {
  position: absolute;
  top: 6%;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  text-align: center;
  pointer-events: none;
  width: 90%;
  max-width: 500px;
}

.welcome-logo-wrapper {
  display: inline-block;
  background: rgba(15, 16, 19, 0.8);
  border: 1px solid rgba(197, 168, 128, 0.3);
  padding: 6px;
  border-radius: var(--radius-sm);
  margin-bottom: 12px;
  backdrop-filter: blur(10px);
}

.welcome-logo {
  height: 54px;
  width: auto;
  object-fit: contain;
  display: block;
}

.welcome-brand-name {
  font-family: var(--font-sans);
  font-size: 1.7rem;
  font-weight: 700;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin: 0;
  line-height: 1.2;
  text-shadow: 0 4px 15px rgba(0, 0, 0, 0.8);
}

.welcome-brand-name .gold-text {
  color: var(--color-gold);
}

.welcome-brand-est {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-text-dark-secondary);
  margin: 4px 0 0 0;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.8);
}

/* Split Column Layout */
.welcome-panels-container {
  display: flex;
  width: 100%;
  height: 100%;
  background-color: #0c0d10;
}

.welcome-panel {
  flex: 1;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 50px 40px;
  cursor: pointer;
  transition: all 0.75s cubic-bezier(0.16, 1, 0.3, 1);
}

.welcome-panel-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  transform: scale(1.01);
  transition: transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 1;
}

.welcome-panel-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to bottom,
    rgba(12, 13, 16, 0.1) 0%,
    rgba(12, 13, 16, 0.45) 35%,
    rgba(12, 13, 16, 0.8) 70%,
    rgba(12, 13, 16, 0.96) 100%
  );
  z-index: 2;
  transition: opacity 0.5s ease;
}

.welcome-panel-content {
  position: relative;
  z-index: 3;
  text-align: center;
  max-width: 480px;
  width: 100%;
  margin-bottom: 5vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.welcome-panel-badge {
  font-family: var(--font-sans);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: 12px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.welcome-panel-title {
  font-family: var(--font-serif);
  font-size: 2.6rem;
  font-weight: 600;
  color: #ffffff;
  margin: 0 0 15px 0;
  line-height: 1.15;
  letter-spacing: 0.01em;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.welcome-panel-desc {
  font-family: var(--font-sans);
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.6;
  font-weight: 300;
  margin: 0 0 25px 0;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}

.welcome-panel-highlights {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 30px;
}

.welcome-highlight-tag {
  font-family: var(--font-sans);
  font-size: 0.65rem;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.5);
  background: rgba(255, 255, 255, 0.02);
  backdrop-filter: blur(5px);
  transition: all 0.3s ease;
  letter-spacing: 0.02em;
}

.btn-portal-enter {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-full);
  padding: 12px 28px;
  color: #ffffff;
  font-family: var(--font-sans);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
  backdrop-filter: blur(10px);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  outline: none;
}

.btn-portal-enter svg {
  transition: transform 0.3s ease;
}

/* Desktop Hover Interactive Animations */
@media (min-width: 769px) {
  .welcome-panels-container:hover .welcome-panel {
    flex: 0.85;
  }
  
  .welcome-panels-container:hover .welcome-panel .welcome-panel-overlay {
    background: linear-gradient(
      to bottom,
      rgba(12, 13, 16, 0.35) 0%,
      rgba(12, 13, 16, 0.65) 35%,
      rgba(12, 13, 16, 0.9) 70%,
      rgba(12, 13, 16, 0.98) 100%
    );
  }

  .welcome-panels-container .welcome-panel:hover {
    flex: 1.15;
  }

  .welcome-panels-container .welcome-panel:hover .welcome-panel-bg {
    transform: scale(1.05);
  }

  .welcome-panels-container .welcome-panel:hover .welcome-panel-overlay {
    background: linear-gradient(
      to bottom,
      rgba(12, 13, 16, 0.05) 0%,
      rgba(12, 13, 16, 0.35) 35%,
      rgba(12, 13, 16, 0.7) 70%,
      rgba(12, 13, 16, 0.92) 100%
    );
  }

  .welcome-panel:hover .welcome-highlight-tag {
    border-color: rgba(197, 168, 128, 0.4);
    color: var(--color-gold);
    background: rgba(197, 168, 128, 0.04);
  }

  .welcome-panel:hover .btn-portal-enter {
    background: var(--color-gold);
    border-color: var(--color-gold);
    color: #101114;
    box-shadow: 0 8px 25px rgba(197, 168, 128, 0.35);
    transform: translateY(-2px);
  }

  .welcome-panel:hover .btn-portal-enter svg {
    transform: translateX(4px);
  }
}

/* Responsive Tablet/Mobile Styles */
@media (max-width: 768px) {
  .welcome-portal-section {
    position: relative;
    height: auto;
    min-height: 100vh;
    overflow-y: auto;
  }

  .welcome-branding {
    position: relative;
    top: 0;
    left: 0;
    transform: none;
    margin: 40px auto 20px auto;
    padding: 0 20px;
    box-sizing: border-box;
  }

  .welcome-logo-wrapper {
    margin-bottom: 8px;
  }

  .welcome-logo {
    height: 46px;
  }

  .welcome-brand-name {
    font-size: 1.4rem;
  }

  .welcome-brand-est {
    font-size: 0.65rem;
  }

  .welcome-panels-container {
    flex-direction: column;
    height: auto;
    min-height: calc(100vh - 180px);
  }

  .welcome-panel {
    flex: 1;
    min-height: 42vh;
    padding: 30px 20px;
  }

  .welcome-panel-content {
    margin-bottom: 0;
  }

  .welcome-panel-title {
    font-size: 1.95rem;
    margin-bottom: 10px;
  }

  .welcome-panel-desc {
    font-size: 0.85rem;
    margin-bottom: 20px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }

  .welcome-panel-highlights {
    margin-bottom: 20px;
    gap: 8px;
  }

  .welcome-highlight-tag {
    font-size: 0.6rem;
    padding: 3px 8px;
  }

  .btn-portal-enter {
    padding: 10px 24px;
    font-size: 0.75rem;
  }
}

@media (max-width: 480px) {
  .welcome-panel-highlights {
    display: none;
  }
}

/* ==========================================================================
   DOMESTIC CATALOG AT A GLANCE STYLING
   ========================================================================== */
.glance-section {
  background-color: var(--color-dark-surface);
}

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

.glance-card {
  position: relative;
  height: 250px;
  border-radius: var(--radius-md);
  overflow: hidden;
  cursor: pointer;
  border: 1px solid rgba(255, 255, 255, 0.04);
  background-color: var(--color-dark-card);
  box-shadow: var(--shadow-premium);
  display: flex;
  align-items: flex-end;
  padding: 24px;
  transition: all 0.45s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-theme="light"] .glance-card {
  border-color: rgba(0, 0, 0, 0.04);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
}

.glance-card-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  z-index: 1;
  transition: transform 0.75s cubic-bezier(0.16, 1, 0.3, 1);
}

.glance-card-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to bottom,
    rgba(15, 16, 19, 0.1) 0%,
    rgba(15, 16, 19, 0.5) 45%,
    rgba(15, 16, 19, 0.92) 100%
  );
  z-index: 2;
  transition: opacity 0.4s ease;
}

[data-theme="light"] .glance-card-overlay {
  background: linear-gradient(
    to bottom,
    rgba(255, 255, 255, 0.05) 0%,
    rgba(255, 255, 255, 0.4) 45%,
    rgba(255, 255, 255, 0.95) 100%
  );
}

.glance-card-content {
  position: relative;
  z-index: 3;
  width: 100%;
  display: flex;
  flex-direction: column;
}

.glance-card-title {
  font-family: var(--font-sans);
  font-size: 1.25rem;
  font-weight: 700;
  color: #ffffff;
  margin: 0 0 6px 0;
  line-height: 1.2;
}

[data-theme="light"] .glance-card-title {
  color: var(--color-text-light-primary);
}

.glance-card-desc {
  font-family: var(--font-sans);
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.4;
  font-weight: 300;
  margin: 0 0 15px 0;
}

[data-theme="light"] .glance-card-desc {
  color: var(--color-text-light-secondary);
}

.glance-card-link {
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--color-gold);
  transition: all 0.3s ease;
}

/* Hover Effects */
.glance-card:hover {
  transform: translateY(-5px);
  border-color: rgba(197, 168, 128, 0.25);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.3);
}

[data-theme="light"] .glance-card:hover {
  border-color: rgba(171, 133, 84, 0.35);
  box-shadow: 0 12px 25px rgba(171, 133, 84, 0.1);
}

.glance-card:hover .glance-card-bg {
  transform: scale(1.05);
}

.glance-card:hover .glance-card-link {
  color: #ffffff;
  text-shadow: 0 0 8px rgba(255, 255, 255, 0.3);
}

[data-theme="light"] .glance-card:hover .glance-card-link {
  color: var(--color-gold-hover);
}

/* Tablet & Mobile Adjustments */
@media (max-width: 768px) {
  .glance-grid {
    gap: 20px;
  }
  .glance-card {
    height: 220px;
    padding: 20px;
  }
  .glance-card-title {
    font-size: 1.15rem;
  }
}

/* ==========================================================================
   DOMESTIC SOLUTIONS CARD STYLING
   ========================================================================== */
.solution-card {
  transition: all 0.45s cubic-bezier(0.16, 1, 0.3, 1);
}

.solution-card:hover {
  transform: translateY(-6px);
  border-color: var(--color-gold) !important;
  box-shadow: var(--shadow-premium);
  background: linear-gradient(145deg, var(--color-dark-card) 0%, rgba(197, 168, 128, 0.02) 100%) !important;
}

[data-theme="light"] .solution-card {
  background: var(--color-light-card) !important;
  border-color: rgba(0, 0, 0, 0.04) !important;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02) !important;
}

[data-theme="light"] .solution-card h3 {
  color: var(--color-text-light-primary) !important;
}

[data-theme="light"] .solution-card p {
  color: var(--color-text-light-secondary) !important;
}

[data-theme="light"] .solution-card:hover {
  border-color: var(--color-gold) !important;
  box-shadow: 0 12px 30px rgba(171, 133, 84, 0.1) !important;
}

/* ==========================================================================
   MOBILE SCROLL & LAYOUT OPTIMIZATION (APPROVED PLAN)
   ========================================================================== */

/* Overlapping Mode Toggle overlapping issue fix */
@media (max-width: 1024px) {
  .header-nav .mode-selector-wrapper {
    display: none !important;
  }
}

/* Hide Showrooms when inside active mode on mobile/tablet */
@media (max-width: 768px) {
  body.mode-horeca #intro-showrooms,
  body.mode-horeca #showrooms,
  body.mode-domestic #intro-showrooms,
  body.mode-domestic #showrooms {
    display: none !important;
  }
}

/* Side-by-Side 2-Column Grid for catalogs, clients, and brand logos on mobile */
@media (max-width: 768px) {
  .catalog-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 12px !important;
  }

  .clients-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 12px !important;
  }

  .brands-marquee-grid {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 12px !important;
  }

  .brand-item-badge {
    min-width: 0 !important;
    padding: 15px 10px !important;
  }

  /* Compact Product Card styles on Mobile */
  .product-info {
    padding: 12px !important;
  }

  .product-name {
    font-size: 1.02rem !important;
    margin-bottom: 6px !important;
    line-height: 1.25 !important;
  }

  .product-category {
    font-size: 0.65rem !important;
    margin-bottom: 4px !important;
  }

  .product-details {
    font-size: 0.76rem !important;
    line-height: 1.3 !important;
  }

  .product-badge {
    top: 8px !important;
    left: 8px !important;
    font-size: 0.55rem !important;
    padding: 2px 6px !important;
    letter-spacing: 0.1em !important;
  }
}

/* Compact padding and spacing on very small mobile phones */
@media (max-width: 480px) {
  .section-padding {
    padding: 50px 4% 40px 4% !important;
  }
  
  .catalog-header {
    margin-bottom: 25px !important;
  }

  .section-title {
    font-size: 1.85rem !important;
    margin-bottom: 15px !important;
  }

  .section-desc {
    font-size: 0.92rem !important;
    margin-bottom: 25px !important;
  }

  .clients-subheading {
    font-size: 1.15rem !important;
    margin-top: 30px !important;
    margin-bottom: 15px !important;
  }
}

/* Dynamic grid collapsing & expand toggles */
.catalog-grid .product-card.mobile-collapsed,
.clients-grid .client-card.mobile-collapsed {
  display: none !important;
}

.view-more-container {
  display: none;
}

@media (max-width: 768px) {
  .view-more-container {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    margin-top: 25px;
    margin-bottom: 10px;
  }

  .view-more-btn {
    background: rgba(255, 255, 255, 0.03);
    color: var(--color-gold);
    border: 1.5px solid rgba(197, 168, 128, 0.35);
    padding: 10px 24px;
    border-radius: var(--radius-full);
    font-size: 0.82rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
  }

  .view-more-btn:hover {
    background: var(--color-gold);
    color: #101114;
    border-color: var(--color-gold);
    box-shadow: 0 4px 15px rgba(197, 168, 128, 0.2);
  }

  [data-theme="light"] .view-more-btn {
    background: rgba(0, 0, 0, 0.02);
    border-color: rgba(197, 168, 128, 0.45);
  }

  [data-theme="light"] .view-more-btn:hover {
    background: var(--color-gold);
    color: #101114;
  }
}

/* Floating "Back to Top" button */
.back-to-top-btn {
  position: fixed;
  bottom: 25px;
  right: 25px;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: rgba(16, 17, 20, 0.8);
  border: 1.5px solid rgba(197, 168, 128, 0.4);
  color: var(--color-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transform: translateY(15px);
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.back-to-top-btn.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top-btn:hover {
  background: var(--color-gold);
  color: #101114;
  border-color: var(--color-gold);
  box-shadow: 0 4px 15px rgba(197, 168, 128, 0.35);
}

[data-theme="light"] .back-to-top-btn {
  background: rgba(253, 253, 252, 0.85);
  border-color: rgba(197, 168, 128, 0.5);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
}

[data-theme="light"] .back-to-top-btn:hover {
  background: var(--color-gold);
  color: #101114;
}

@media (max-width: 480px) {
  .back-to-top-btn {
    bottom: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
  }
}


