/* ==========================================================================
   CONVERGENT - MODERN LUXURY E-COMMERCE & SMART LIVING
   ========================================================================== */

:root {
  /* Color Palette */
  --bg-topbar: #0c0d0e;
  --bg-header: #121316;
  --bg-nav: #191a1e;
  --bg-card-glass: rgba(18, 20, 24, 0.65);
  --bg-card-glass-hover: rgba(30, 33, 40, 0.85);
  --bg-card-active: rgba(255, 107, 0, 0.12);

  --accent-orange: #ff6b00;
  --accent-orange-hover: #ff8524;
  --accent-orange-gradient: linear-gradient(135deg, #ff7a18 0%, #ff5200 100%);
  --accent-orange-glow: rgba(255, 107, 0, 0.4);

  --text-white: #ffffff;
  --text-light: #f3f4f6;
  --text-muted: #9ca3af;
  --text-dim: #6b7280;
  --text-dark: #111827;

  --border-subtle: rgba(255, 255, 255, 0.08);
  --border-glass: rgba(255, 255, 255, 0.12);
  --border-active: rgba(255, 107, 0, 0.6);

  /* Typography */
  --font-editorial: 'Playfair Display', Georgia, serif;
  --font-modern: 'Outfit', 'Plus Jakarta Sans', sans-serif;
  --font-body: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

  /* Transitions & Shadows */
  --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-smooth: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-bounce: 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);

  --shadow-glass: 0 16px 36px rgba(0, 0, 0, 0.45);
  --shadow-glow: 0 0 24px rgba(255, 107, 0, 0.3);
  --shadow-dropdown: 0 20px 40px rgba(0, 0, 0, 0.6);

  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 14px;
  --radius-pill: 9999px;

  --container-max: 1600px;
}

/* CSS Reset & Base */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-family: var(--font-body);
  background-color: var(--bg-topbar);
  color: var(--text-light);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
  background-color: var(--bg-topbar);
}

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

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
  color: inherit;
  transition: all var(--transition-fast);
}

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

/* Container Utility */
.header-container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 40px;
}

/* ==========================================================================
   1. TOP UTILITY BAR
   ========================================================================== */
.site-header {
  position: relative;
  z-index: 100;
  width: 100%;
  background-color: var(--bg-topbar);
}

.top-bar {
  background-color: var(--bg-topbar);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  font-size: 12px;
  letter-spacing: 0.3px;
  color: var(--text-muted);
  font-weight: 400;
  padding: 7px 0;
}

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

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

.top-info-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #cfd4dc;
  transition: color var(--transition-fast), transform var(--transition-fast);
}

.top-info-item:hover {
  color: var(--accent-orange);
  transform: translateY(-1px);
}

.top-icon {
  width: 15px;
  height: 15px;
  color: var(--accent-orange);
  flex-shrink: 0;
}

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

.top-nav-link {
  color: #c0c6d0;
  transition: color var(--transition-fast);
}

.top-nav-link:hover {
  color: var(--text-white);
}

/* ==========================================================================
   2. MAIN HEADER (Logo, Search, User Actions)
   ========================================================================== */
.main-header {
  background-color: var(--bg-header);
  padding: 10px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.main-header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 36px;
}

/* Mobile Hamburger Toggle */
.mobile-toggle-btn {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 26px;
  height: 18px;
  padding: 0;
  background: transparent;
  border: none;
  cursor: pointer;
  z-index: 105;
}

.mobile-toggle-btn span {
  display: block;
  width: 100%;
  height: 2.2px;
  background-color: #ffffff;
  border-radius: 2px;
  transition: transform var(--transition-fast), opacity var(--transition-fast);
}

/* Brand Logo */
.brand-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.logo-wrapper {
  position: relative;
  top: -5px;
  display: flex;
  align-items: center;
  max-width: 320px;
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.4));
  transition: transform var(--transition-fast);
}

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

.logo-img {
  height: 72px; /* 50% larger than 48px */
  width: auto;
  object-fit: contain;
  /* Make the tagline text crisp white on dark background while keeping vibrant orange and spheres */
  filter: brightness(1.2) drop-shadow(0 0 1px rgba(255,255,255,0.45));
}

/* Search Bar Section */
.search-section {
  position: relative;
  flex: 0 1 560px;
}

.search-form {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
}

.search-input {
  width: 100%;
  height: 46px;
  background-color: #ffffff;
  border: 1px solid transparent;
  border-radius: var(--radius-pill);
  padding: 0 52px 0 24px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 400;
  color: var(--text-dark);
  outline: none;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
  transition: all var(--transition-fast);
}

.search-input::placeholder {
  color: #787885;
  font-weight: 400;
}

.search-input:focus {
  border-color: var(--accent-orange);
  box-shadow: 0 0 0 3px rgba(255, 107, 0, 0.25), 0 4px 16px rgba(0, 0, 0, 0.2);
}

.search-submit-btn {
  position: absolute;
  right: 8px;
  top: 50%;
  transform: translateY(-50%);
  width: 34px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: #1a1a1a;
  transition: background-color var(--transition-fast), color var(--transition-fast), transform var(--transition-fast);
}

.search-submit-btn svg {
  width: 19px;
  height: 19px;
}

.search-submit-btn:hover {
  background-color: #f0f0f0;
  color: var(--accent-orange);
  transform: translateY(-50%) scale(1.08);
}

/* Search Dropdown / Autocomplete */
.search-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  right: 0;
  background-color: #181a1f;
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-md);
  padding: 16px;
  box-shadow: var(--shadow-dropdown);
  backdrop-filter: blur(16px);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: opacity var(--transition-fast), transform var(--transition-fast), visibility var(--transition-fast);
  z-index: 120;
}

.search-dropdown.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.search-dropdown-header {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-dim);
  margin-bottom: 10px;
  font-weight: 600;
}

.popular-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 8px;
}

.popular-tag {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--text-light);
  font-size: 12px;
  padding: 6px 12px;
  border-radius: var(--radius-pill);
  transition: all var(--transition-fast);
}

.popular-tag:hover {
  background: var(--accent-orange);
  border-color: var(--accent-orange);
  color: var(--text-white);
  transform: translateY(-1px);
}

.search-result-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 8px 10px;
  border-radius: var(--radius-sm);
  color: var(--text-light);
  font-size: 13px;
  transition: background var(--transition-fast);
}

.search-result-item:hover {
  background: rgba(255, 255, 255, 0.07);
  color: var(--accent-orange);
}

/* User Actions */
.user-actions {
  display: flex;
  align-items: center;
  gap: 32px;
}

.action-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  color: var(--text-light);
  transition: color var(--transition-fast), transform var(--transition-fast);
  position: relative;
}

.action-btn:hover {
  color: var(--accent-orange);
  transform: translateY(-2px);
}

.action-icon-wrap {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
}

.action-icon-wrap svg {
  width: 22px;
  height: 22px;
  transition: stroke var(--transition-fast);
}

.action-label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.2px;
  color: inherit;
}

.badge {
  position: absolute;
  top: -6px;
  right: -8px;
  background-color: var(--accent-orange);
  color: var(--text-white);
  font-size: 10px;
  font-weight: 700;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.35);
  transition: transform var(--transition-bounce);
}

.badge.pulse {
  animation: badgePulse 0.4s ease-out;
}

@keyframes badgePulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.4); }
  100% { transform: scale(1); }
}

/* ==========================================================================
   3. CATEGORY NAVIGATION BAR
   ========================================================================== */
.category-nav {
  background-color: var(--bg-nav);
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
  position: relative;
  z-index: 90;
}

.category-container {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 32px;
  height: 48px;
}

.nav-item {
  position: relative;
  height: 100%;
  display: flex;
  align-items: center;
}

.nav-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  height: 100%;
  font-family: var(--font-modern);
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.8px;
  color: #d1d5db;
  text-transform: uppercase;
  padding: 0 4px;
  position: relative;
  transition: color var(--transition-fast);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--accent-orange);
  transition: width var(--transition-fast);
}

.nav-item:hover > .nav-link {
  color: var(--text-white);
}

.nav-item:hover > .nav-link::after {
  width: 100%;
}

.chevron-down {
  width: 13px;
  height: 13px;
  transition: transform var(--transition-fast);
  color: #9ca3af;
}

.nav-item:hover .chevron-down {
  transform: rotate(180deg);
  color: var(--accent-orange);
}

/* Shop By Category Button */
.shop-by-category .nav-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  color: var(--text-white);
}

.grid-icon {
  width: 15px;
  height: 15px;
  color: var(--text-white);
}

/* Specials Link Highlight */
.specials-link {
  color: var(--accent-orange) !important;
  font-weight: 700 !important;
  margin-left: auto;
  gap: 8px;
}

.specials-badge {
  background: var(--accent-orange-gradient);
  color: #ffffff;
  font-size: 9px;
  font-weight: 800;
  padding: 2px 6px;
  border-radius: 4px;
  letter-spacing: 0.5px;
  box-shadow: 0 2px 6px rgba(255, 107, 0, 0.4);
}

.specials-link:hover {
  text-shadow: 0 0 12px var(--accent-orange-glow);
}

/* Standard Dropdown */
.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 220px;
  background-color: #1a1c22;
  border: 1px solid var(--border-glass);
  border-radius: 0 0 var(--radius-md) var(--radius-md);
  padding: 10px 0;
  box-shadow: var(--shadow-dropdown);
  backdrop-filter: blur(16px);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: opacity var(--transition-fast), transform var(--transition-fast), visibility var(--transition-fast);
  z-index: 100;
}

.nav-item:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-menu a {
  display: block;
  padding: 10px 20px;
  font-size: 13px;
  font-weight: 500;
  color: #cbd5e1;
  text-transform: none;
  letter-spacing: normal;
  transition: all var(--transition-fast);
}

.dropdown-menu a:hover {
  background-color: rgba(255, 255, 255, 0.06);
  color: var(--accent-orange);
  padding-left: 24px;
}

/* Mega Menu */
.mega-menu {
  position: absolute;
  top: 100%;
  left: -20px;
  width: 960px;
  background-color: #17181d;
  border: 1px solid var(--border-glass);
  border-radius: 0 0 var(--radius-lg) var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-dropdown);
  backdrop-filter: blur(20px);
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: opacity var(--transition-smooth), transform var(--transition-smooth), visibility var(--transition-smooth);
  z-index: 150;
}

.shop-by-category:hover .mega-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.mega-menu-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr) 1.2fr;
  gap: 28px;
}

.mega-title {
  font-family: var(--font-modern);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.5px;
  color: var(--text-white);
  margin-bottom: 14px;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.mega-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.mega-col ul li a {
  font-size: 13px;
  color: var(--text-muted);
  transition: color var(--transition-fast), transform var(--transition-fast);
  display: inline-block;
}

.mega-col ul li a:hover {
  color: var(--accent-orange);
  transform: translateX(4px);
}

.mega-card {
  background: linear-gradient(145deg, rgba(255, 107, 0, 0.15) 0%, rgba(20, 22, 28, 0.9) 100%);
  border: 1px solid rgba(255, 107, 0, 0.3);
  border-radius: var(--radius-md);
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}

.badge-tag {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 1px;
  color: var(--accent-orange);
  background: rgba(255, 107, 0, 0.15);
  padding: 3px 8px;
  border-radius: 4px;
  align-self: flex-start;
  margin-bottom: 12px;
}

.mega-card h4 {
  font-size: 16px;
  font-weight: 700;
  color: var(--text-white);
  margin-bottom: 6px;
}

.mega-card p {
  font-size: 12px;
  color: var(--text-muted);
  line-height: 1.5;
  margin-bottom: 16px;
}

.mega-cta {
  color: var(--accent-orange);
  font-size: 12.5px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: gap var(--transition-fast);
}

.mega-cta:hover {
  gap: 8px;
}

/* ==========================================================================
   4. HERO BANNER SECTION WITH SLIDER
   ========================================================================== */
.hero-section {
  position: relative;
  width: 100%;
  height: calc(100vh - 150px);
  min-height: 660px;
  max-height: 860px;
  overflow: hidden;
  background-color: #0c0d10;
}

/* Slider Track */
.hero-slider-track {
  position: relative;
  width: 100%;
  height: 100%;
}

/* Individual Slides */
.hero-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  opacity: 0;
  visibility: hidden;
  transform: scale(1.04);
  transition: opacity 0.85s cubic-bezier(0.4, 0, 0.2, 1), transform 8s cubic-bezier(0.25, 1, 0.5, 1), visibility 0.85s;
  z-index: 1;
}

.hero-slide.active {
  opacity: 1;
  visibility: visible;
  transform: scale(1);
  z-index: 2;
}

/* Cinematic Gradient Overlay */
.hero-gradient-overlay {
  position: absolute;
  inset: 0;
  background: 
    linear-gradient(90deg, rgba(10, 11, 14, 0.82) 0%, rgba(10, 11, 14, 0.45) 45%, rgba(10, 11, 14, 0.1) 70%, rgba(10, 11, 14, 0.65) 100%),
    linear-gradient(180deg, rgba(10, 11, 14, 0.35) 0%, transparent 30%, rgba(10, 11, 14, 0.55) 100%);
  pointer-events: none;
}

/* Hero Content Wrapper */
.hero-content-wrapper {
  position: relative;
  z-index: 10;
  width: 100%;
  max-width: var(--container-max);
  height: 100%;
  margin: 0 auto;
  padding: 0 60px;
  display: flex;
  align-items: center;
}

.hero-text-content {
  max-width: 560px;
}

.slide-badge {
  display: inline-block;
  font-family: var(--font-modern);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  color: var(--accent-orange);
  text-transform: uppercase;
  margin-bottom: 18px;
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.5s ease 0.15s, transform 0.5s ease 0.15s;
}

.hero-heading {
  font-family: var(--font-editorial);
  font-size: clamp(38px, 4.3vw, 54px);
  font-weight: 500;
  line-height: 1.18;
  color: var(--text-white);
  letter-spacing: -0.3px;
  margin-bottom: 24px;
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.6s ease 0.25s, transform 0.6s ease 0.25s;
}

.hero-subtext {
  font-family: var(--font-body);
  font-size: 15.5px;
  font-weight: 400;
  line-height: 1.68;
  color: #d1d5db;
  margin-bottom: 38px;
  max-width: 480px;
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.6s ease 0.35s, transform 0.6s ease 0.35s;
}

.hero-cta-wrap {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.6s ease 0.45s, transform 0.6s ease 0.45s;
}

/* When Slide is Active, Animate In Staggered Text */
.hero-slide.active .slide-badge,
.hero-slide.active .hero-heading,
.hero-slide.active .hero-subtext,
.hero-slide.active .hero-cta-wrap {
  opacity: 1;
  transform: translateY(0);
}

/* Explore Button */
.hero-btn {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  border: 1px solid rgba(255, 255, 255, 0.75);
  border-radius: 3px;
  padding: 13px 26px;
  font-family: var(--font-modern);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.8px;
  color: var(--text-white);
  text-transform: uppercase;
  background: rgba(0, 0, 0, 0.25);
  backdrop-filter: blur(6px);
  transition: all var(--transition-smooth);
}

.btn-arrow {
  width: 15px;
  height: 15px;
  transition: transform var(--transition-fast);
}

.hero-btn:hover {
  background: var(--accent-orange-gradient);
  border-color: var(--accent-orange);
  box-shadow: 0 0 24px var(--accent-orange-glow);
  transform: translateY(-2px);
}

.hero-btn:hover .btn-arrow {
  transform: translateX(5px);
}

/* Navigation Chevrons */
.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 25;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.55);
  background: rgba(15, 16, 20, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  backdrop-filter: blur(8px);
  transition: all var(--transition-fast);
}

.slider-arrow svg {
  width: 22px;
  height: 22px;
}

.prev-arrow {
  left: 24px;
}

.next-arrow {
  right: 24px;
}

.slider-arrow:hover {
  color: var(--text-white);
  background: rgba(255, 107, 0, 0.85);
  border-color: var(--accent-orange);
  box-shadow: 0 0 20px var(--accent-orange-glow);
  transform: translateY(-50%) scale(1.08);
}

/* ==========================================================================
   5. RIGHT SIDE FEATURE NAVIGATION PANEL
   ========================================================================== */
.hero-features-panel {
  position: absolute;
  right: 60px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 25;
  width: 320px;
  background: transparent;
  border: none;
  border-radius: 0;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  box-shadow: none;
  overflow: visible;
  transition: transform var(--transition-smooth);
}

.hero-features-panel:hover {
  border-color: transparent;
}

/* Feature Item Row */
.feature-card {
  position: relative;
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 22px 4px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.22);
  cursor: pointer;
  outline: none;
  background: transparent;
  transition: transform var(--transition-fast), border-color var(--transition-fast);
}

.feature-card:last-child {
  border-bottom: none;
}

.feature-card:hover {
  background: transparent;
  transform: translateX(4px);
  border-bottom-color: rgba(255, 255, 255, 0.4);
}

.feature-icon-box {
  flex-shrink: 0;
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.85);
  transition: color var(--transition-fast), transform var(--transition-bounce), filter var(--transition-fast);
}

.feature-svg-icon {
  width: 38px;
  height: 38px;
  stroke-width: 1.8;
}

.feature-text {
  display: flex;
  flex-direction: column;
  line-height: 1.32;
}

.feature-text span {
  font-size: 14px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.82);
  transition: color var(--transition-fast);
}

.feature-text strong {
  font-size: 15px;
  font-weight: 600;
  color: #ffffff;
  letter-spacing: 0.1px;
  transition: color var(--transition-fast);
}

.active-indicator-bar {
  display: none;
}

/* Active State for Feature Card */
.feature-card.active {
  background: transparent;
}

.feature-card.active .feature-icon-box {
  color: #ffffff;
  transform: scale(1.05);
  filter: drop-shadow(0 0 8px rgba(255, 255, 255, 0.6));
}

.feature-card.active .feature-text strong {
  color: #ffffff;
  text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

.feature-card.active .feature-text span {
  color: #ffffff;
}

.feature-card:hover .feature-icon-box {
  color: #ffffff;
  transform: scale(1.05);
}

.feature-card:hover .feature-text strong,
.feature-card:hover .feature-text span {
  color: #ffffff;
}

/* ==========================================================================
   6. BOTTOM SLIDER PAGINATION INDICATORS
   ========================================================================== */
.hero-pagination {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 25;
  display: flex;
  align-items: center;
  gap: 12px;
}

.pagination-dash {
  position: relative;
  width: 34px;
  height: 3.5px;
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.35);
  overflow: hidden;
  transition: width var(--transition-smooth), background-color var(--transition-fast);
}

.pagination-dash:hover {
  background: rgba(255, 255, 255, 0.7);
}

.pagination-dash.active {
  width: 44px;
  background: var(--accent-orange);
}

.dash-fill {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 0%;
  background: #ffffff;
}

/* ==========================================================================
   7. CART DRAWER & NOTIFICATIONS
   ========================================================================== */
.cart-drawer-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.65);
  backdrop-filter: blur(6px);
  z-index: 200;
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--transition-smooth), visibility var(--transition-smooth);
}

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

.cart-drawer {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  max-width: 420px;
  background: #14161a;
  border-left: 1px solid var(--border-glass);
  display: flex;
  flex-direction: column;
  box-shadow: -10px 0 40px rgba(0, 0, 0, 0.6);
  transform: translateX(100%);
  transition: transform var(--transition-smooth);
}

.cart-drawer-overlay.active .cart-drawer {
  transform: translateX(0);
}

.cart-header {
  padding: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--border-subtle);
}

.cart-header h3 {
  font-family: var(--font-modern);
  font-size: 18px;
  font-weight: 700;
  color: var(--text-white);
}

.close-drawer-btn {
  font-size: 28px;
  line-height: 1;
  color: var(--text-muted);
}

.close-drawer-btn:hover {
  color: var(--accent-orange);
}

.cart-body {
  flex: 1;
  padding: 32px 24px;
  overflow-y: auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.empty-cart-state {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.empty-cart-icon {
  width: 56px;
  height: 56px;
  color: var(--text-dim);
  margin-bottom: 16px;
}

.empty-cart-state h4 {
  font-size: 18px;
  font-weight: 600;
  color: var(--text-white);
  margin-bottom: 8px;
}

.empty-cart-state p {
  font-size: 13.5px;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 24px;
}

.primary-modal-btn {
  background: var(--accent-orange-gradient);
  color: var(--text-white);
  font-family: var(--font-modern);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 12px 28px;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-glow);
  transition: transform var(--transition-fast), box-shadow var(--transition-fast);
}

.primary-modal-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 24px rgba(255, 107, 0, 0.6);
}

.cart-footer {
  padding: 24px;
  border-top: 1px solid var(--border-subtle);
  background: #101114;
}

.cart-total-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 15px;
  color: var(--text-muted);
  margin-bottom: 18px;
}

.total-amount {
  font-size: 18px;
  font-weight: 700;
  color: var(--text-white);
}

.checkout-btn {
  width: 100%;
  padding: 14px;
  background: #23262d;
  color: #6b7280;
  border-radius: var(--radius-sm);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  cursor: not-allowed;
}

/* Toast Notifications */
.toast-container {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 300;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.toast-item {
  background: rgba(20, 22, 28, 0.95);
  border: 1px solid var(--border-glass);
  border-left: 4px solid var(--accent-orange);
  color: var(--text-white);
  padding: 14px 20px;
  border-radius: var(--radius-sm);
  font-size: 13.5px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: var(--shadow-dropdown);
  backdrop-filter: blur(12px);
  animation: slideInRight 0.35s ease-out forwards;
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(100%);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Desktop Secondary Button default hidden */
.hero-btn-secondary {
  display: none;
}

.mobile-search-btn {
  display: none;
}

/* ==========================================================================
   8. RESPONSIVE BREAKPOINTS
   ========================================================================== */

/* Large Screens (1440px and below) */
@media (max-width: 1440px) {
  .hero-features-panel {
    right: 32px;
    width: 290px;
  }
}

/* Tablet Landscape & Medium Desktops (1200px and below) */
@media (max-width: 1200px) {
  .header-container {
    padding: 0 24px;
  }
  .category-container {
    gap: 20px;
  }
  .nav-link {
    font-size: 11.5px;
  }
  .hero-features-panel {
    right: 24px;
    width: 270px;
  }
  .hero-heading {
    font-size: 42px;
  }
  .mega-menu {
    width: 800px;
    left: 0;
  }
}

/* Tablet Portrait & Mobile Screens (768px and below) */
@media (max-width: 768px) {
  .top-bar {
    display: none;
  }

  /* Increased Nav Bar Size on Mobile & Centered 2x Larger Logo */
  .main-header {
    padding: 16px 0;
    background-color: #0c0d10;
  }

  .main-header-container {
    padding: 0 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    min-height: 84px;
  }

  .mobile-toggle-btn {
    display: flex !important;
    flex-direction: column !important;
    justify-content: space-between !important;
    width: 26px !important;
    height: 20px !important;
    padding: 0 !important;
    flex-shrink: 0 !important;
    background: transparent !important;
    border: none !important;
    cursor: pointer !important;
    z-index: 105 !important;
  }

  .mobile-toggle-btn span {
    display: block !important;
    width: 100% !important;
    height: 2.2px !important;
    background-color: #ffffff !important;
    border-radius: 2px !important;
  }

  .brand-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 1;
    margin: 0 4px;
  }

  .logo-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 260px;
    top: 0 !important;
  }

  .logo-img {
    height: 76px !important; /* 2x larger than 38px */
    max-width: 100% !important;
    width: auto !important;
    object-fit: contain;
  }

  .search-section {
    display: none;
  }

  .user-actions {
    gap: 16px;
  }

  .mobile-search-btn {
    display: flex;
  }

  .action-label {
    display: none;
  }

  .action-icon-wrap {
    width: 26px;
    height: 26px;
  }

  .action-icon-wrap svg {
    width: 22px;
    height: 22px;
  }

  .badge {
    top: -5px;
    right: -7px;
    width: 17px;
    height: 17px;
    font-size: 10px;
  }

  .category-nav {
    display: none;
  }

  /* ==========================================================================
     MOBILE HERO SECTION (Shorter height, text & buttons lower)
     ========================================================================== */
  .hero-section {
    position: relative;
    width: 100%;
    height: 640px;
    min-height: 600px;
    max-height: 680px;
    overflow: hidden;
    background-color: #0c0d10;
  }

  .hero-slider-track {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
  }

  .hero-slide {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center right;
    background-repeat: no-repeat;
    z-index: 1;
  }

  .hero-slide.active {
    z-index: 2;
  }

  /* Subtle gradient overlay so the room & sofa background image is bright and visible */
  .hero-gradient-overlay {
    position: absolute;
    inset: 0;
    background: 
      linear-gradient(180deg, rgba(8, 9, 11, 0.65) 0%, rgba(8, 9, 11, 0.2) 45%, rgba(8, 9, 11, 0.72) 100%),
      linear-gradient(90deg, rgba(8, 9, 11, 0.6) 0%, rgba(8, 9, 11, 0.12) 60%, transparent 100%);
    pointer-events: none;
    z-index: 3;
  }

  .hero-content-wrapper {
    position: relative;
    z-index: 10;
    width: 100%;
    height: 100%;
    padding: 104px 20px 105px 20px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
  }

  .hero-text-content {
    max-width: 100%;
    width: 100%;
    padding-left: 0;
  }

  .slide-badge {
    font-family: var(--font-modern), -apple-system, sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.5px;
    margin-bottom: 12px;
    color: var(--accent-orange);
    text-transform: uppercase;
    opacity: 1;
    transform: none;
  }

  .hero-heading {
    font-family: var(--font-editorial), 'Playfair Display', Georgia, serif;
    font-size: 32px;
    line-height: 1.15;
    margin-bottom: 12px;
    font-weight: 500;
    color: #ffffff;
    letter-spacing: -0.2px;
    opacity: 1;
    transform: none;
  }

  .hero-subtext {
    font-family: var(--font-body), 'Plus Jakarta Sans', sans-serif;
    font-size: 13px;
    font-weight: 400;
    line-height: 1.48;
    color: #d1d5db;
    margin-bottom: 20px;
    max-width: 320px;
    opacity: 1;
    transform: none;
  }

  /* Dual Action Buttons on Mobile */
  .hero-cta-wrap {
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 100%;
    max-width: 335px;
    margin-bottom: 16px;
    opacity: 1;
    transform: none;
  }

  .hero-btn.hero-btn-primary {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    height: 44px;
    padding: 0 16px;
    background: linear-gradient(135deg, #ff6b00 0%, #ff5200 100%);
    border: none;
    border-radius: 4px;
    font-family: var(--font-modern), sans-serif;
    font-size: 12.5px;
    font-weight: 700;
    letter-spacing: 1.2px;
    color: #ffffff;
    text-transform: uppercase;
    box-shadow: 0 4px 18px rgba(255, 107, 0, 0.4);
  }

  .hero-btn.hero-btn-primary .btn-arrow {
    width: 16px;
    height: 16px;
  }

  .hero-btn.hero-btn-secondary {
    display: flex !important;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 44px;
    padding: 0 16px;
    background: rgba(10, 12, 16, 0.45);
    border: 1.5px solid rgba(255, 255, 255, 0.85);
    border-radius: 4px;
    font-family: var(--font-modern), sans-serif;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.2px;
    color: #ffffff;
    text-transform: uppercase;
    backdrop-filter: blur(6px);
  }

  .slider-arrow {
    display: none;
  }

  /* Centered Pagination Indicators between Sofa & Bottom Bar */
  .hero-pagination {
    position: absolute;
    bottom: 90px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 25;
    display: flex;
    align-items: center;
    gap: 8px;
  }

  .pagination-dash {
    width: 32px;
    height: 3px;
    border-radius: 2px;
    background: rgba(255, 255, 255, 0.45);
    border: none;
    padding: 0;
  }

  .pagination-dash.active {
    width: 32px;
    background: var(--accent-orange);
  }

  .pagination-dash .dash-fill {
    display: none;
  }

  /* Mobile Bottom Dock Features Panel */
  .hero-features-panel {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    top: auto;
    transform: none;
    width: 100%;
    max-width: 100%;
    margin: 0;
    background: rgba(14, 16, 20, 0.95);
    border: none;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 20px 20px 0 0;
    padding: 10px 4px 12px 4px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.6);
    z-index: 30;
  }

  .feature-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 5px;
    padding: 4px 2px;
    border-bottom: none;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
    background: transparent;
    cursor: pointer;
  }

  .feature-card:last-child {
    border-right: none;
  }

  .feature-icon-box {
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 2px;
  }

  .feature-svg-icon {
    width: 25px;
    height: 25px;
    stroke-width: 1.8;
  }

  .feature-text {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    line-height: 1.22;
  }

  .feature-text span {
    font-size: 10px;
    color: #e5e7eb;
    font-weight: 500;
  }

  .feature-text strong {
    font-size: 10.5px;
    font-weight: 600;
    color: #ffffff;
  }

  .feature-card.active .feature-icon-box {
    color: var(--accent-orange);
    filter: drop-shadow(0 0 8px var(--accent-orange-glow));
    transform: scale(1.06);
  }

  .feature-card.active .feature-text strong,
  .feature-card.active .feature-text span {
    color: #ffffff;
  }

  .feature-card .active-indicator-bar {
    display: none;
  }
}


/* ==========================================================================
   9. SHOP BY CATEGORY SECTION
   ========================================================================== */
.shop-categories-section {
  position: relative;
  background-color: #ffffff;
  padding: 80px 0 100px 0;
  width: 100%;
  overflow: hidden;
}

.category-section-container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 40px;
}

/* Section Header */
.section-header {
  text-align: center;
  margin-bottom: 52px;
}

.section-title {
  font-family: var(--font-editorial);
  font-size: clamp(34px, 3.6vw, 46px);
  font-weight: 500;
  color: #17181c;
  letter-spacing: -0.4px;
  line-height: 1.2;
}

.section-title-divider {
  width: 38px;
  height: 2.5px;
  background-color: var(--accent-orange);
  margin: 14px auto 0 auto;
  border-radius: var(--radius-pill);
}

/* 6-Card Category Grid */
.categories-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 22px;
  width: 100%;
}

/* Category Card */
.category-card {
  position: relative;
  display: flex;
  flex-direction: column;
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.07);
  border-radius: 14px;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.04);
  text-decoration: none;
  overflow: visible;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s ease, border-color 0.4s ease;
  opacity: 0;
  transform: translateY(28px);
}

.category-card.animate-in {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1), transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s ease, border-color 0.4s ease;
}

.category-card:hover {
  transform: translateY(-8px) !important;
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.1);
  border-color: rgba(255, 107, 0, 0.35);
}

/* Image Wrap */
.cat-image-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 4.9;
  border-radius: 13px 13px 0 0;
  overflow: visible;
}

.cat-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 13px 13px 0 0;
  transition: transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.category-card:hover .cat-img {
  transform: scale(1.06);
}

/* Floating Circular Badge Icon */
.cat-icon-badge {
  position: absolute;
  bottom: -23px;
  left: 50%;
  transform: translateX(-50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background-color: #16181d;
  color: #ffffff;
  border: 3.5px solid #ffffff;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  transition: background-color 0.3s ease, transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.3s ease;
}

.cat-icon-badge svg {
  width: 22px;
  height: 22px;
  stroke-width: 1.8;
  transition: transform 0.3s ease;
}

.category-card:hover .cat-icon-badge {
  background-color: var(--accent-orange);
  transform: translateX(-50%) scale(1.12);
  box-shadow: 0 6px 20px rgba(255, 107, 0, 0.45);
}

.category-card:hover .cat-icon-badge svg {
  transform: scale(1.08);
}

/* Card Content */
.cat-content {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  flex: 1;
  padding: 34px 14px 22px 14px;
  background-color: #ffffff;
  border-radius: 0 0 13px 13px;
  text-align: center;
  z-index: 5;
}

.cat-title {
  font-family: var(--font-body);
  font-size: 14.5px;
  font-weight: 700;
  color: #1a1c20;
  line-height: 1.35;
  margin-bottom: 14px;
  min-height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color 0.25s ease;
}

.category-card:hover .cat-title {
  color: #000000;
}

.cat-cta {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: var(--accent-orange);
  font-family: var(--font-modern);
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: gap 0.25s ease;
}

.cat-arrow {
  width: 13px;
  height: 13px;
  transition: transform 0.25s ease;
}

.category-card:hover .cat-cta .cat-arrow {
  transform: translateX(4px);
}

/* ==========================================================================
   10. RESPONSIVE MEDIA QUERIES FOR CATEGORIES
   ========================================================================== */

/* Medium Desktops & Large Tablets (1350px and below) */
@media (max-width: 1350px) {
  .categories-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }
  .cat-image-wrap {
    aspect-ratio: 4 / 3.8;
  }
}

/* Tablets (860px and below) */
@media (max-width: 860px) {
  .shop-categories-section {
    padding: 60px 0 80px 0;
  }
  .categories-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}

/* Mobile Screens (560px and below) */
@media (max-width: 560px) {
  .category-section-container {
    padding: 0 20px;
  }
  .categories-grid {
    grid-template-columns: 1fr;
    max-width: 360px;
    margin: 0 auto;
    gap: 24px;
  }
  .cat-image-wrap {
    aspect-ratio: 4 / 3.4;
  }
}

/* ==========================================================================
   11. SHOP PREMIUM BRANDS SECTION (INFINITE MARQUEE)
   ========================================================================== */
.premium-brands-section {
  position: relative;
  background-color: #0c0d10;
  padding: 75px 0 90px 0;
  width: 100%;
  overflow: hidden;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.brands-section-container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 40px;
}

.brands-header {
  text-align: center;
  margin-bottom: 50px;
}

.brands-title {
  font-family: var(--font-editorial);
  font-size: clamp(32px, 3.4vw, 42px);
  font-weight: 500;
  color: #ffffff;
  letter-spacing: -0.3px;
  line-height: 1.2;
}

.brands-title-divider {
  width: 38px;
  height: 2.5px;
  background-color: var(--accent-orange);
  margin: 14px auto 0 auto;
  border-radius: var(--radius-pill);
}

/* Infinite Marquee Wrapper with Edge Soft Fading */
.brands-carousel-wrapper {
  position: relative;
  width: 100%;
  overflow: hidden;
  mask-image: linear-gradient(to right, transparent, black 8%, black 92%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, black 8%, black 92%, transparent);
}

.brands-track-container {
  width: 100%;
  overflow: hidden;
  display: flex;
  padding: 12px 0;
}

.brands-track {
  display: flex;
  align-items: center;
  gap: 72px;
  width: max-content;
  animation: marqueeScroll 26s linear infinite;
  will-change: transform;
}

/* Pause on Hover so users can click or inspect any brand */
.brands-carousel-wrapper:hover .brands-track {
  animation-play-state: paused;
}

@keyframes marqueeScroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

.brand-item {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 54px;
  padding: 0 16px;
  color: rgba(255, 255, 255, 0.85);
  opacity: 0.82;
  transition: opacity 0.3s ease, transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), filter 0.3s ease;
  text-decoration: none;
  cursor: pointer;
}

.brand-logo-svg {
  height: 38px;
  width: auto;
  max-width: 170px;
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.brand-item:hover {
  opacity: 1;
  color: #ffffff;
  transform: scale(1.12);
  filter: drop-shadow(0 0 16px rgba(255, 255, 255, 0.6));
}

@media (max-width: 1024px) {
  .brands-track {
    gap: 48px;
    animation-duration: 20s;
  }
  .brand-logo-svg {
    height: 32px;
  }
}

@media (max-width: 640px) {
  .premium-brands-section {
    padding: 55px 0 70px 0;
  }
  .brands-track {
    gap: 36px;
    animation-duration: 16s;
  }
  .brand-logo-svg {
    height: 28px;
  }
}

/* ==========================================================================
   12. SMART AUTOMATION SECTION (Comfort. Control. Convenience.)
   ========================================================================== */
.smart-automation-section {
  position: relative;
  background-color: #ffffff;
  padding: 100px 0 115px 0;
  width: 100%;
  overflow: hidden;
}

.smart-auto-container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 48px;
  display: grid;
  grid-template-columns: 1.08fr 1fr;
  gap: 64px;
  align-items: center;
}

/* Left Column: Media */
.smart-auto-media {
  position: relative;
  width: 100%;
}

.smart-auto-image-wrap {
  position: relative;
  width: 100%;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 24px 50px rgba(0, 0, 0, 0.08), 0 6px 16px rgba(0, 0, 0, 0.04);
  background-color: #f3f4f6;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.smart-auto-image-wrap:hover {
  transform: translateY(-4px);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.12), 0 8px 20px rgba(0, 0, 0, 0.06);
}

.smart-auto-img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.smart-auto-image-wrap:hover .smart-auto-img {
  transform: scale(1.03);
}

/* Right Column: Content */
.smart-auto-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.smart-auto-badge {
  font-family: var(--font-modern), sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: var(--accent-orange);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.smart-auto-heading {
  font-family: var(--font-editorial), 'Playfair Display', Georgia, serif;
  font-size: clamp(38px, 3.8vw, 54px);
  font-weight: 500;
  line-height: 1.15;
  color: #111827;
  letter-spacing: -0.5px;
  margin-bottom: 22px;
}

.smart-auto-description {
  font-family: var(--font-body), 'Plus Jakarta Sans', sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.65;
  color: #4b5563;
  margin-bottom: 40px;
  max-width: 520px;
}

/* 5-Column Feature Icons Grid */
.smart-features-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  width: 100%;
  margin-bottom: 42px;
}

.smart-feature-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 10px;
  cursor: pointer;
  padding: 8px 4px;
  border-radius: 12px;
  transition: transform 0.25s cubic-bezier(0.34, 1.56, 0.64, 1), background-color 0.25s ease;
}

.smart-feature-item:hover {
  transform: translateY(-4px);
  background-color: rgba(255, 107, 0, 0.04);
}

.smart-feature-icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #111827;
  transition: color 0.25s ease, transform 0.25s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.smart-feature-icon svg {
  width: 28px;
  height: 28px;
  transition: stroke 0.25s ease;
}

.smart-feature-item:hover .smart-feature-icon {
  color: var(--accent-orange);
  transform: scale(1.12);
}

.smart-feature-label {
  font-family: var(--font-body), 'Plus Jakarta Sans', sans-serif;
  font-size: 12px;
  font-weight: 600;
  color: #374151;
  line-height: 1.25;
  text-align: center;
  transition: color 0.25s ease;
}

.smart-feature-item:hover .smart-feature-label {
  color: #111827;
}

/* CTA Button */
.smart-auto-cta-wrap {
  width: 100%;
}

.smart-auto-btn {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  background-color: #111827;
  color: #ffffff;
  padding: 16px 32px;
  border-radius: 6px;
  font-family: var(--font-modern), sans-serif;
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.12);
}

.smart-auto-btn .btn-arrow {
  width: 16px;
  height: 16px;
  transition: transform 0.25s ease;
}

.smart-auto-btn:hover {
  background: linear-gradient(135deg, #ff6b00 0%, #ff5200 100%);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(255, 107, 0, 0.38);
}

.smart-auto-btn:hover .btn-arrow {
  transform: translateX(4px);
}

/* Responsive Rules for Smart Automation */
@media (max-width: 1100px) {
  .smart-auto-container {
    grid-template-columns: 1fr;
    gap: 48px;
    padding: 0 32px;
  }
  .smart-auto-content {
    align-items: flex-start;
  }
}

@media (max-width: 768px) {
  .smart-automation-section {
    padding: 70px 0 85px 0;
  }
  .smart-auto-container {
    padding: 0 20px;
    gap: 36px;
  }
  .smart-auto-image-wrap {
    border-radius: 16px;
  }
  .smart-auto-heading {
    font-size: 32px;
  }
  .smart-auto-description {
    font-size: 14.5px;
    margin-bottom: 28px;
  }
  .smart-features-grid {
    grid-template-columns: repeat(5, 1fr);
    gap: 8px;
    margin-bottom: 32px;
  }
  .smart-feature-icon {
    width: 36px;
    height: 36px;
  }
  .smart-feature-icon svg {
    width: 24px;
    height: 24px;
  }
  .smart-feature-label {
    font-size: 10px;
    line-height: 1.2;
  }
  .smart-auto-btn {
    width: 100%;
    justify-content: center;
    padding: 14px 20px;
  }
}

@media (max-width: 480px) {
  .smart-features-grid {
    grid-template-columns: repeat(5, 1fr);
    gap: 4px;
  }
  .smart-feature-label {
    font-size: 9.5px;
  }
}

/* ==========================================================================
   13. FEATURED PRODUCTS SECTION
   ========================================================================== */
.featured-products-section {
  position: relative;
  background-color: #ffffff;
  padding: 85px 0 100px 0;
  width: 100%;
  overflow: hidden;
}

.featured-container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 48px;
}

/* Header */
.featured-header {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 48px;
}

.featured-title-wrap {
  text-align: center;
}

.featured-title {
  font-family: var(--font-editorial), 'Playfair Display', Georgia, serif;
  font-size: clamp(32px, 3.4vw, 44px);
  font-weight: 500;
  color: #111827;
  letter-spacing: -0.3px;
}

.featured-title-divider {
  width: 38px;
  height: 2.5px;
  background-color: var(--accent-orange);
  margin: 12px auto 0 auto;
  border-radius: var(--radius-pill);
}

/* Top Right Nav Controls */
.featured-nav-controls {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  gap: 10px;
}

.prod-arrow {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid #e5e7eb;
  background: #ffffff;
  color: #374151;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.04);
}

.prod-arrow svg {
  width: 20px;
  height: 20px;
}

.prod-arrow:hover {
  background: var(--accent-orange);
  border-color: var(--accent-orange);
  color: #ffffff;
  transform: scale(1.08);
  box-shadow: 0 4px 14px var(--accent-orange-glow);
}

/* Track & Grid */
.featured-track-container {
  width: 100%;
  overflow: hidden;
  position: relative;
  padding: 10px 0;
}

.featured-track {
  display: flex;
  flex-wrap: nowrap;
  gap: 28px;
  width: 100%;
  transition: transform 0.55s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform;
}

/* Product Card - Exactly 4 in 1 Row on Desktop */
.product-card {
  flex: 0 0 calc((100% - (3 * 28px)) / 4);
  min-width: 0;
  background: #ffffff;
  border-radius: 16px;
  border: 1px solid #f0f1f3;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.35s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.35s ease;
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.08);
  border-color: rgba(255, 107, 0, 0.25);
}

.prod-img-wrap {
  width: 100%;
  aspect-ratio: 1.15;
  background-color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  overflow: hidden;
}

.prod-img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

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

.prod-info {
  padding: 18px 20px 22px 20px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.prod-brand {
  font-family: var(--font-modern), sans-serif;
  font-size: 10.5px;
  font-weight: 700;
  color: #9ca3af;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 6px;
}

.prod-name {
  font-family: var(--font-body), 'Plus Jakarta Sans', sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: #111827;
  line-height: 1.35;
  margin-bottom: 16px;
  min-height: 40px;
}

.prod-price-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
}

.prod-price {
  font-family: var(--font-body), 'Plus Jakarta Sans', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: #111827;
  letter-spacing: -0.2px;
}

.add-to-cart-btn {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  border: 1px solid #e5e7eb;
  background: #ffffff;
  color: #374151;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.add-to-cart-btn svg {
  width: 17px;
  height: 17px;
  transition: transform 0.25s ease;
}

.add-to-cart-btn:hover {
  background: var(--accent-orange);
  border-color: var(--accent-orange);
  color: #ffffff;
  transform: scale(1.08);
  box-shadow: 0 4px 12px var(--accent-orange-glow);
}

/* ==========================================================================
   14. TRUST & BENEFITS BAR (Deep Black Luxury Bar)
   ========================================================================== */
.trust-benefits-bar {
  position: relative;
  background-color: #0c0d10;
  padding: 48px 0;
  width: 100%;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.trust-container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 48px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  align-items: center;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 8px 16px;
  border-right: 1px solid rgba(255, 255, 255, 0.08);
  transition: transform 0.25s ease;
}

.trust-item:last-child {
  border-right: none;
}

.trust-item:hover {
  transform: translateY(-2px);
}

.trust-icon-box {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  transition: color 0.25s ease, transform 0.25s ease;
}

.trust-icon-box svg {
  width: 32px;
  height: 32px;
}

.trust-item:hover .trust-icon-box {
  color: var(--accent-orange);
  transform: scale(1.08);
}

.trust-text {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.trust-title {
  font-family: var(--font-body), 'Plus Jakarta Sans', sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: #ffffff;
  letter-spacing: 0.2px;
}

.trust-desc {
  font-family: var(--font-body), 'Plus Jakarta Sans', sans-serif;
  font-size: 12px;
  font-weight: 400;
  color: #9ca3af;
}

/* Responsive Rules for Featured & Trust Bar */
@media (max-width: 1200px) {
  .featured-track {
    gap: 20px;
  }
  .product-card {
    flex: 0 0 calc((100% - (2 * 20px)) / 3);
  }
  .trust-container {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
  .trust-item:nth-child(2) {
    border-right: none;
  }
}

@media (max-width: 768px) {
  .featured-products-section {
    padding: 60px 0 75px 0;
  }
  .featured-container {
    padding: 0 20px;
  }
  .featured-header {
    flex-direction: column;
    gap: 16px;
    margin-bottom: 32px;
  }
  .featured-nav-controls {
    position: static;
    transform: none;
  }
  .featured-track {
    gap: 14px;
  }
  .product-card {
    flex: 0 0 calc((100% - 14px) / 2);
  }
  .prod-img-wrap {
    padding: 14px;
  }
  .prod-info {
    padding: 12px 14px 16px 14px;
  }
  .prod-name {
    font-size: 13.5px;
    min-height: 36px;
    margin-bottom: 12px;
  }
  .prod-price {
    font-size: 14.5px;
  }
  .trust-benefits-bar {
    padding: 36px 0;
  }
  .trust-container {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 0 24px;
  }
  .trust-item {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    padding-bottom: 16px;
  }
  .trust-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
  }
}

@media (max-width: 480px) {
  .product-card {
    flex: 0 0 100%;
  }
}

/* ==========================================================================
   15. TESTIMONIALS SECTION (What Our Clients Say)
   ========================================================================== */
.testimonials-section {
  position: relative;
  background-color: #0c0d10;
  padding: 90px 0 95px 0;
  width: 100%;
  overflow: hidden;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.testimonials-container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 48px;
}

/* Header */
.testimonials-header {
  text-align: center;
  margin-bottom: 56px;
}

.testimonials-title {
  font-family: var(--font-editorial), 'Playfair Display', Georgia, serif;
  font-size: clamp(32px, 3.2vw, 42px);
  font-weight: 500;
  color: #ffffff;
  letter-spacing: -0.3px;
}

/* Slider Wrap & Tracks */
.testimonials-slider-wrap {
  width: 100%;
  overflow: hidden;
  position: relative;
}

.testimonials-track {
  display: flex;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  width: 100%;
}

.testimonial-slide {
  flex: 0 0 100%;
  width: 100%;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-items: stretch;
}

/* Individual Card */
.testimonial-card {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  padding: 20px 32px;
  border-right: 1px solid rgba(255, 255, 255, 0.08);
  transition: transform 0.3s ease;
}

.testimonial-card:last-child {
  border-right: none;
}

.testimonial-card:hover {
  transform: translateY(-3px);
}

.testimonial-content {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.testimonial-rating-row {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
}

.testimonial-quote-icon {
  font-family: Georgia, serif;
  font-size: 26px;
  line-height: 1;
  color: var(--accent-orange);
  font-weight: 700;
}

.testimonial-stars {
  display: flex;
  align-items: center;
  gap: 3px;
}

.testimonial-stars svg {
  width: 13px;
  height: 13px;
}

.testimonial-quote {
  font-family: var(--font-body), 'Plus Jakarta Sans', sans-serif;
  font-size: 13.5px;
  font-weight: 400;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 20px;
  min-height: 64px;
}

.testimonial-author {
  display: flex;
  flex-direction: column;
  gap: 2px;
  margin-top: auto;
}

.author-name {
  font-family: var(--font-body), 'Plus Jakarta Sans', sans-serif;
  font-size: 13.5px;
  font-weight: 700;
  color: #ffffff;
  letter-spacing: 0.2px;
}

.author-location {
  font-family: var(--font-body), 'Plus Jakarta Sans', sans-serif;
  font-size: 12px;
  font-weight: 400;
  color: #9ca3af;
}

/* Avatar Photo Frame */
.testimonial-avatar-wrap {
  flex-shrink: 0;
  width: 90px;
  height: 110px;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.35);
  background: #1e2430;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s ease;
}

.testimonial-card:hover .testimonial-avatar-wrap {
  transform: scale(1.04);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.45);
  border-color: rgba(255, 107, 0, 0.35);
}

.client-avatar {
  width: 100%;
  height: 100%;
  display: block;
}

.avatar-svg {
  width: 100%;
  height: 100%;
  display: block;
}

/* Pagination Dots */
.testimonials-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 45px;
}

.testi-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #374151;
  border: none;
  cursor: pointer;
  padding: 0;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.testi-dot:hover {
  background-color: #6b7280;
}

.testi-dot.active {
  width: 24px;
  border-radius: 6px;
  background-color: var(--accent-orange);
  box-shadow: 0 0 10px var(--accent-orange-glow);
}

/* Responsive Rules for Testimonials */
@media (max-width: 1024px) {
  .testimonial-card {
    padding: 16px 20px;
    gap: 14px;
  }
  .testimonial-avatar-wrap {
    width: 78px;
    height: 98px;
  }
  .testimonial-quote {
    font-size: 13px;
  }
}

@media (max-width: 768px) {
  .testimonials-section {
    padding: 60px 0 70px 0;
  }
  .testimonials-container {
    padding: 0 20px;
  }
  .testimonials-title {
    font-size: 28px;
  }
  .testimonials-header {
    margin-bottom: 36px;
  }
  .testimonial-slide {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .testimonial-card {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding-bottom: 24px;
  }
  .testimonial-card:last-child {
    border-bottom: none;
    padding-bottom: 0;
  }
  .testimonial-quote {
    min-height: auto;
  }
}

/* ==========================================================================
   16. CONTACT & SMART LIVING EXPERIENCE SECTION
   ========================================================================== */
.contact-experience-section {
  position: relative;
  background-color: #ffffff;
  padding: 95px 0 110px 0;
  width: 100%;
  overflow: hidden;
}

.contact-container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 48px;
}

/* Header */
.contact-header {
  text-align: center;
  margin-bottom: 56px;
}

.contact-title {
  font-family: var(--font-editorial), 'Playfair Display', Georgia, serif;
  font-size: clamp(32px, 3.5vw, 46px);
  font-weight: 500;
  color: #111827;
  letter-spacing: -0.3px;
}

.contact-title-divider {
  width: 38px;
  height: 2.5px;
  background-color: var(--accent-orange);
  margin: 14px auto 0 auto;
  border-radius: var(--radius-pill);
}

/* 4-Column Grid */
.contact-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.35fr 1.15fr 1.35fr;
  gap: 42px;
  align-items: flex-start;
}

/* Column Titles */
.contact-col-title {
  font-family: var(--font-body), 'Plus Jakarta Sans', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: #111827;
  margin-bottom: 22px;
  letter-spacing: -0.2px;
}

/* Column 1: Direct Contact Info */
.contact-info-col {
  display: flex;
  flex-direction: column;
  gap: 26px;
  padding-top: 38px;
}

.contact-info-item {
  display: flex;
  align-items: center;
  gap: 16px;
  text-decoration: none;
  color: #111827;
  transition: transform 0.25s ease;
  cursor: pointer;
}

.contact-info-item:hover {
  transform: translateX(3px);
}

.contact-info-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #f3f4f6;
  color: #111827;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.contact-info-icon svg {
  width: 20px;
  height: 20px;
}

.contact-info-item:hover .contact-info-icon {
  background: var(--accent-orange);
  color: #ffffff;
  transform: scale(1.1);
  box-shadow: 0 4px 14px var(--accent-orange-glow);
}

.contact-info-text {
  font-family: var(--font-body), 'Plus Jakarta Sans', sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: #111827;
}

.contact-address-text {
  display: flex;
  flex-direction: column;
}

.contact-address-main {
  font-family: var(--font-body), 'Plus Jakarta Sans', sans-serif;
  font-size: 14.5px;
  font-weight: 700;
  color: #111827;
}

.contact-address-sub {
  font-size: 13px;
  color: #6b7280;
  font-weight: 500;
}

/* Column 2: Send Us a Message Form */
.contact-form-col {
  display: flex;
  flex-direction: column;
}

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

.form-group {
  width: 100%;
}

.form-input,
.form-textarea {
  width: 100%;
  padding: 12px 16px;
  border-radius: 8px;
  border: 1px solid #d1d5db;
  background: #ffffff;
  font-family: var(--font-body), 'Plus Jakarta Sans', sans-serif;
  font-size: 14px;
  color: #111827;
  outline: none;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: #9ca3af;
}

.form-input:focus,
.form-textarea:focus {
  border-color: var(--accent-orange);
  box-shadow: 0 0 0 3px rgba(255, 107, 0, 0.15);
}

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

.contact-submit-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background-color: #111827;
  color: #ffffff;
  border: none;
  padding: 14px 28px;
  border-radius: 6px;
  font-family: var(--font-modern), sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.12);
  width: 100%;
  margin-top: 4px;
}

.contact-submit-btn .btn-arrow {
  width: 16px;
  height: 16px;
  transition: transform 0.25s ease;
}

.contact-submit-btn:hover {
  background: linear-gradient(135deg, #ff6b00 0%, #ff5200 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 107, 0, 0.35);
}

.contact-submit-btn:hover .btn-arrow {
  transform: translateX(4px);
}

/* Column 3: I'm Interested In Checkboxes */
.contact-interests-col {
  display: flex;
  flex-direction: column;
}

.interests-checklist {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.custom-checkbox-label {
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  user-select: none;
  position: relative;
  transition: transform 0.2s ease;
}

.custom-checkbox-label:hover {
  transform: translateX(3px);
}

.custom-checkbox-input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

.checkbox-box {
  width: 18px;
  height: 18px;
  border-radius: 4px;
  border: 1.8px solid #9ca3af;
  background-color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
  flex-shrink: 0;
}

.custom-checkbox-input:checked ~ .checkbox-box {
  background-color: var(--accent-orange);
  border-color: var(--accent-orange);
}

.custom-checkbox-input:checked ~ .checkbox-box::after {
  content: '';
  width: 4px;
  height: 8px;
  border: solid white;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
  margin-bottom: 2px;
}

.checkbox-text {
  font-family: var(--font-body), 'Plus Jakarta Sans', sans-serif;
  font-size: 13.5px;
  font-weight: 500;
  color: #374151;
  transition: color 0.2s ease;
}

.custom-checkbox-input:checked ~ .checkbox-text {
  color: #111827;
  font-weight: 600;
}

/* Column 4: Business Hours & Showroom Image */
.contact-hours-media-col {
  display: flex;
  flex-direction: column;
}

.business-hours-table {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 22px;
}

.hours-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13.5px;
  font-family: var(--font-body), 'Plus Jakarta Sans', sans-serif;
  color: #374151;
}

.hours-day {
  font-weight: 600;
  color: #111827;
}

.hours-time {
  color: #4b5563;
}

.hours-time.closed {
  color: #ef4444;
  font-weight: 600;
}

.contact-media-wrap {
  width: 100%;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
  background: #f3f4f6;
  position: relative;
}

.contact-showroom-img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  display: block;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.contact-media-wrap:hover .contact-showroom-img {
  transform: scale(1.05);
}

/* Responsive Rules for Contact Section */
@media (max-width: 1200px) {
  .contact-grid {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
  }
  .contact-info-col {
    padding-top: 0;
  }
}

@media (max-width: 768px) {
  .contact-experience-section {
    padding: 60px 0 75px 0;
  }
  .contact-container {
    padding: 0 20px;
  }
  .contact-title {
    font-size: 28px;
  }
  .contact-header {
    margin-bottom: 36px;
  }
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .contact-media-wrap .contact-showroom-img {
    height: 190px;
  }
}

/* ==========================================================================
   17. SITE FOOTER
   ========================================================================== */
.site-footer {
  position: relative;
  background-color: #0c0d10;
  color: #ffffff;
  padding: 85px 0 36px 0;
  width: 100%;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 48px;
}

/* Top Grid: 4 Columns */
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1.15fr 1fr 1.15fr;
  gap: 52px;
  margin-bottom: 64px;
}

/* Column 1: Brand Info */
.footer-brand-col {
  display: flex;
  flex-direction: column;
}

.footer-logo-link {
  display: inline-block;
  margin-bottom: 12px;
}

.footer-logo-img {
  height: 72px; /* Same size as nav bar logo */
  width: auto;
  display: block;
}

.footer-brand-desc {
  font-family: var(--font-body), 'Plus Jakarta Sans', sans-serif;
  font-size: 13.5px;
  line-height: 1.65;
  color: #9ca3af;
  margin-bottom: 28px;
  max-width: 320px;
}

/* Social Icons */
.footer-social-links {
  display: flex;
  align-items: center;
  gap: 12px;
}

.social-icon-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.04);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.social-icon-btn svg {
  width: 16px;
  height: 16px;
}

.social-icon-btn:hover {
  background: var(--accent-orange);
  border-color: var(--accent-orange);
  color: #ffffff;
  transform: translateY(-3px) scale(1.08);
  box-shadow: 0 4px 14px var(--accent-orange-glow);
}

/* Headings */
.footer-heading {
  font-family: var(--font-body), 'Plus Jakarta Sans', sans-serif;
  font-size: 13.5px;
  font-weight: 700;
  color: #ffffff;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  margin-bottom: 22px;
}

/* Links Lists */
.footer-links-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links-list a {
  font-family: var(--font-body), 'Plus Jakarta Sans', sans-serif;
  font-size: 13.5px;
  color: #9ca3af;
  text-decoration: none;
  transition: color 0.2s ease, transform 0.2s ease;
  display: inline-block;
}

.footer-links-list a:hover {
  color: #ffffff;
  transform: translateX(3px);
}

/* Contact List */
.footer-contact-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-contact-link,
.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 14px;
  color: #d1d5db;
  text-decoration: none;
  font-family: var(--font-body), 'Plus Jakarta Sans', sans-serif;
  font-size: 13.5px;
  transition: color 0.2s ease;
}

.footer-contact-icon {
  width: 18px;
  height: 18px;
  color: var(--accent-orange);
  flex-shrink: 0;
}

.footer-contact-link:hover {
  color: #ffffff;
}

/* Bottom Sub-footer Bar */
.footer-bottom-bar {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-copyright {
  font-family: var(--font-body), 'Plus Jakarta Sans', sans-serif;
  font-size: 13px;
  color: #6b7280;
}

.footer-payment-badges {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.payment-badge {
  height: 26px;
  border-radius: 4px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.25);
  transition: transform 0.2s ease;
}

.payment-badge:hover {
  transform: translateY(-2px);
}

.payment-svg {
  height: 26px;
  width: auto;
  display: block;
}

/* Responsive Rules for Footer */
@media (max-width: 1100px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
}

@media (max-width: 768px) {
  .site-footer {
    padding: 60px 0 32px 0;
  }
  .footer-container {
    padding: 0 20px;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 36px;
    margin-bottom: 48px;
  }
  .footer-brand-desc {
    max-width: 100%;
  }
  .footer-bottom-bar {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 16px;
  }
  .footer-payment-badges {
    justify-content: center;
  }
}

/* ==========================================================================
   18. MOBILE NAVIGATION DRAWER (Slide-out menu)
   ========================================================================== */
.mobile-nav-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(8px);
  z-index: 400;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

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

.mobile-nav-drawer {
  position: fixed;
  top: 0;
  left: 0;
  width: 320px;
  max-width: 86vw;
  height: 100vh;
  background: #111216;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 10px 0 30px rgba(0, 0, 0, 0.5);
  display: flex;
  flex-direction: column;
  transform: translateX(-100%);
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 401;
  overflow-y: auto;
}

.mobile-nav-overlay.active .mobile-nav-drawer {
  transform: translateX(0);
}

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

.mobile-nav-logo-img {
  height: 38px;
  width: auto;
  display: block;
}

.mobile-nav-close-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #ffffff;
  font-size: 24px;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
}

.mobile-nav-close-btn:hover {
  background: var(--accent-orange);
  border-color: var(--accent-orange);
  transform: rotate(90deg);
}

.mobile-drawer-search {
  padding: 16px 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.mobile-search-form {
  position: relative;
  width: 100%;
}

.mobile-drawer-search-input {
  width: 100%;
  height: 42px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-pill);
  padding: 0 44px 0 16px;
  color: #ffffff;
  font-size: 13.5px;
  font-family: var(--font-body);
  outline: none;
  transition: border-color 0.2s ease;
}

.mobile-drawer-search-input:focus {
  border-color: var(--accent-orange);
}

.mobile-drawer-search-btn {
  position: absolute;
  right: 6px;
  top: 50%;
  transform: translateY(-50%);
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--accent-orange);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  cursor: pointer;
}

.mobile-drawer-search-btn svg {
  width: 14px;
  height: 14px;
}

.mobile-nav-body {
  padding: 20px 24px 36px 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.mobile-nav-list {
  list-style: none;
  padding: 0;
  margin: 0 0 28px 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.mobile-nav-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 14px;
  border-radius: 8px;
  color: #e5e7eb;
  font-family: var(--font-body);
  font-size: 14.5px;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.2s ease, color 0.2s ease;
}

.mobile-nav-link:hover,
.mobile-nav-link:active {
  background: rgba(255, 107, 0, 0.12);
  color: var(--accent-orange);
}

.mobile-arrow {
  width: 16px;
  height: 16px;
  color: #9ca3af;
}

.mobile-nav-contact {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  margin-bottom: 24px;
}

.mobile-contact-row {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #9ca3af;
  font-size: 13.5px;
  text-decoration: none;
  transition: color 0.2s ease;
}

.mobile-contact-row svg {
  width: 16px;
  height: 16px;
  color: var(--accent-orange);
}

.mobile-contact-row:hover {
  color: #ffffff;
}

.mobile-nav-cta-btn {
  width: 100%;
  padding: 14px;
  background: linear-gradient(135deg, #ff6b00 0%, #ff5200 100%);
  color: #ffffff;
  border: none;
  border-radius: 6px;
  font-family: var(--font-modern);
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  cursor: pointer;
  box-shadow: 0 4px 14px var(--accent-orange-glow);
}

/* ==========================================================================
   19. OPENING PRELOADER ANIMATION
   ========================================================================== */
.site-preloader {
  position: fixed;
  inset: 0;
  background-color: #07080a;
  z-index: 999999;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: all;
  overflow: hidden;
  opacity: 1;
  transition: opacity 0.65s cubic-bezier(0.16, 1, 0.3, 1), transform 0.65s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.65s ease;
}

.site-preloader.fade-out {
  opacity: 0;
  transform: scale(1.04);
  visibility: hidden;
  pointer-events: none;
}

.preloader-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  width: 100%;
  max-width: 480px;
  padding: 20px;
  text-align: center;
}

/* Molecular Cluster */
.molecular-cluster {
  position: relative;
  width: 90px;
  height: 90px;
  margin-bottom: 24px;
}

.m-dot {
  position: absolute;
  border-radius: 50%;
  opacity: 0;
  animation: dotAssemble 1.1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

/* Individual Dot Positions, Sizes & Convergent Color Scheme */
.dot-1  { width: 10px; height: 10px; background: #ff6b00; box-shadow: 0 0 12px rgba(255, 107, 0, 0.8); top: 38px; left: 40px; animation-delay: 0.05s; }
.dot-2  { width: 8px;  height: 8px;  background: #ffffff; box-shadow: 0 0 8px rgba(255, 255, 255, 0.8); top: 22px; left: 32px; animation-delay: 0.12s; }
.dot-3  { width: 7px;  height: 7px;  background: #ff5200; box-shadow: 0 0 8px rgba(255, 82, 0, 0.8); top: 20px; left: 50px; animation-delay: 0.18s; }
.dot-4  { width: 9px;  height: 9px;  background: #e2e8f0; box-shadow: 0 0 10px rgba(255, 255, 255, 0.7); top: 34px; left: 22px; animation-delay: 0.24s; }
.dot-5  { width: 8px;  height: 8px;  background: #ff7a18; box-shadow: 0 0 10px rgba(255, 122, 24, 0.8); top: 36px; left: 60px; animation-delay: 0.30s; }
.dot-6  { width: 6px;  height: 6px;  background: #ffffff; box-shadow: 0 0 6px rgba(255, 255, 255, 0.9); top: 52px; left: 28px; animation-delay: 0.36s; }
.dot-7  { width: 7px;  height: 7px;  background: #ff3b00; box-shadow: 0 0 8px rgba(255, 59, 0, 0.8); top: 54px; left: 48px; animation-delay: 0.42s; }
.dot-8  { width: 5px;  height: 5px;  background: #cbd5e1; box-shadow: 0 0 6px rgba(255, 255, 255, 0.7); top: 12px; left: 42px; animation-delay: 0.48s; }
.dot-9  { width: 6px;  height: 6px;  background: #ff6b00; box-shadow: 0 0 8px rgba(255, 107, 0, 0.7); top: 48px; left: 66px; animation-delay: 0.54s; }
.dot-10 { width: 5px;  height: 5px;  background: #ffffff; box-shadow: 0 0 6px rgba(255, 255, 255, 0.8); top: 66px; left: 38px; animation-delay: 0.60s; }
.dot-11 { width: 4px;  height: 4px;  background: #ff8524; box-shadow: 0 0 6px rgba(255, 133, 36, 0.8); top: 28px; left: 68px; animation-delay: 0.66s; }
.dot-12 { width: 5px;  height: 5px;  background: #94a3b8; box-shadow: 0 0 6px rgba(255, 255, 255, 0.5); top: 46px; left: 14px; animation-delay: 0.72s; }

@keyframes dotAssemble {
  0% {
    opacity: 0;
    transform: scale(0) translate(0, -20px);
  }
  50% {
    opacity: 1;
    transform: scale(1.3) translate(0, 0);
  }
  100% {
    opacity: 1;
    transform: scale(1) translate(0, 0);
  }
}

/* Logo & Tagline Entrance */
.preloader-brand {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.preloader-logo-wrap {
  opacity: 0;
  transform: translateY(16px);
  animation: preloaderLogoIn 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.35s forwards;
}

.preloader-logo-img {
  height: 68px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 0 20px rgba(255, 107, 0, 0.35)) drop-shadow(0 2px 8px rgba(0, 0, 0, 0.6));
}

@keyframes preloaderLogoIn {
  0% {
    opacity: 0;
    transform: translateY(16px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Orange Beam Draw Line */
.preloader-beam-wrap {
  width: 240px;
  height: 2px;
  margin-top: 22px;
  position: relative;
  overflow: hidden;
  border-radius: 2px;
  background: rgba(255, 255, 255, 0.08);
}

.preloader-beam {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent 0%, #ff6b00 45%, #ff9a3c 80%, #ffffff 100%);
  transform: scaleX(0);
  transform-origin: left;
  animation: beamDraw 0.7s cubic-bezier(0.16, 1, 0.3, 1) 0.85s forwards;
  box-shadow: 0 0 12px #ff6b00;
}

@keyframes beamDraw {
  0% {
    transform: scaleX(0);
  }
  100% {
    transform: scaleX(1);
  }
}



