/* Biker Lovers - CSS Style Sheet */
/* Design Tokens & Theme Variables */

:root {
  --bg-primary: #0C0C0D;
  --bg-secondary: #17171A;
  --bg-tertiary: #1F1F24;
  --accent-red: #D62229;
  --accent-red-hover: #B21B21;
  --accent-red-light: rgba(214, 34, 41, 0.1);
  --text-primary: #FFFFFF;
  --text-secondary: #9A9A9E;
  --text-muted: #66666E;
  --border-color: #2B2B30;
  --border-color-hover: #404048;
  
  --font-headings: 'Outfit', sans-serif;
  --font-body: 'Inter', sans-serif;
  
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;
  
  --transition-fast: 0.2s ease;
  --transition-normal: 0.3s ease;
}

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

html {
  scroll-behavior: smooth;
  font-family: var(--font-body);
  background-color: var(--bg-primary);
  color: var(--text-primary);
  -webkit-font-smoothing: antialiased;
}

body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

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

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

ul {
  list-style: none;
}

/* Typography & Headings */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-headings);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.text-center { text-align: center; }
.accent-text { color: var(--accent-red); }
.w-full { width: 100%; }

/* Global Layout Container */
.section-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 48px 24px;
}

.section-title {
  font-size: 32px;
  margin-bottom: 32px;
  position: relative;
}

.section-title::after {
  content: '';
  display: block;
  width: 50px;
  height: 3px;
  background-color: var(--accent-red);
  margin-top: 12px;
}

.section-title.text-center::after {
  margin-left: auto;
  margin-right: auto;
}

/* Buttons Component */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all var(--transition-fast);
}

.btn-lg {
  padding: 16px 32px;
  font-size: 16px;
}

.btn-primary {
  background-color: var(--accent-red);
  color: var(--text-primary);
}

.btn-primary:hover {
  background-color: var(--accent-red-hover);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(214, 34, 41, 0.4);
}

.btn-primary:active {
  transform: translateY(0);
}

.btn-secondary {
  border: 1.5px solid var(--accent-red);
  color: var(--text-primary);
}

.btn-secondary:hover {
  background-color: var(--accent-red);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(214, 34, 41, 0.2);
}

.btn-secondary:active {
  transform: translateY(0);
}

/* Badges Component */
.badge {
  display: inline-block;
  padding: 4px 10px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  border-radius: var(--radius-sm);
}

.badge-electric {
  background-color: #2e7d32;
  color: #fff;
}

.badge-license {
  background-color: var(--bg-tertiary);
  border: 1px solid var(--border-color);
  color: var(--text-secondary);
}

.badge-offer {
  background-color: var(--accent-red);
  color: #fff;
}

/* Global Sticky Header */
.global-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background-color: rgba(12, 12, 13, 0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-color);
  transition: background var(--transition-fast);
}

.header-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 16px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  font-family: var(--font-headings);
  font-weight: 800;
  font-size: 20px;
  letter-spacing: -0.01em;
}

.main-nav {
  display: flex;
}

.nav-list {
  display: flex;
  gap: 32px;
}

.nav-list li {
  position: relative;
}

.nav-link {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-secondary);
  padding: 8px 0;
  display: flex;
  align-items: center;
  gap: 4px;
}

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

.arrow-down {
  font-size: 9px;
  vertical-align: middle;
}

/* Navigation Dropdown Menu */
.dropdown-content {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background-color: var(--bg-secondary);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  min-width: 240px;
  box-shadow: 0 8px 24px var(--shadow-color);
  padding: 8px 0;
  z-index: 105;
}

.dropdown-content a {
  display: block;
  padding: 12px 20px;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-secondary);
}

.dropdown-content a:hover {
  background-color: var(--bg-tertiary);
  color: var(--text-primary);
  border-left: 3px solid var(--accent-red);
}

.nav-list li:hover .dropdown-content {
  display: block;
}

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

.compare-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  background-color: var(--bg-secondary);
  border: 1px solid var(--border-color);
  padding: 8px 16px;
  border-radius: var(--radius-sm);
  cursor: pointer;
  position: relative;
  transition: all var(--transition-fast);
}

.compare-btn:hover {
  border-color: var(--border-color-hover);
  color: var(--accent-red);
}

.compare-badge {
  background-color: var(--accent-red);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  padding: 2px 6px;
  border-radius: 10px;
}

.lang-toggle {
  background-color: var(--bg-secondary);
  border: 1px solid var(--border-color);
  padding: 8px 12px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 12px;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.lang-toggle:hover {
  border-color: var(--border-color-hover);
}

/* SPA View Sections Management */
.view-section {
  display: none;
  animation: fadeIn 0.4s ease forwards;
}

.view-section.active {
  display: block;
}

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

/* 1. HOME VIEW STYLES */

/* Hero Carousel */
.hero-carousel {
  position: relative;
  height: 500px;
  overflow: hidden;
  background-color: var(--bg-secondary);
}

.carousel-track {
  display: flex;
  height: 100%;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.carousel-slide {
  min-width: 100%;
  height: 100%;
  position: relative;
  background-size: cover;
  background-position: center;
}

.carousel-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, rgba(12,12,13,0.95) 0%, rgba(12,12,13,0.7) 40%, rgba(12,12,13,0.3) 100%);
  display: flex;
  align-items: center;
}

.carousel-content {
  max-width: 600px;
  margin-left: 10%;
  padding: 24px;
}

.carousel-content h1 {
  font-size: 44px;
  font-weight: 800;
  margin-bottom: 16px;
  line-height: 1.1;
}

.carousel-content p {
  font-size: 16px;
  color: var(--text-secondary);
  margin-bottom: 24px;
  line-height: 1.5;
}

.carousel-control {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  background-color: rgba(23, 23, 26, 0.6);
  border: 1px solid var(--border-color);
  border-radius: 50%;
  font-size: 16px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-fast);
  z-index: 10;
}

.carousel-control:hover {
  background-color: var(--accent-red);
  border-color: var(--accent-red);
}

.carousel-control.prev { left: 24px; }
.carousel-control.next { right: 24px; }

.carousel-indicators {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 12px;
  z-index: 10;
}

.indicator-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: var(--text-muted);
  cursor: pointer;
  transition: all var(--transition-fast);
}

.indicator-dot.active {
  background-color: var(--accent-red);
  width: 24px;
  border-radius: 4px;
}

/* Category Grid */
.category-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
}

.category-card {
  height: 160px;
  border-radius: var(--radius-md);
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: flex-end;
  padding: 24px;
  cursor: pointer;
  overflow: hidden;
  position: relative;
  border: 1px solid var(--border-color);
  transition: all var(--transition-normal);
}

.category-card h3 {
  font-size: 18px;
  font-weight: 700;
  z-index: 2;
  transition: transform var(--transition-normal);
}

.category-card:hover {
  border-color: var(--accent-red);
  box-shadow: 0 8px 24px rgba(0,0,0,0.6);
}

.category-card:hover h3 {
  transform: translateY(-4px);
}

/* Split Featured Section */
.featured-highlight-bg {
  background-color: var(--bg-secondary);
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
  margin-top: 48px;
}

.featured-highlight {
  display: flex;
  align-items: center;
  gap: 48px;
}

.featured-image-container {
  flex: 1;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border-color);
}

.featured-image-container img {
  width: 100%;
  display: block;
  transition: transform var(--transition-normal);
}

.featured-image-container:hover img {
  transform: scale(1.03);
}

.featured-info {
  flex: 1;
}

.featured-info h2 {
  font-size: 36px;
  margin: 16px 0;
}

.featured-info p {
  color: var(--text-secondary);
  margin-bottom: 24px;
  font-size: 16px;
}

.feat-highlights-list {
  margin-bottom: 32px;
}

.feat-highlights-list li {
  margin-bottom: 12px;
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.bullet {
  color: var(--accent-red);
  font-weight: bold;
}

.featured-actions {
  display: flex;
  gap: 16px;
}

/* Utility Action Bar */
.utility-icon-bar {
  border-bottom: 1px solid var(--border-color);
  background-color: var(--bg-primary);
}

.utility-flex {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 32px 0;
}

.utility-item {
  flex: 1;
  text-align: center;
  padding: 24px;
  border-radius: var(--radius-md);
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.utility-item:hover {
  background-color: var(--bg-secondary);
  border-color: var(--border-color);
  transform: translateY(-4px);
}

.utility-icon {
  font-size: 32px;
  margin-bottom: 16px;
}

.utility-item h4 {
  font-size: 16px;
  margin-bottom: 8px;
}

.utility-item p {
  font-size: 12px;
  color: var(--text-secondary);
}

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

.campaign-card {
  background-color: var(--bg-secondary);
  border: 1px solid var(--border-color);
  padding: 36px;
  border-radius: var(--radius-md);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transition: all var(--transition-fast);
}

.campaign-card:hover {
  border-color: var(--border-color-hover);
  box-shadow: 0 4px 16px rgba(0,0,0,0.4);
}

.campaign-icon {
  font-size: 40px;
  margin-bottom: 20px;
}

.campaign-card h3 {
  font-size: 20px;
  margin-bottom: 16px;
}

.campaign-card p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 24px;
  flex-grow: 1;
}

/* Map Section */
.maps-section {
  background-color: var(--bg-secondary);
  border-top: 1px solid var(--border-color);
}

.maps-container {
  display: flex;
  align-items: center;
  gap: 48px;
}

.maps-info {
  flex: 1;
}

.maps-info h2 {
  font-size: 32px;
  margin-bottom: 16px;
}

.maps-info p {
  color: var(--text-secondary);
  margin-bottom: 24px;
}

.contact-details-list p {
  font-size: 14px;
  margin-bottom: 12px;
  color: var(--text-primary);
}

.maps-iframe-wrapper {
  flex: 1;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border-color);
  box-shadow: 0 8px 24px rgba(0,0,0,0.5);
}

/* 2. CATALOG VIEW STYLES */
.catalog-hero {
  background-color: var(--bg-secondary);
  border-bottom: 1px solid var(--border-color);
}

.catalog-hero h1 {
  font-size: 36px;
  margin-bottom: 12px;
}

.catalog-hero p {
  color: var(--text-secondary);
  font-size: 15px;
}

.catalog-split-container {
  display: flex;
  gap: 32px;
  align-items: flex-start;
  padding-top: 32px;
}

/* Sidebar */
.catalog-sidebar {
  width: 280px;
  background-color: var(--bg-secondary);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 24px;
  position: sticky;
  top: 100px;
}

.catalog-sidebar h3 {
  font-size: 18px;
  margin-bottom: 20px;
  border-bottom: 1px solid var(--border-color);
  padding-bottom: 12px;
}

.filter-group {
  margin-bottom: 24px;
}

.filter-group-label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-secondary);
  margin-bottom: 12px;
}

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

.checkbox-container {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  cursor: pointer;
}

.checkbox-container input {
  width: 16px;
  height: 16px;
  accent-color: var(--accent-red);
  cursor: pointer;
}

/* Custom form select controls */
.form-control {
  width: 100%;
  background-color: var(--bg-tertiary);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  padding: 12px;
  font-size: 13px;
  transition: border-color var(--transition-fast);
}

.form-control:focus {
  border-color: var(--accent-red);
}

.price-range-container input[type="range"] {
  width: 100%;
  accent-color: var(--accent-red);
}

.price-slider-values {
  display: flex;
  justify-content: space-between;
  font-size: 11px;
  color: var(--text-secondary);
  margin-top: 8px;
}

/* Cards Grid */
.catalog-grid-wrapper {
  flex-grow: 1;
}

.catalog-results-header {
  margin-bottom: 16px;
  font-size: 14px;
  color: var(--text-secondary);
}

.product-cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
}

.product-card {
  background-color: var(--bg-secondary);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: all var(--transition-normal);
}

.product-card:hover {
  border-color: var(--accent-red);
  transform: translateY(-6px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.6);
}

.card-img-wrapper {
  height: 180px;
  overflow: hidden;
  position: relative;
  background-color: #000;
}

.card-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-normal);
}

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

.card-badge-overlay {
  position: absolute;
  top: 12px;
  left: 12px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

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

.card-title-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 8px;
}

.card-title-row h3 {
  font-size: 18px;
}

.card-price {
  font-family: var(--font-headings);
  font-size: 16px;
  font-weight: 700;
}

.card-desc {
  font-size: 12px;
  color: var(--text-secondary);
  line-height: 1.5;
  margin-bottom: 16px;
  flex-grow: 1;
}

.card-specs {
  display: flex;
  gap: 16px;
  border-top: 1px solid var(--border-color);
  padding-top: 12px;
  margin-bottom: 16px;
}

.card-spec-item {
  display: flex;
  flex-direction: column;
  font-size: 10px;
  color: var(--text-secondary);
}

.card-spec-item strong {
  font-size: 11px;
  color: var(--text-primary);
  margin-top: 2px;
}

.card-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.card-compare-chk {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 500;
  cursor: pointer;
}

.card-compare-chk input {
  width: 14px;
  height: 14px;
  accent-color: var(--accent-red);
}

/* FAQ segment */
.faq-section {
  border-top: 1px solid var(--border-color);
  margin-top: 48px;
}

.faq-accordion {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item {
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  background-color: var(--bg-secondary);
  overflow: hidden;
}

.faq-question {
  padding: 18px 24px;
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background var(--transition-fast);
}

.faq-question:hover {
  background-color: var(--bg-tertiary);
}

.faq-answer {
  padding: 0 24px 18px 24px;
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.6;
  display: none;
}

.faq-item.active .faq-answer {
  display: block;
}

/* 3. PRODUCT DETAIL VIEW STYLES */

/* Sticky detail bar */
.detail-sticky-bar {
  position: sticky;
  top: 72px; /* right below main header */
  z-index: 90;
  background-color: var(--bg-secondary);
  border-bottom: 1px solid var(--border-color);
  box-shadow: 0 4px 12px var(--shadow-color);
  animation: slideDown var(--transition-normal);
}

@keyframes slideDown {
  from { transform: translateY(-100%); }
  to { transform: translateY(0); }
}

.sticky-flex {
  padding: 12px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.detail-sticky-bar h2 {
  font-size: 20px;
}

.detail-price-accent {
  font-family: var(--font-headings);
  font-size: 18px;
  font-weight: 700;
  color: var(--accent-red);
  margin-left: 12px;
}

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

/* Main specs grid */
.detail-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 48px;
  padding-top: 32px;
}

.detail-main-img-wrapper {
  background-color: #0d0d0e;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-color);
  height: 380px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.detail-main-img-wrapper img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.color-selector-panel {
  margin-top: 24px;
  padding: 20px;
  background-color: var(--bg-secondary);
  border-radius: var(--radius-md);
  border: 1px solid var(--border-color);
}

.color-selector-panel h4 {
  font-size: 13px;
  text-transform: uppercase;
  color: var(--text-secondary);
  margin-bottom: 12px;
}

.color-swatches {
  display: flex;
  gap: 12px;
  margin-bottom: 12px;
}

.swatch {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all var(--transition-fast);
}

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

.swatch.active {
  border-color: #fff;
  box-shadow: 0 0 0 1px var(--accent-red);
}

.color-name-text {
  font-size: 13px;
  font-weight: 500;
}

.detail-info {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.detail-badge-row {
  display: flex;
  gap: 10px;
  margin-bottom: 16px;
}

.detail-title-name {
  font-size: 44px;
  margin-bottom: 12px;
}

.detail-price-row {
  margin-bottom: 24px;
}

.detail-price-main {
  font-family: var(--font-headings);
  font-size: 28px;
  font-weight: 700;
}

.detail-price-subsidy {
  font-size: 14px;
  color: #2e7d32;
  font-weight: 600;
  margin-left: 12px;
}

.detail-desc {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 32px;
}

.detail-quick-specs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 32px;
}

.spec-card {
  background-color: var(--bg-secondary);
  border: 1px solid var(--border-color);
  padding: 16px;
  border-radius: var(--radius-md);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.spec-card-icon {
  font-size: 20px;
  margin-bottom: 6px;
}

.spec-card-label {
  font-size: 10px;
  color: var(--text-secondary);
  text-transform: uppercase;
  margin-bottom: 2px;
}

.spec-card strong {
  font-size: 13px;
}

.detail-action-buttons {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* Tabs specs sheets */
.spec-sheet-container {
  border-top: 1px solid var(--border-color);
  margin-top: 48px;
}

.tabs-header {
  display: flex;
  gap: 12px;
  border-bottom: 1px solid var(--border-color);
  margin-bottom: 24px;
}

.tab-btn {
  padding: 14px 20px;
  font-weight: 600;
  font-size: 14px;
  color: var(--text-secondary);
  cursor: pointer;
  position: relative;
  transition: all var(--transition-fast);
}

.tab-btn:hover {
  color: var(--text-primary);
}

.tab-btn.active {
  color: var(--accent-red);
}

.tab-btn.active::after {
  content: '';
  display: block;
  width: 100%;
  height: 3px;
  background-color: var(--accent-red);
  position: absolute;
  bottom: -1px;
  left: 0;
}

.tab-panel {
  display: none;
}

.tab-panel.active {
  display: block;
  animation: fadeIn 0.4s ease;
}

.spec-table {
  width: 100%;
  border-collapse: collapse;
}

.spec-table tr {
  border-bottom: 1px solid var(--border-color);
}

.spec-table tr:nth-child(even) {
  background-color: rgba(23, 23, 26, 0.3);
}

.spec-table td {
  padding: 16px 24px;
  font-size: 13px;
}

.spec-label {
  font-weight: 600;
  color: var(--text-secondary);
  width: 30%;
}

.spec-val {
  color: var(--text-primary);
}

/* 4. COMPARE VIEW STYLES */
.comparison-wrapper {
  padding-top: 32px;
}

.comparison-toolbar {
  display: flex;
  justify-content: flex-end;
  margin-bottom: 24px;
}

.switch-container {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
}

.switch-container input {
  display: none;
}

.switch-slider {
  width: 44px;
  height: 22px;
  background-color: var(--bg-tertiary);
  border: 1px solid var(--border-color);
  border-radius: 20px;
  position: relative;
  transition: all var(--transition-fast);
}

.switch-slider::after {
  content: '';
  display: block;
  width: 16px;
  height: 16px;
  background-color: var(--text-secondary);
  border-radius: 50%;
  position: absolute;
  top: 2px;
  left: 3px;
  transition: all var(--transition-fast);
}

.switch-container input:checked + .switch-slider {
  background-color: var(--accent-red-light);
  border-color: var(--accent-red);
}

.switch-container input:checked + .switch-slider::after {
  background-color: var(--accent-red);
  transform: translateX(20px);
}

.switch-label {
  font-size: 13px;
  font-weight: 500;
}

.compare-matrix-scroll-wrapper {
  overflow-x: auto;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-color);
  background-color: var(--bg-secondary);
}

.compare-matrix-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 600px;
}

.compare-matrix-table tr {
  border-bottom: 1px solid var(--border-color);
}

.compare-matrix-table td {
  padding: 16px 20px;
  font-size: 13px;
  text-align: center;
  width: 25%;
}

.compare-matrix-table td:first-child {
  font-weight: 600;
  text-align: left;
  color: var(--text-secondary);
}

.compare-matrix-header-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.compare-thumb {
  height: 90px;
  object-fit: contain;
}

.compare-item-name {
  font-size: 15px;
  font-weight: 700;
}

.compare-btn-remove {
  font-size: 11px;
  color: var(--accent-red);
  cursor: pointer;
  font-weight: 600;
  text-transform: uppercase;
}

.compare-btn-remove:hover {
  text-decoration: underline;
}

.compare-empty-state {
  display: none;
  text-align: center;
  padding: 64px 32px;
  background-color: var(--bg-secondary);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  max-width: 600px;
  margin: 0 auto;
}

.compare-empty-state p {
  color: var(--text-secondary);
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 24px;
}

/* Highlight row for comparison */
.compare-matrix-table tr.diff-row {
  background-color: rgba(255, 235, 59, 0.03);
}

.compare-matrix-table tr.diff-row td:first-child {
  color: #fbc02d;
}

/* 5. SERVICES VIEW STYLES */
.services-jump-menu {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin-bottom: 32px;
}

.jump-link {
  background-color: var(--bg-secondary);
  border: 1px solid var(--border-color);
  padding: 12px 20px;
  border-radius: var(--radius-sm);
  font-size: 13px;
  font-weight: 600;
  transition: all var(--transition-fast);
}

.jump-link:hover {
  border-color: var(--accent-red);
  color: var(--accent-red);
}

.services-block {
  padding: 64px 0;
  border-bottom: 1px solid var(--border-color);
}

.services-block.light-bg {
  background-color: var(--bg-secondary);
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
}

.services-flex {
  display: flex;
  align-items: center;
  gap: 64px;
}

.services-info-block {
  flex: 1.2;
}

.services-info-block h2 {
  font-size: 32px;
  margin-bottom: 20px;
}

.services-info-block p {
  color: var(--text-secondary);
  line-height: 1.6;
  font-size: 15px;
  margin-bottom: 20px;
}

.warning-text {
  color: #ff9800 !important;
  font-weight: 500;
  font-size: 13px !important;
}

.services-form-block {
  flex: 1;
}

/* Forms layout */
.booking-form {
  background-color: var(--bg-secondary);
  border: 1px solid var(--border-color);
  padding: 32px;
  border-radius: var(--radius-md);
  box-shadow: 0 4px 16px rgba(0,0,0,0.4);
}

.light-bg .booking-form {
  background-color: var(--bg-primary);
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--text-secondary);
  margin-bottom: 8px;
}

/* Success MSG */
.form-success-msg {
  display: none;
  background-color: rgba(46, 125, 50, 0.15);
  border: 1px solid #2e7d32;
  color: #4caf50;
  padding: 16px;
  border-radius: var(--radius-sm);
  font-size: 13px;
  line-height: 1.5;
  margin-top: 16px;
  text-align: center;
}

/* Finance Calculator widget */
.calculator-results-box {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 32px;
  text-align: center;
  margin-top: 24px;
}

.monthly-payment-display {
  font-family: var(--font-headings);
  font-size: 48px;
  font-weight: 800;
  color: var(--accent-red);
  margin: 12px 0;
}

.interest-rate-info {
  font-size: 11px !important;
  color: var(--text-secondary) !important;
  margin-bottom: 0 !important;
}

.calculator-card {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  padding: 32px;
  border-radius: var(--radius-md);
  box-shadow: 0 4px 16px rgba(0,0,0,0.4);
}

.calc-slider-group {
  margin-bottom: 24px;
}

.calc-slider-group label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  color: var(--text-secondary);
  margin-bottom: 8px;
}

.calc-range {
  width: 100%;
  accent-color: var(--accent-red);
}

.slider-val-readout {
  font-size: 14px;
  font-weight: 600;
  text-align: right;
  margin-top: 6px;
}

/* 6. CONTACT VIEW STYLES */
.contact-split {
  display: flex;
  gap: 48px;
  align-items: flex-start;
}

.contact-card-info {
  flex: 1;
  background-color: var(--bg-secondary);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 40px;
}

.contact-card-info h2 {
  font-size: 28px;
  margin-bottom: 16px;
}

.contact-card-info p {
  color: var(--text-secondary);
  margin-bottom: 24px;
}

.contact-form-wrapper {
  flex: 1.2;
}

.contact-map-full {
  margin-top: 64px;
  height: 400px;
  border-top: 1px solid var(--border-color);
}

/* General Placeholder Content style */
.py-20 {
  padding-top: 80px;
  padding-bottom: 80px;
}

.placeholder-text {
  font-size: 15px;
  color: var(--text-secondary);
}

/* GLOBAL FOOTER STYLES */
.global-footer {
  background-color: #060607;
  border-top: 1px solid var(--border-color);
  margin-top: auto;
}

.footer-container {
  display: flex;
  justify-content: space-between;
  gap: 48px;
  padding-top: 64px;
  padding-bottom: 64px;
}

.footer-col {
  flex: 1;
}

.brand-col h3 {
  font-size: 20px;
  margin-bottom: 16px;
}

.brand-col p {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.6;
}

.footer-col h4 {
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-primary);
  margin-bottom: 20px;
}

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

.footer-links a {
  font-size: 13px;
  color: var(--text-secondary);
}

.footer-links a:hover {
  color: var(--accent-red);
}

.footer-col p {
  font-size: 13px;
  color: var(--text-secondary);
  margin-bottom: 12px;
}

.footer-bottom {
  border-top: 1px solid var(--border-color);
  padding: 24px 0;
  font-size: 12px;
  color: var(--text-muted);
}

.footer-bottom-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-legal-links a {
  color: var(--text-muted);
  margin: 0 8px;
}

.footer-legal-links a:hover {
  color: var(--accent-red);
}

/* Responsive Breakpoints */
@media (max-width: 992px) {
  .header-container {
    flex-direction: column;
    gap: 16px;
  }
  
  .nav-list {
    gap: 16px;
  }
  
  .carousel-content {
    margin-left: 5%;
  }
  
  .featured-highlight {
    flex-direction: column;
    gap: 32px;
  }
  
  .maps-container {
    flex-direction: column;
    gap: 32px;
  }
  
  .catalog-split-container {
    flex-direction: column;
  }
  
  .catalog-sidebar {
    width: 100%;
    position: static;
  }
  
  .detail-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  
  .services-flex {
    flex-direction: column;
    gap: 32px;
  }
  
  .contact-split {
    flex-direction: column;
  }
}

@media (max-width: 768px) {
  .carousel-content h1 {
    font-size: 28px;
  }
  
  .carousel-content p {
    font-size: 14px;
  }
  
  .nav-list {
    flex-wrap: wrap;
    justify-content: center;
  }
  
  .utility-flex {
    flex-direction: column;
    gap: 12px;
  }
  
  .footer-container {
    flex-direction: column;
    gap: 32px;
  }
  
  .footer-bottom-flex {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }
}
