/* ==========================================================================
   DURABLE AUTOMOTIVE - DESIGN SYSTEM & STYLES (THULE INSPIRED)
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800;900&family=Syne:wght@700;800&family=JetBrains+Mono:wght@400;500;600&display=swap');

:root {
  /* Color Palette - Thule Inspired Crisp & Automotive */
  --bg-primary: #ffffff;
  --bg-secondary: #f8f9fa;
  --bg-tertiary: #f0f2f5;
  --bg-dark: #0f1115;
  --bg-dark-card: #181b22;
  --bg-dark-accent: #232731;

  --text-primary: #111827;
  --text-secondary: #4b5563;
  --text-muted: #8b949e;
  --text-inverse: #ffffff;
  --text-inverse-muted: #9ca3af;

  --brand-red: #e11d48;
  --brand-red-hover: #be123c;
  --brand-red-light: #ffe4e6;
  --brand-blue: #0284c7;
  --brand-dark: #121417;

  --border-light: #e5e7eb;
  --border-medium: #d1d5db;
  --border-dark: #2a2e39;

  --badge-bg: #f3f4f6;
  --badge-text: #1f2937;
  --accent-gold: #f59e0b;
  --accent-green: #10b981;

  /* Typography */
  --font-main: 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-heading: 'Outfit', sans-serif;
  --font-mono: 'JetBrains Mono', monospace;

  /* Layout & Spacing */
  --container-max: 1360px;
  --container-narrow: 1100px;
  --header-height: 80px;
  --topbar-height: 38px;
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 30px;
  --radius-pill: 9999px;

  /* Shadows */
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 12px -1px rgba(0, 0, 0, 0.08), 0 2px 4px -1px rgba(0, 0, 0, 0.04);
  --shadow-lg: 0 12px 30px -4px rgba(0, 0, 0, 0.12), 0 4px 8px -2px rgba(0, 0, 0, 0.05);
  --shadow-xl: 0 20px 40px -8px rgba(0, 0, 0, 0.2);
  --shadow-card-hover: 0 16px 32px rgba(0, 0, 0, 0.12);

  /* Transitions */
  --transition-fast: 0.15s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-normal: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

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

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

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

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

button {
  cursor: pointer;
}

ul, ol {
  list-style: none;
}

.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 24px;
}

.container-narrow {
  max-width: var(--container-narrow);
  margin: 0 auto;
  padding: 0 24px;
}

/* ==========================================================================
   TOP BAR & HEADER
   ========================================================================== */
.top-bar {
  background: var(--bg-dark);
  color: #d1d5db;
  font-size: 0.82rem;
  padding: 8px 0;
  border-bottom: 1px solid var(--border-dark);
}

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

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

.top-bar-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #9ca3af;
}

.top-bar-item svg {
  color: var(--brand-red);
}

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

.top-bar-link {
  color: #d1d5db;
  font-weight: 500;
  transition: color var(--transition-fast);
}
.top-bar-link:hover {
  color: #ffffff;
}

.lang-switch {
  background: rgba(255, 255, 255, 0.1);
  padding: 2px 8px;
  border-radius: 4px;
  font-size: 0.75rem;
  font-weight: 600;
  color: #fff;
  cursor: pointer;
}

/* Main Header */
.site-header {
  position: sticky;
  top: 0;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(12px);
  z-index: 1000;
  border-bottom: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-normal);
}

.site-header.scrolled {
  background: rgba(255, 255, 255, 0.98);
  box-shadow: var(--shadow-md);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-height);
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand-logo img {
  height: 48px;
  width: auto;
  object-fit: contain;
}

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

.logo-title {
  font-weight: 900;
  font-size: 1.35rem;
  letter-spacing: -0.5px;
  line-height: 1.1;
  color: var(--brand-dark);
  text-transform: uppercase;
}

.logo-title span {
  color: var(--brand-red);
}

.logo-subtitle {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 2px;
  color: var(--text-muted);
  text-transform: uppercase;
}

/* Nav Menu */
.main-nav {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-link {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--text-primary);
  padding: 8px 0;
  position: relative;
  letter-spacing: -0.2px;
  transition: color var(--transition-fast);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 2px;
  background-color: var(--brand-red);
  transition: width var(--transition-normal);
}

.nav-link:hover,
.nav-link.active {
  color: var(--brand-red);
}

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

.nav-badge-pill {
  background: var(--brand-red-light);
  color: var(--brand-red);
  font-size: 0.7rem;
  font-weight: 700;
  padding: 2px 7px;
  border-radius: var(--radius-pill);
  margin-left: 4px;
}

/* Header Actions */
.header-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-weight: 600;
  font-size: 0.92rem;
  padding: 12px 24px;
  border-radius: var(--radius-md);
  transition: all var(--transition-fast);
  text-align: center;
  white-space: nowrap;
}

.btn-sm {
  padding: 8px 16px;
  font-size: 0.85rem;
  border-radius: var(--radius-sm);
}

.btn-lg {
  padding: 16px 32px;
  font-size: 1.05rem;
  border-radius: var(--radius-md);
}

.btn-primary {
  background: var(--brand-red);
  color: #fff;
  box-shadow: 0 4px 14px rgba(225, 29, 72, 0.3);
}
.btn-primary:hover {
  background: var(--brand-red-hover);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(225, 29, 72, 0.4);
}

.btn-dark {
  background: var(--bg-dark);
  color: #fff;
}
.btn-dark:hover {
  background: #222734;
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

.btn-outline {
  background: transparent;
  border: 1.5px solid var(--border-medium);
  color: var(--text-primary);
}
.btn-outline:hover {
  border-color: var(--brand-dark);
  background: var(--bg-secondary);
}

.btn-outline-white {
  background: transparent;
  border: 1.5px solid rgba(255, 255, 255, 0.4);
  color: #ffffff;
}
.btn-outline-white:hover {
  border-color: #ffffff;
  background: rgba(255, 255, 255, 0.1);
}

.btn-fit-guide {
  background: var(--bg-secondary);
  color: var(--text-primary);
  border: 1px solid var(--border-light);
  font-weight: 700;
  padding: 10px 18px;
  border-radius: var(--radius-pill);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.btn-fit-guide:hover {
  background: #e5e7eb;
  color: var(--brand-red);
}

.mobile-menu-btn {
  display: none;
  background: transparent;
  color: var(--text-primary);
  font-size: 1.5rem;
  padding: 4px;
}

/* ==========================================================================
   HERO / BANNER (THULE STYLE OUTDOOR & AUTOMOTIVE)
   ========================================================================== */
.hero-thule {
  position: relative;
  min-height: 85vh;
  background: #0b0d11;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: #ffffff;
}

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

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), transform 1s cubic-bezier(0.4, 0, 0.2, 1);
  transform: scale(1.04);
}

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

.hero-slide-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(11, 13, 17, 0.88) 0%, rgba(11, 13, 17, 0.5) 50%, rgba(11, 13, 17, 0.2) 100%);
}

.hero-content {
  position: relative;
  z-index: 10;
  max-width: 650px;
  padding: 60px 0;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 20px;
}

.hero-tag .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--brand-red);
}

.hero-title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -1.5px;
  margin-bottom: 20px;
  color: #ffffff;
}

.hero-title span {
  color: var(--brand-red);
}

.hero-desc {
  font-size: 1.15rem;
  line-height: 1.6;
  color: #e5e7eb;
  margin-bottom: 36px;
  font-weight: 400;
}

.hero-btn-group {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 40px;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 32px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}

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

.stat-val {
  font-size: 1.8rem;
  font-weight: 800;
  color: #fff;
  line-height: 1;
  font-family: var(--font-mono);
}

.stat-lbl {
  font-size: 0.78rem;
  color: #9ca3af;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-top: 4px;
}

/* Slider Controls */
.hero-controls {
  position: absolute;
  bottom: 30px;
  right: 40px;
  z-index: 20;
  display: flex;
  align-items: center;
  gap: 12px;
}

.slider-arrow-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-fast);
}
.slider-arrow-btn:hover {
  background: var(--brand-red);
  border-color: var(--brand-red);
}

/* ==========================================================================
   FIT GUIDE / VEHICLE SELECTOR WIDGET (INTERACTIVE THULE BUYER'S GUIDE)
   ========================================================================== */
.fit-guide-section {
  background: #ffffff;
  padding: 40px 0;
  position: relative;
  z-index: 30;
  margin-top: -40px;
}

.fit-guide-card {
  background: #ffffff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
  border: 1px solid var(--border-light);
  padding: 32px;
}

.fit-guide-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
  flex-wrap: wrap;
  gap: 16px;
}

.fit-guide-title {
  font-size: 1.4rem;
  font-weight: 800;
  letter-spacing: -0.5px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.fit-guide-title svg {
  color: var(--brand-red);
}

.fit-guide-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
  align-items: end;
}

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

.form-label {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.form-select, .form-input {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--border-medium);
  border-radius: var(--radius-md);
  background: var(--bg-secondary);
  color: var(--text-primary);
  font-weight: 500;
  font-size: 0.95rem;
  transition: all var(--transition-fast);
}

.form-select:focus, .form-input:focus {
  border-color: var(--brand-dark);
  background: #ffffff;
  box-shadow: 0 0 0 3px rgba(17, 24, 39, 0.1);
}

.fit-result-box {
  margin-top: 24px;
  padding: 20px;
  background: var(--bg-secondary);
  border-radius: var(--radius-md);
  border-left: 4px solid var(--brand-red);
  display: none;
  animation: fadeIn 0.3s ease;
}

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

/* ==========================================================================
   CATEGORY & PRODUCT LISTING (THULE.COM ROOF BOX LAYOUT)
   ========================================================================== */
.page-header-thule {
  background: var(--bg-secondary);
  padding: 48px 0 36px;
  border-bottom: 1px solid var(--border-light);
}

.breadcrumbs {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 16px;
}

.breadcrumbs a:hover {
  color: var(--brand-red);
}

.breadcrumbs span.separator {
  color: var(--border-medium);
}

.page-title {
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 800;
  letter-spacing: -1px;
  margin-bottom: 12px;
  color: var(--brand-dark);
}

.page-desc {
  font-size: 1.1rem;
  color: var(--text-secondary);
  max-width: 800px;
  line-height: 1.6;
}

/* Category Main Layout */
.category-layout {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 40px;
  padding: 48px 0 80px;
}

/* Sidebar Filters */
.filter-sidebar {
  position: sticky;
  top: 100px;
  height: fit-content;
  background: #ffffff;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-light);
  padding: 24px;
}

.filter-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border-light);
  margin-bottom: 20px;
}

.filter-header h3 {
  font-size: 1.1rem;
  font-weight: 700;
}

.clear-filters-btn {
  background: none;
  color: var(--brand-red);
  font-size: 0.82rem;
  font-weight: 600;
}

.filter-group {
  margin-bottom: 24px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border-light);
}

.filter-group:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.filter-title {
  font-size: 0.9rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--text-primary);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.filter-options {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.custom-checkbox {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  font-size: 0.92rem;
  color: var(--text-secondary);
  user-select: none;
}

.custom-checkbox input {
  width: 18px;
  height: 18px;
  accent-color: var(--brand-red);
  cursor: pointer;
}

.custom-checkbox span.count {
  margin-left: auto;
  font-size: 0.78rem;
  color: var(--text-muted);
  background: var(--bg-secondary);
  padding: 2px 8px;
  border-radius: var(--radius-pill);
}

/* Color Filter Swatches */
.color-swatch-list {
  display: flex;
  gap: 12px;
}

.color-swatch-item {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 2px solid var(--border-medium);
  cursor: pointer;
  position: relative;
  transition: transform var(--transition-fast);
}

.color-swatch-item:hover {
  transform: scale(1.1);
}

.color-swatch-item.active {
  border-color: var(--brand-red);
  box-shadow: 0 0 0 2px var(--brand-red);
}

.swatch-black { background: #111111; }
.swatch-white { background: #fdfdfd; border-color: #d1d5db; }

/* Products Toolbar */
.products-toolbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
  flex-wrap: wrap;
  gap: 16px;
}

.results-count {
  font-size: 0.95rem;
  color: var(--text-secondary);
  font-weight: 500;
}

.results-count strong {
  color: var(--text-primary);
}

.toolbar-controls {
  display: flex;
  align-items: center;
  gap: 16px;
}

.sort-select {
  padding: 8px 14px;
  border: 1px solid var(--border-medium);
  border-radius: var(--radius-sm);
  background: #ffffff;
  font-size: 0.88rem;
  font-weight: 500;
  cursor: pointer;
}

/* Product Cards Grid (Thule Style) */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 28px;
}

.product-card {
  background: #ffffff;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform var(--transition-fast), box-shadow var(--transition-fast), border-color var(--transition-fast);
  position: relative;
}

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

.product-card-top {
  position: relative;
  background: radial-gradient(circle, #f9fafb 0%, #f3f4f6 100%);
  padding: 36px 24px 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 260px;
  overflow: hidden;
}

.product-badges {
  position: absolute;
  top: 16px;
  left: 16px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  z-index: 5;
}

.badge-tag {
  font-size: 0.72rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: var(--radius-pill);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.badge-tag.badge-bestseller {
  background: var(--brand-dark);
  color: #ffffff;
}

.badge-tag.badge-aero {
  background: var(--brand-red-light);
  color: var(--brand-red);
}

.product-card-img {
  width: 90%;
  height: 180px;
  object-fit: contain;
  transition: transform 0.4s ease, opacity 0.25s ease;
  filter: drop-shadow(0 15px 25px rgba(0,0,0,0.12));
}

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

/* Card Swatches */
.card-color-swatches {
  position: absolute;
  bottom: 12px;
  left: 16px;
  display: flex;
  gap: 8px;
  z-index: 5;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(4px);
  padding: 4px 8px;
  border-radius: var(--radius-pill);
  border: 1px solid var(--border-light);
}

.card-swatch-btn {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 1.5px solid #d1d5db;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.card-swatch-btn.active {
  border-color: var(--brand-red);
  transform: scale(1.15);
}

.card-swatch-black { background: #111; }
.card-swatch-white { background: #fff; }

.compare-checkbox-wrap {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 5;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(4px);
  padding: 4px 10px;
  border-radius: var(--radius-pill);
  border: 1px solid var(--border-light);
  font-size: 0.78rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 6px;
}

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

.product-series {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 4px;
}

.product-card-title {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--brand-dark);
  letter-spacing: -0.3px;
  margin-bottom: 12px;
}

.product-card-title a:hover {
  color: var(--brand-red);
}

/* Key Spec Grid */
.card-specs-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-bottom: 20px;
  padding: 12px;
  background: var(--bg-secondary);
  border-radius: var(--radius-md);
  font-size: 0.82rem;
}

.card-spec-row {
  display: flex;
  flex-direction: column;
}

.card-spec-lbl {
  color: var(--text-muted);
  font-size: 0.72rem;
  text-transform: uppercase;
}

.card-spec-val {
  font-weight: 700;
  color: var(--text-primary);
}

.product-card-footer {
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding-top: 16px;
  border-top: 1px solid var(--border-light);
}

.card-price-group {
  display: flex;
  flex-direction: column;
}

.card-price-lbl {
  font-size: 0.72rem;
  color: var(--text-muted);
  text-transform: uppercase;
}

.card-price-val {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--brand-dark);
  font-family: var(--font-mono);
}

/* ==========================================================================
   STICKY COMPARISON BAR (THULE STYLE)
   ========================================================================== */
.comparison-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--bg-dark);
  color: #ffffff;
  padding: 16px 0;
  z-index: 999;
  box-shadow: 0 -8px 24px rgba(0, 0, 0, 0.25);
  transform: translateY(100%);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.comparison-bar.show {
  transform: translateY(0);
}

.comparison-bar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

.compare-items-preview {
  display: flex;
  align-items: center;
  gap: 16px;
}

.compare-slot {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--bg-dark-accent);
  padding: 6px 12px;
  border-radius: var(--radius-md);
  font-size: 0.85rem;
  border: 1px solid var(--border-dark);
}

.compare-slot img {
  width: 36px;
  height: 24px;
  object-fit: contain;
}

.compare-slot .remove-compare-btn {
  background: none;
  color: #9ca3af;
  font-size: 1.1rem;
  line-height: 1;
  padding: 0 2px;
}
.compare-slot .remove-compare-btn:hover {
  color: var(--brand-red);
}

/* Modal Comparison Table */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(6px);
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.modal-overlay.show {
  display: flex;
  animation: fadeIn 0.25s ease;
}

.modal-container {
  background: #ffffff;
  border-radius: var(--radius-lg);
  max-width: 900px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: var(--shadow-xl);
  position: relative;
  padding: 36px;
}

.modal-close-btn {
  position: absolute;
  top: 20px;
  right: 20px;
  background: var(--bg-secondary);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--text-primary);
  transition: all var(--transition-fast);
}
.modal-close-btn:hover {
  background: var(--brand-red);
  color: #fff;
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 24px;
}

.comparison-table th, .comparison-table td {
  padding: 14px 16px;
  text-align: left;
  border-bottom: 1px solid var(--border-light);
  font-size: 0.92rem;
}

.comparison-table th {
  background: var(--bg-secondary);
  font-weight: 700;
  color: var(--text-secondary);
  text-transform: uppercase;
  font-size: 0.8rem;
  letter-spacing: 0.5px;
}

.comparison-table tr:hover td {
  background: #fafafa;
}

/* ==========================================================================
   PRODUCT DETAIL PAGE (THULE STYLE)
   ========================================================================== */
.product-detail-hero {
  padding: 40px 0 80px;
}

.product-detail-layout {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 50px;
  align-items: start;
}

.detail-gallery-sticky {
  position: sticky;
  top: 100px;
}

.detail-main-img-box {
  background: radial-gradient(circle, #f9fafb 0%, #f1f3f5 100%);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-light);
  padding: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 420px;
  position: relative;
  overflow: hidden;
}

.detail-main-img {
  max-width: 95%;
  max-height: 340px;
  object-fit: contain;
  transition: transform 0.3s ease;
  filter: drop-shadow(0 20px 30px rgba(0,0,0,0.15));
}

.detail-thumbs-strip {
  display: flex;
  gap: 12px;
  margin-top: 16px;
  overflow-x: auto;
  padding-bottom: 4px;
}

.detail-thumb {
  width: 90px;
  height: 68px;
  border-radius: var(--radius-md);
  border: 2px solid var(--border-medium);
  background: var(--bg-secondary);
  padding: 4px;
  cursor: pointer;
  transition: all var(--transition-fast);
  flex-shrink: 0;
}

.detail-thumb.active,
.detail-thumb:hover {
  border-color: var(--brand-red);
  transform: translateY(-2px);
}

.detail-thumb img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* Product Info Box */
.detail-info-box {
  display: flex;
  flex-direction: column;
}

.detail-brand-badge {
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--brand-red);
  text-transform: uppercase;
  margin-bottom: 8px;
}

.detail-title {
  font-size: clamp(2rem, 3.5vw, 2.7rem);
  font-weight: 800;
  letter-spacing: -1px;
  color: var(--brand-dark);
  line-height: 1.15;
  margin-bottom: 12px;
}

.detail-subtitle {
  font-size: 1.05rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 24px;
}

/* Detail Color Selector */
.detail-color-selector {
  margin-bottom: 28px;
  padding: 16px 20px;
  background: var(--bg-secondary);
  border-radius: var(--radius-md);
}

.color-picker-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
  font-size: 0.88rem;
  font-weight: 700;
}

.detail-color-options {
  display: flex;
  gap: 16px;
}

.color-option-card {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 16px;
  border-radius: var(--radius-md);
  border: 1.5px solid var(--border-medium);
  background: #ffffff;
  cursor: pointer;
  transition: all var(--transition-fast);
  font-weight: 600;
  font-size: 0.88rem;
}

.color-option-card.active {
  border-color: var(--brand-red);
  box-shadow: 0 0 0 2px var(--brand-red-light);
  color: var(--brand-red);
}

.color-circle {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 1px solid #d1d5db;
}

/* Key Highlights Bullets */
.detail-key-highlights {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 32px;
}

.highlight-card {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 16px;
  border-radius: var(--radius-md);
  background: #ffffff;
  border: 1px solid var(--border-light);
}

.highlight-card svg {
  color: var(--brand-red);
  flex-shrink: 0;
  margin-top: 2px;
}

.highlight-card h4 {
  font-size: 0.9rem;
  font-weight: 700;
  margin-bottom: 4px;
}

.highlight-card p {
  font-size: 0.8rem;
  color: var(--text-secondary);
  line-height: 1.4;
}

/* Buy & Inquiry Box */
.detail-action-card {
  background: var(--bg-dark);
  color: #ffffff;
  padding: 24px;
  border-radius: var(--radius-lg);
  margin-bottom: 32px;
}

.action-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.action-price-title {
  font-size: 0.8rem;
  color: #9ca3af;
  text-transform: uppercase;
}

.action-price-big {
  font-size: 1.8rem;
  font-weight: 800;
  font-family: var(--font-mono);
  color: #fff;
}

.action-btn-stack {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.marketplace-buttons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.btn-trendyol {
  background: #f27a1a;
  color: #fff;
  font-weight: 700;
}
.btn-trendyol:hover {
  background: #d8660e;
}

.btn-amazon {
  background: #ff9900;
  color: #111;
  font-weight: 700;
}
.btn-amazon:hover {
  background: #e68a00;
}

.btn-whatsapp {
  background: #25d366;
  color: #fff;
  font-weight: 700;
}
.btn-whatsapp:hover {
  background: #1ebc59;
}

/* ==========================================================================
   FEATURE & TECHNOLOGY SPOTLIGHT (THULE STYLE)
   ========================================================================== */
.section-padding {
  padding: 80px 0;
}

.section-padding-dark {
  padding: 80px 0;
  background: var(--bg-dark);
  color: #ffffff;
}

.section-header {
  text-align: center;
  max-width: 750px;
  margin: 0 auto 56px;
}

.section-header.left-aligned {
  text-align: left;
  margin: 0 0 40px;
}

.section-subtitle {
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--brand-red);
  margin-bottom: 12px;
}

.section-title {
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 800;
  letter-spacing: -1px;
  line-height: 1.15;
  color: var(--brand-dark);
}

.section-padding-dark .section-title {
  color: #ffffff;
}

.section-desc {
  font-size: 1.05rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-top: 14px;
}

.section-padding-dark .section-desc {
  color: #9ca3af;
}

/* Feature 2-Col Split */
.feature-split-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-bottom: 80px;
}

.feature-split-row.reverse {
  direction: rtl;
}
.feature-split-row.reverse > * {
  direction: ltr;
}

.feature-split-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}

.feature-split-img img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.feature-split-img:hover img {
  transform: scale(1.03);
}

.feature-check-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 24px;
}

.feature-check-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.feature-check-item svg {
  color: var(--brand-red);
  margin-top: 4px;
  flex-shrink: 0;
}

/* Feature 3-Col Cards */
.feature-cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 28px;
}

.tech-card {
  background: var(--bg-secondary);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: transform var(--transition-fast), box-shadow var(--transition-fast);
}

.tech-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--border-medium);
}

.section-padding-dark .tech-card {
  background: var(--bg-dark-card);
  border-color: var(--border-dark);
}

.tech-icon-wrap {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-md);
  background: var(--brand-red-light);
  color: var(--brand-red);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.section-padding-dark .tech-icon-wrap {
  background: rgba(225, 29, 72, 0.15);
}

.tech-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.tech-card p {
  color: var(--text-secondary);
  font-size: 0.92rem;
  line-height: 1.6;
}

.section-padding-dark .tech-card p {
  color: #9ca3af;
}

/* ==========================================================================
   CORPORATE, DEALERSHIP, BLOG & CONTACT PAGES
   ========================================================================== */

/* Corporate Stats Banner */
.stats-banner-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  background: var(--bg-dark);
  color: #ffffff;
  padding: 48px;
  border-radius: var(--radius-lg);
  margin-top: 40px;
}

.stat-box {
  text-align: center;
}

.stat-box .number {
  font-size: 2.8rem;
  font-weight: 900;
  color: var(--brand-red);
  font-family: var(--font-mono);
  line-height: 1;
}

.stat-box .label {
  font-size: 0.88rem;
  color: #9ca3af;
  margin-top: 8px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Dealership B2B Page */
.dealership-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 50px;
  align-items: start;
}

.b2b-form-card {
  background: #ffffff;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-lg);
  padding: 36px;
}

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

.form-group-full {
  margin-bottom: 16px;
}

.form-textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--border-medium);
  border-radius: var(--radius-md);
  background: var(--bg-secondary);
  font-family: inherit;
  resize: vertical;
  min-height: 110px;
}

/* Blog Grid */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 32px;
}

.blog-card {
  background: #ffffff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-light);
  transition: all var(--transition-fast);
  display: flex;
  flex-direction: column;
}

.blog-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.blog-card-img {
  height: 220px;
  overflow: hidden;
  position: relative;
}

.blog-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.blog-card:hover .blog-card-img img {
  transform: scale(1.05);
}

.blog-card-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.blog-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.blog-meta .tag {
  color: var(--brand-red);
  font-weight: 700;
}

.blog-card-title {
  font-size: 1.25rem;
  font-weight: 800;
  line-height: 1.3;
  margin-bottom: 12px;
}

.blog-card-title a:hover {
  color: var(--brand-red);
}

.blog-card-desc {
  font-size: 0.92rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 20px;
}

/* Contact Page Grid */
.contact-layout-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 48px;
}

.contact-info-card {
  background: var(--bg-dark);
  color: #ffffff;
  border-radius: var(--radius-lg);
  padding: 40px;
}

.contact-info-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-top: 32px;
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.contact-icon-circle {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--bg-dark-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--brand-red);
  flex-shrink: 0;
}

/* ==========================================================================
   FOOTER (THULE STYLE)
   ========================================================================== */
.site-footer {
  background: var(--bg-dark);
  color: #9ca3af;
  padding: 80px 0 32px;
  border-top: 1px solid var(--border-dark);
}

.footer-top-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.2fr;
  gap: 48px;
  margin-bottom: 60px;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-logo img {
  height: 44px;
  filter: brightness(0) invert(1);
}

.footer-brand-desc {
  font-size: 0.92rem;
  line-height: 1.6;
  max-width: 360px;
  color: #9ca3af;
}

.footer-social-links {
  display: flex;
  gap: 12px;
  margin-top: 8px;
}

.social-btn {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--bg-dark-accent);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-fast);
}
.social-btn:hover {
  background: var(--brand-red);
  transform: translateY(-2px);
}

.footer-col-title {
  font-size: 0.92rem;
  font-weight: 700;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 20px;
}

.footer-nav-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-size: 0.9rem;
}

.footer-nav-list a {
  color: #9ca3af;
  transition: color var(--transition-fast);
}
.footer-nav-list a:hover {
  color: #ffffff;
  padding-left: 4px;
}

.footer-newsletter-form {
  display: flex;
  gap: 8px;
  margin-top: 12px;
}

.newsletter-input {
  background: var(--bg-dark-accent);
  border: 1px solid var(--border-dark);
  color: #fff;
  padding: 10px 14px;
  border-radius: var(--radius-sm);
  font-size: 0.88rem;
  flex-grow: 1;
}

.footer-bottom {
  padding-top: 32px;
  border-top: 1px solid var(--border-dark);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.82rem;
}

/* ==========================================================================
   RESPONSIVE BREAKPOINTS
   ========================================================================== */
@media (max-width: 1024px) {
  .category-layout {
    grid-template-columns: 1fr;
  }

  .filter-sidebar {
    position: static;
  }

  .product-detail-layout {
    grid-template-columns: 1fr;
  }

  .detail-gallery-sticky {
    position: static;
  }

  .feature-split-row,
  .dealership-grid,
  .contact-layout-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .footer-top-grid {
    grid-template-columns: 1fr 1fr;
  }

  .stats-banner-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .top-bar {
    display: none;
  }

  .main-nav {
    display: none;
  }

  .mobile-menu-btn {
    display: block;
  }

  .hero-thule {
    min-height: 75vh;
  }

  .hero-stats {
    flex-wrap: wrap;
    gap: 20px;
  }

  .product-grid {
    grid-template-columns: 1fr;
  }

  .footer-top-grid {
    grid-template-columns: 1fr;
  }

  .stats-banner-grid {
    grid-template-columns: 1fr;
    padding: 24px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .marketplace-buttons {
    grid-template-columns: 1fr;
  }
}

/* Mobile Drawer */
.mobile-nav-drawer {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.75);
  z-index: 2000;
  display: none;
  backdrop-filter: blur(4px);
}

.mobile-nav-drawer.open {
  display: block;
}

.mobile-drawer-content {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 85%;
  max-width: 360px;
  background: #ffffff;
  padding: 30px 24px;
  display: flex;
  flex-direction: column;
  box-shadow: -4px 0 20px rgba(0,0,0,0.2);
  overflow-y: auto;
}

.mobile-drawer-close {
  align-self: flex-end;
  background: none;
  font-size: 1.6rem;
  color: var(--text-primary);
  margin-bottom: 24px;
}

.mobile-nav-links {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 30px;
}

.mobile-nav-links a {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--brand-dark);
  padding: 8px 0;
  border-bottom: 1px solid var(--border-light);
}

.mobile-nav-links a:hover {
  color: var(--brand-red);
}

/* ==========================================================================
   WHATSAPP FLOATING SMART ASSISTANT WIDGET
   ========================================================================== */
.wa-assistant-widget {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 9999;
  font-family: var(--font-sans);
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

.wa-assistant-popup {
  width: 320px;
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 12px 36px rgba(0,0,0,0.18);
  border: 1px solid rgba(0,0,0,0.08);
  overflow: hidden;
  margin-bottom: 14px;
  transform: translateY(20px) scale(0.95);
  opacity: 0;
  visibility: hidden;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  transform-origin: bottom right;
}

.wa-assistant-popup.show {
  transform: translateY(0) scale(1);
  opacity: 1;
  visibility: visible;
}

.wa-popup-header {
  background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
  color: #ffffff;
  padding: 14px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.wa-header-profile {
  display: flex;
  align-items: center;
  gap: 10px;
}

.wa-avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #128c7e;
  font-weight: 800;
  font-size: 1rem;
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
  position: relative;
}

.wa-online-dot {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 10px;
  height: 10px;
  background: #00e676;
  border: 2px solid #ffffff;
  border-radius: 50%;
}

.wa-header-info h4 {
  font-size: 0.92rem;
  font-weight: 700;
  color: #ffffff;
  margin: 0;
}

.wa-header-info p {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.85);
  margin: 2px 0 0 0;
}

.wa-close-btn {
  background: none;
  border: none;
  color: #ffffff;
  font-size: 1.3rem;
  cursor: pointer;
  opacity: 0.8;
  transition: opacity 0.2s;
  padding: 4px;
  line-height: 1;
}

.wa-close-btn:hover {
  opacity: 1;
}

.wa-popup-body {
  padding: 16px;
  background: #ece5dd;
  background-image: radial-gradient(#d4c7b8 1px, transparent 1px);
  background-size: 12px 12px;
}

.wa-bubble-msg {
  background: #ffffff;
  padding: 12px 14px;
  border-radius: 0 12px 12px 12px;
  font-size: 0.84rem;
  line-height: 1.45;
  color: #111827;
  box-shadow: 0 1px 3px rgba(0,0,0,0.1);
  position: relative;
  margin-bottom: 12px;
}

.wa-msg-time {
  display: block;
  text-align: right;
  font-size: 0.68rem;
  color: #6b7280;
  margin-top: 4px;
}

.wa-quick-actions {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.wa-action-btn {
  background: #ffffff;
  border: 1px solid #d1d5db;
  border-radius: 8px;
  padding: 8px 12px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--brand-dark);
  text-align: left;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: all 0.2s ease;
  box-shadow: 0 1px 2px rgba(0,0,0,0.05);
}

.wa-action-btn:hover {
  background: #f3f4f6;
  border-color: #25d366;
  color: #128c7e;
  transform: translateX(2px);
}

.wa-main-chat-btn {
  background: #25d366;
  color: #ffffff !important;
  border: none;
  font-weight: 700;
  justify-content: center;
  gap: 8px;
  padding: 10px 14px;
  box-shadow: 0 4px 12px rgba(37,211,102,0.3);
}

.wa-main-chat-btn:hover {
  background: #1ebc59;
}

.wa-assistant-trigger {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #25d366;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(37,211,102,0.4);
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  border: none;
}

.wa-assistant-trigger:hover {
  transform: scale(1.08);
  background: #1ebc59;
}

.wa-trigger-badge {
  position: absolute;
  top: -2px;
  right: -2px;
  background: var(--brand-red);
  color: #ffffff;
  font-size: 0.7rem;
  font-weight: 800;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #ffffff;
  animation: pulseBadge 2s infinite;
}

@keyframes pulseBadge {
  0% { transform: scale(1); }
  50% { transform: scale(1.15); }
  100% { transform: scale(1); }
}

@media (max-width: 480px) {
  .wa-assistant-widget {
    bottom: 16px;
    right: 16px;
  }
  .wa-assistant-popup {
    width: calc(100vw - 32px);
    right: 0;
  }
}

