﻿/* Import Fonts */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&family=Plus+Jakarta+Sans:wght@300;400;500;600;700&display=swap');

/* Color System - Emerald & Navy (Contact & WhatsApp Theme) */
:root {
  --bg-primary: #ffffff; /* Saf beyaz arka plan */
  --bg-secondary: #fafafa; /* Çok açık gri */
  --bg-tertiary: #f4f4f5; /* Açık gri */
  --text-primary: #18181b; /* Koyu çinko */
  --text-secondary: #52525b; /* Orta çinko */
  --text-muted: #a1a1aa; /* Açık çinko */
  --accent-primary: #dc2626; /* Canlı Kırmızı */
  --accent-secondary: #991b1b; /* Koyu Kırmızı / Bordo */
  --whatsapp-color: #25d366; /* WhatsApp Yeşili */
  --accent-glow: rgba(220, 38, 38, 0.08);
  --border-color: #e4e4e7;
  --card-shadow: 0 10px 25px -5px rgba(24, 24, 27, 0.04), 0 1px 3px rgba(0, 0, 0, 0.01);
  --gradient-hero: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
  --transition-speed: 0.3s;
  --bg-header: rgba(255, 255, 255, 0.85);
}

/* Global Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Plus Jakarta Sans', sans-serif;
  scroll-behavior: smooth;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  color: var(--text-primary);
}

body {
  background-color: var(--bg-primary);
  color: var(--text-secondary);
  line-height: 1.6;
  overflow-x: hidden;
  transition: background-color var(--transition-speed), color var(--transition-speed);
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* Header & Nav */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background-color: var(--bg-header);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-color);
  transition: all var(--transition-speed);
}

[data-theme="dark"] header {
  background-color: rgba(17, 26, 32, 0.8);
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 90px;
}

.logo-wrapper {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
}

.logo-img {
  height: 44px;
  width: auto;
  transition: transform var(--transition-speed);
}

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

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

.logo-text {
  font-size: 1.45rem;
  font-weight: 800;
  color: var(--text-primary);
  letter-spacing: -0.5px;
  line-height: 1.1;
}

.logo-slogan {
  font-family: 'Outfit', sans-serif;
  font-size: 0.8rem;
  font-weight: 400;
  font-style: italic;
  color: var(--text-secondary);
  letter-spacing: 0.5px;
  margin-top: 2px;
}

@keyframes sloganPulse {
  0%, 100% { opacity: 0.1; }
  50% { opacity: 1; }
}

.logo-slogan-animated {
  animation: sloganPulse 2s infinite ease-in-out;
  display: inline-block;
}

.nav-links {
  display: flex;
  gap: 1.25rem; /* Reduced from 2.2rem to prevent wrapping and fit elegantly on desktop */
  list-style: none;
  align-items: center;
}

.nav-links a {
  text-decoration: none;
  color: var(--text-secondary);
  font-weight: 600;
  font-size: 0.95rem;
  transition: color var(--transition-speed);
  white-space: nowrap; /* Prevent menu links from wrapping into multiple lines */
}

.nav-links a:hover {
  color: var(--accent-primary);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 1.2rem;
}

.nav-actions .btn-call {
  padding: 0.55rem 1.1rem; /* Scaled down from 0.75rem 1.5rem for a more elegant and smaller profile */
  font-size: 0.85rem; /* Scaled down from default size */
  border-radius: 8px; /* Slightly smaller border radius to match the smaller button size */
}

/* Call buttons */
.btn-whatsapp {
  background-color: var(--whatsapp-color);
  color: #ffffff;
  border: none;
  padding: 0.75rem 1.5rem;
  border-radius: 12px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
  text-decoration: none;
  transition: all var(--transition-speed);
  box-shadow: 0 4px 14px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
  opacity: 0.95;
}

.btn-call {
  background-color: var(--accent-secondary);
  color: #ffffff;
  border: none;
  padding: 0.75rem 1.5rem;
  border-radius: 12px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
  text-decoration: none;
  transition: all var(--transition-speed);
}

.btn-call:hover {
  transform: translateY(-2px);
  opacity: 0.95;
}

/* Hero Section */
.hero {
  padding: 80px 0;
  background: var(--gradient-hero);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.hero-content h1 {
  font-size: 3.2rem;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  letter-spacing: -1px;
}

.hero-content h1 span {
  color: var(--accent-primary);
}

.hero-content p {
  font-size: 1.15rem;
  margin-bottom: 2.5rem;
}

.hero-ctas {
  display: flex;
  gap: 1.5rem;
}

.hero-visual {
  display: flex;
  justify-content: center;
}

.hero-card {
  background: var(--bg-secondary);
  border: 1px solid var(--border-color);
  border-radius: 24px;
  padding: 2rem;
  width: 100%;
  max-width: 420px;
  box-shadow: var(--card-shadow);
  text-align: center;
}

.hero-card h3 {
  margin-bottom: 1rem;
}

/* Full-Width Hero Slider Banner */
.hero-slider-banner {
  margin-top: 90px; /* Same as nav-container height */
  position: relative;
  width: 100%;
  overflow: hidden;
}

.hero-slider-fullwidth {
  position: relative;
  width: 100%;
  height: calc(100vh - 200px); /* 85px header + ~115px scroll indicator */
  min-height: 500px;
  overflow: hidden;
}

.hero-slider-container {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.hero-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  z-index: 1;
  transition: opacity 0.7s ease-in-out;
}

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

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

.slide-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, rgba(15, 23, 42, 0.85) 0%, rgba(15, 23, 42, 0.5) 50%, rgba(15, 23, 42, 0.15) 100%);
  z-index: 2;
}

.slide-caption {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  z-index: 3;
  padding: 0 5%;
  max-width: 600px;
}

.slide-badge {
  background: rgba(220, 38, 38, 0.2);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.2);
  font-size: 0.95rem;
  font-weight: 700;
  padding: 0.3rem 0.8rem;
  border-radius: 50px;
  display: inline-block;
  margin-bottom: 1rem;
  letter-spacing: 0.5px;
}

.slide-caption h2 {
  font-size: 2.8rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 0.75rem;
  line-height: 1.2;
  letter-spacing: -0.5px;
  text-shadow: 0 2px 15px rgba(0,0,0,0.4);
}

.slide-caption p {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.5;
  margin-bottom: 1.25rem;
  max-width: 480px;
}

.slide-btn-banner {
  display: inline-flex;
  align-items: center;
  padding: 0.7rem 1.6rem;
  background: var(--accent-primary);
  color: #ffffff;
  font-size: 1rem;
  font-weight: 700;
  border-radius: 12px;
  text-decoration: none;
  box-shadow: 0 4px 15px rgba(220, 38, 38, 0.3);
  transition: all var(--transition-speed);
}

.slide-btn-banner:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(220, 38, 38, 0.4);
}

/* Slider Controls */
.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #ffffff;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  cursor: pointer;
  z-index: 10;
  opacity: 0;
  transition: all var(--transition-speed);
  box-shadow: 0 2px 12px rgba(0,0,0,0.2);
  outline: none;
}

.hero-slider-fullwidth:hover .slider-arrow {
  opacity: 1;
}

.prev-arrow {
  left: 20px;
}

.next-arrow {
  right: 20px;
}

.slider-arrow:hover {
  background: var(--accent-primary);
  color: #ffffff;
  border-color: var(--accent-primary);
}

/* Dots */
.slider-dots {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.5rem;
  z-index: 10;
}

.slider-dots .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  cursor: pointer;
  transition: all var(--transition-speed);
}

.slider-dots .dot.active {
  background: #ffffff;
  width: 22px;
  border-radius: 4px;
}

/* Scroll Indicator Spacer */
.scroll-indicator-spacer {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem 0;
  background: var(--bg-primary);
  cursor: pointer;
  transition: background var(--transition-speed);
}

.scroll-indicator-spacer:hover {
  background: var(--bg-secondary);
}

.scroll-mouse {
  width: 26px;
  height: 42px;
  border: 2px solid var(--text-muted);
  border-radius: 14px;
  position: relative;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding-top: 8px;
  opacity: 0.6;
  transition: opacity var(--transition-speed);
}

.scroll-indicator-spacer:hover .scroll-mouse {
  opacity: 1;
  border-color: var(--accent-primary);
}

.scroll-mouse-wheel {
  width: 4px;
  height: 8px;
  background: var(--text-muted);
  border-radius: 3px;
  animation: scrollBounce 1.8s infinite ease-in-out;
}

.scroll-indicator-spacer:hover .scroll-mouse-wheel {
  background: var(--accent-primary);
}

@keyframes scrollBounce {
  0%   { transform: translateY(0); opacity: 1; }
  50%  { transform: translateY(10px); opacity: 0.3; }
  100% { transform: translateY(0); opacity: 1; }
}

.scroll-hint-text {
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-left: 0.75rem;
  transition: color var(--transition-speed);
}

.scroll-indicator-spacer:hover .scroll-hint-text {
  color: var(--accent-primary);
}

/* Products Section */
.catalog-section {
  padding: 100px 0;
  background-color: var(--bg-secondary);
}

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 4rem auto;
}

.section-header h2 {
  font-size: 2.4rem;
  margin-bottom: 1rem;
}

.filter-wrapper {
  display: flex;
  justify-content: center;
  gap: 0.8rem;
  margin-bottom: 3.5rem;
  flex-wrap: wrap;
}

.filter-btn {
  background: var(--bg-primary);
  border: 1px solid var(--border-color);
  padding: 0.6rem 1.5rem;
  border-radius: 50px;
  font-weight: 600;
  cursor: pointer;
  color: var(--text-secondary);
  transition: all var(--transition-speed);
}

.filter-btn.active, .filter-btn:hover {
  background: var(--accent-primary);
  border-color: var(--accent-primary);
  color: #ffffff;
}

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

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

.product-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--card-shadow);
  border-color: var(--accent-primary);
}

.product-img-box {
  position: relative;
  padding-top: 70%;
  background: var(--bg-tertiary);
  overflow: hidden;
}

/* Placeholder Box (fotoğraf yerine marka + ürün türü gösteren tasarım) */
.product-img-box.placeholder-box {
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 0;
  min-height: 200px;
}

.placeholder-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 2rem 1rem;
  width: 100%;
  height: 100%;
  min-height: 200px;
}

.placeholder-icon {
  font-size: 3rem;
  line-height: 1;
  filter: drop-shadow(0 2px 8px rgba(0,0,0,0.3));
}

.placeholder-brand {
  font-family: 'Outfit', sans-serif;
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--text-primary);
  letter-spacing: 2px;
}

.placeholder-type {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-secondary);
  text-align: center;
  letter-spacing: 0.5px;
}

/* Brand Logo Badge */
.brand-logo-badge {
  position: absolute;
  top: 15px;
  left: 15px;
  background-color: rgba(255, 255, 255, 0.95);
  padding: 6px 12px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
  height: 32px;
  z-index: 5;
}

.brand-logo-badge img {
  height: 100%;
  width: auto;
  max-width: 65px;
  object-fit: contain;
}

.brand-logo-badge span {
  font-size: 0.9rem;
  letter-spacing: -0.5px;
  font-weight: 800;
}

.product-badge {
  position: absolute;
  top: 15px;
  right: 15px;
  background-color: var(--accent-secondary);
  color: white;
  padding: 4px 10px;
  border-radius: 6px;
  font-size: 0.75rem;
  font-weight: 700;
  z-index: 5;
}

.product-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-info {
  padding: 1.5rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.product-category {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--accent-primary);
  margin-bottom: 0.5rem;
  letter-spacing: 0.5px;
}

.product-title {
  font-size: 1.15rem;
  margin-bottom: 0.75rem;
}

.product-desc {
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

.product-actions {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.75rem;
}

/* Quick Floating Button */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background-color: #25d366;
  color: white;
  border-radius: 50px;
  padding: 12px 24px;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
  z-index: 1000;
  text-decoration: none;
  font-weight: 700;
  transition: all var(--transition-speed);
}

.whatsapp-float:hover {
  transform: scale(1.05) translateY(-3px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.3);
}

/* Remote Finder (Wizard) Section */
.finder {
  padding: 100px 0;
  background-color: var(--bg-primary);
}

.finder-box {
  background: var(--bg-secondary);
  border: 1px solid var(--border-color);
  border-radius: 28px;
  padding: 3rem;
  max-width: 800px;
  margin: 0 auto;
  box-shadow: var(--card-shadow);
  position: relative;
  overflow: hidden;
}

.finder-step {
  display: none;
}

.finder-step.active {
  display: block;
  animation: fadeIn 0.4s ease;
}

.finder-title {
  font-size: 1.8rem;
  margin-bottom: 1rem;
  text-align: center;
}

.finder-subtitle {
  color: var(--text-secondary);
  text-align: center;
  margin-bottom: 2.5rem;
}

.option-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.option-card {
  background: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  padding: 1.5rem 1rem;
  text-align: center;
  cursor: pointer;
  font-weight: 600;
  transition: all var(--transition-speed) ease;
  user-select: none;
}

.option-card:hover {
  border-color: var(--accent-primary);
  transform: translateY(-3px);
  box-shadow: var(--card-shadow);
}

.option-card.selected {
  background: var(--accent-glow);
  border-color: var(--accent-primary);
  color: var(--accent-primary);
}

.option-card-icon {
  font-size: 2.2rem;
  margin-bottom: 0.75rem;
  display: block;
}

.finder-actions {
  display: flex;
  justify-content: space-between;
  margin-top: 2rem;
  border-top: 1px solid var(--border-color);
  padding-top: 1.5rem;
}

.btn-nav {
  padding: 0.6rem 1.5rem;
  border-radius: 10px;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition-speed) ease;
  border: 1px solid var(--border-color);
  background: var(--bg-secondary);
  color: var(--text-primary);
}

.btn-nav:hover:not(:disabled) {
  border-color: var(--accent-primary);
  color: var(--accent-primary);
}

.btn-nav:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}

.btn-primary {
  background: var(--accent-primary);
  color: #ffffff;
  border: none;
}

.btn-primary:hover:not(:disabled) {
  opacity: 0.9;
}

/* About Section */
.about-section {
  padding: 100px 0;
  background-color: var(--bg-primary);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

@media (max-width: 992px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}

.about-badge {
  background: var(--accent-glow);
  color: var(--accent-primary);
  padding: 0.35rem 0.75rem;
  border-radius: 50px;
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
}

.about-content h2 {
  font-size: 2.2rem;
  color: var(--text-primary);
  margin-bottom: 1.5rem;
  line-height: 1.25;
}

.about-content p {
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 1.2rem;
  font-size: 1.05rem;
}

.about-lead {
  font-size: 1.15rem !important;
  font-weight: 600;
  color: var(--text-primary) !important;
}

.about-footer {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-color);
}

.features-title {
  font-size: 1.5rem;
  margin-bottom: 2rem;
  color: var(--text-primary);
}

.about-features {
  background: var(--bg-secondary);
  padding: 2.5rem;
  border-radius: 24px;
  border: 1px solid var(--border-color);
  box-shadow: var(--card-shadow);
}

.feature-item {
  display: flex;
  gap: 1.2rem;
  margin-bottom: 2rem;
}

.feature-item:last-child {
  margin-bottom: 0;
}

.feature-icon {
  font-size: 1.8rem;
  background: var(--bg-tertiary);
  width: 55px;
  height: 55px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 4px 10px rgba(0,0,0,0.03);
  border: 1px solid var(--border-color);
}

.feature-text h4 {
  font-size: 1.1rem;
  margin-bottom: 0.4rem;
  color: var(--text-primary);
}

.feature-text p {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.5;
  margin-bottom: 0;
}

/* Brands Section */
.brand-item img {
  opacity: 0.8;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.brand-item img:hover {
  opacity: 1;
  transform: translateY(-5px) scale(1.05);
}

/* Footer */
footer {
  background-color: #050811; /* Siyah-lacivert uyumu */
  color: #d4d4d8; /* Açık gri (daha okunaklı) */
  padding: 80px 0 80px 0;
  border-top: 1px solid var(--border-color);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 4rem;
  margin-bottom: 4rem;
}

.footer-logo {
  margin-bottom: 1rem;
}

footer h4 {
  color: white;
  margin-bottom: 1.5rem;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 0.8rem;
}

.footer-links a {
  color: #d4d4d8;
  text-decoration: none;
  transition: color var(--transition-speed);
}

.footer-links a:hover {
  color: white;
}

.footer-bottom {
  border-top: 1px solid #1c2b35;
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  font-size: 0.9rem;
}

/* Animations */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive Styles */
@media (max-width: 992px) {
  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 3rem;
  }
  .hero-ctas {
    justify-content: center;
  }
  .hero-visual {
    margin: 0 auto;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .hero-slider-fullwidth {
    height: calc(100vh - 200px);
    min-height: 450px;
  }
  .slide-caption {
    max-width: 500px;
  }
  .slide-caption h2 {
    font-size: 2.4rem;
  }
}

/* --- Slide Contain Image styling for custom banners --- */
.slide-img-contain {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  max-height: none;
  object-fit: cover;
  object-position: 80% center;
  /* Premium sharpening and vibrance filter */
  filter: contrast(1.04) brightness(1.02) saturate(1.03);
  image-rendering: -webkit-optimize-contrast;
  transition: all var(--transition-speed);
}

@media (max-width: 768px) {
  /* --- GENERAL CONTAINER --- */
  .container {
    padding: 0 1rem !important;
  }

  .product-detail-grid {
    grid-template-columns: 1fr !important;
    gap: 1.5rem !important;
  }

  /* --- NAVBAR FIX --- */
  .nav-container {
    display: flex;
    flex-wrap: wrap;
    height: auto;
    padding: 0.6rem 1rem;
    gap: 0.5rem;
    align-items: center;
  }

  .logo-wrapper {
    flex: 0 0 auto;
    order: 1;
  }

  .logo-img {
    height: 85px !important;
    width: auto !important;
    border-radius: 0 !important;
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }

  .logo-slogan {
    font-size: 0.75rem !important;
  }

  .nav-actions {
    flex: 0 0 auto;
    order: 2;
    margin-left: auto;
    gap: 0.4rem !important;
  }

  .nav-actions .social-btn {
    width: 30px !important;
    height: 30px !important;
  }

  .nav-actions .btn-call {
    padding: 0.4rem 0.7rem;
    font-size: 0.75rem;
    border-radius: 8px;
  }

  .nav-links {
    order: 3;
    flex-basis: 100%;
    display: flex;
    justify-content: flex-start;
    gap: 0.4rem;
    width: 100%;
    border-top: 1px solid var(--border-color);
    padding-top: 0.6rem;
    overflow-x: auto;
    white-space: nowrap;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding-bottom: 0.3rem;
  }

  .nav-links::-webkit-scrollbar {
    display: none;
  }

  .nav-links li {
    padding: 0;
    flex-shrink: 0;
  }

  .nav-links a {
    font-size: 0.78rem;
    font-weight: 700;
    background-color: var(--bg-tertiary);
    color: var(--text-secondary);
    padding: 0.35rem 0.85rem;
    border-radius: 25px;
    border: 1px solid var(--border-color);
    display: inline-block;
    transition: all var(--transition-speed) ease;
  }

  .nav-links a:hover, .nav-links a:focus {
    background-color: var(--accent-primary);
    color: #ffffff;
    border-color: var(--accent-primary);
  }

  .logo-text {
    font-size: 1.1rem;
  }

  /* --- SLIDER BANNER FIX --- */
  .hero-slider-banner {
    margin-top: 0; /* Let it flow naturally below header */
  }

  .hero-slider-fullwidth {
    height: 380px; /* Stable fixed height for premium banner appearance */
  }

  .slide-overlay {
    background: linear-gradient(to top, rgba(2, 1, 5, 0.95) 0%, rgba(2, 1, 5, 0.6) 45%, rgba(2, 1, 5, 0.15) 80%, transparent 100%) !important;
  }

  .slide-caption {
    top: auto;
    bottom: 0;
    left: 0;
    right: 0;
    transform: none;
    padding: 1.5rem 1.25rem 1.25rem !important;
    max-width: 100%;
    text-align: left;
    background: linear-gradient(to top, #020105 40%, rgba(2, 1, 5, 0.8) 75%, transparent 100%) !important;
    box-sizing: border-box;
  }

  .slide-caption h2 {
    font-size: 1.45rem !important;
    margin-bottom: 0.4rem;
    line-height: 1.2;
  }

  .slide-caption p {
    font-size: 0.85rem !important;
    line-height: 1.4;
    margin-bottom: 0.75rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    color: rgba(255, 255, 255, 0.85);
  }

  .slide-badge {
    font-size: 0.75rem !important;
    padding: 0.2rem 0.6rem;
    margin-bottom: 0.5rem;
  }

  .slide-btn-banner {
    padding: 0.5rem 1.2rem;
    font-size: 0.8rem;
    border-radius: 8px;
  }

  .slide-btn-outline {
    padding: 0.45rem 1rem !important;
    font-size: 0.78rem !important;
    border-radius: 8px !important;
  }

  /* Product images cover full width and height with specific centering */
  .slide-img-contain {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    width: 100% !important;
    height: 100% !important;
    max-width: none !important;
    max-height: none !important;
    object-fit: cover !important;
    object-position: center center !important; /* Default centered (fits QLED TV slide perfectly) */
    transform: none !important;
    margin: 0 !important;
  }

  /* Slide-specific alignments to center subjects on mobile */
  .hero-slide:nth-child(2) .slide-img-contain {
    object-position: center center !important; /* QLED TV */
  }
  .hero-slide:nth-child(3) .slide-img-contain {
    object-position: 55% center !important; /* Nova 2 box */
  }
  .hero-slide:nth-child(4) .slide-img-contain {
    object-position: 75% center !important; /* Master 4K box */
  }

  /* Cover images (slide 1) stay full */
  .hero-slide > div:first-child img:not(.slide-img-contain) {
    object-position: center center !important;
  }

  .slider-arrow {
    width: 32px;
    height: 32px;
    opacity: 0.7 !important;
    font-size: 0.85rem;
    top: 40%;
    background: rgba(2, 1, 5, 0.5);
    border-color: rgba(255, 255, 255, 0.1);
  }

  .prev-arrow { left: 8px; }
  .next-arrow { right: 8px; }

  .slider-dots {
    bottom: 8px;
    z-index: 15;
  }

  .slider-dots .dot {
    width: 6px;
    height: 6px;
  }

  .slider-dots .dot.active {
    width: 16px;
  }

  /* --- HERO CONTENT OVERRIDES --- */
  .hero {
    padding: 40px 0 !important;
  }

  .hero h1 {
    font-size: 1.8rem !important;
  }

  .hero-features-strip {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 1rem !important;
  }

  /* --- PRODUCT GRID (2 COLUMNS) --- */
  .product-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 0.75rem !important;
  }

  .product-card .product-img-box {
    height: 140px !important;
    min-height: 140px !important;
    padding: 0.75rem !important;
  }

  .product-card .product-img-box.placeholder-box {
    min-height: 140px !important;
  }

  .product-card .placeholder-content {
    min-height: 140px !important;
    padding: 1rem 0.5rem !important;
  }

  .product-card .placeholder-icon {
    font-size: 2rem !important;
  }

  .product-card .placeholder-brand {
    font-size: 1.15rem !important;
    letter-spacing: 1px !important;
  }

  .product-card .placeholder-type {
    font-size: 0.7rem !important;
  }

  .product-card .product-info {
    padding: 0.75rem !important;
  }

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

  .product-card .product-title {
    font-size: 0.92rem !important;
    line-height: 1.25 !important;
    margin-bottom: 0.4rem !important;
    height: 2.5em;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
  }

  .product-card .product-desc {
    font-size: 0.78rem !important;
    line-height: 1.35 !important;
    margin-bottom: 0.75rem !important;
    height: 4em;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
  }

  .product-card .btn-product-details {
    display: none !important; /* Redundant details button hidden on mobile */
  }

  .product-card .btn-cart-add,
  .product-card .btn-view-models {
    width: 100% !important;
    font-size: 0.75rem !important;
    height: 34px !important;
    line-height: 34px !important;
    display: flex !important;
    align-items: center;
    justify-content: center;
    padding: 0 !important;
    border-radius: 8px !important;
  }

  .product-card .product-compatibility {
    font-size: 0.72rem !important;
    margin-top: 0.5rem !important;
    padding-top: 0.5rem !important;
  }

  /* --- OTHER SECTIONS OVERRIDES --- */
  .troubleshooting-section {
    padding: 40px 0 !important;
  }

  .about-features {
    padding: 1.5rem !important;
  }

  .feature-item {
    gap: 0.75rem !important;
    margin-bottom: 1.25rem !important;
  }

  .feature-icon {
    width: 45px !important;
    height: 45px !important;
    font-size: 1.4rem !important;
  }

  #flow > .container > div {
    gap: 1.25rem !important;
  }

  .faq-question-btn {
    padding: 1rem 1.25rem !important;
    font-size: 0.92rem !important;
  }

  .faq-answer-panel div {
    padding: 0 1.25rem 1rem 1.25rem !important;
    font-size: 0.88rem !important;
  }

  /* Contact section: stack vertically on mobile */
  .contact-grid {
    grid-template-columns: 1fr !important;
    gap: 2rem !important;
  }

  /* Footer bottom: stack vertically */
  .footer-bottom {
    flex-direction: column;
    gap: 0.5rem;
    text-align: center;
  }

  /* Section header smaller */
  .section-header h2 {
    font-size: 1.6rem;
  }

  /* Finder option grid: 2 columns on mobile */
  .option-grid {
    grid-template-columns: 1fr 1fr;
  }

  /* Flow steps: 1 column */
  .flow-steps {
    grid-template-columns: 1fr;
  }

  /* WhatsApp float: prevent overlap */
  .whatsapp-float {
    bottom: 1rem;
    right: 1rem;
    padding: 0.7rem 1.2rem;
    font-size: 0.85rem;
  }
}

@media (max-width: 480px) {
  .logo-text {
    font-size: 1rem;
  }

  .logo-img {
    height: 75px !important;
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }

  .logo-slogan {
    font-size: 0.68rem !important;
  }

  .nav-links a {
    font-size: 0.72rem;
    padding: 0.3rem 0.7rem;
  }

  .section-header h2 {
    font-size: 1.35rem;
  }

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

  .hero h1 {
    font-size: 1.6rem;
  }

  .hero-slider-fullwidth {
    height: 340px;
  }

  .slide-caption h2 {
    font-size: 1.2rem !important;
    margin-bottom: 0.2rem;
  }

  .slide-caption p {
    font-size: 0.76rem !important;
    -webkit-line-clamp: 2;
    margin-bottom: 0.5rem;
    line-height: 1.3;
  }

  .slide-badge {
    font-size: 0.65rem !important;
    padding: 0.15rem 0.45rem;
    margin-bottom: 0.35rem;
  }

  .slide-btn-banner {
    padding: 0.4rem 0.85rem;
    font-size: 0.72rem;
  }

  .slide-btn-outline {
    padding: 0.35rem 0.7rem !important;
    font-size: 0.7rem !important;
  }

  .slide-img-contain {
    object-position: 82% center !important;
  }

  .slider-arrow {
    width: 28px;
    height: 28px;
    font-size: 0.75rem;
  }

  .prev-arrow { left: 6px; }
  .next-arrow { right: 6px; }
}

/* Social Buttons */
.social-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.social-btn:hover {
  transform: translateY(-3px);
  color: white !important;
}
.social-btn.instagram:hover {
  background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285aeb 90%) !important;
}
.social-btn.tiktok:hover {
  background: #010101 !important;
  box-shadow: -2px -2px 0px #25f4ee, 2px 2px 0px #fe2c55;
}

/* Announcement Banner Buttons */
.announcement-social-btn {
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
}
.announcement-social-btn:hover {
  transform: translateY(-4px);
  filter: brightness(1.1);
  box-shadow: 0 8px 25px rgba(214,36,159,0.4) !important;
}
.announcement-social-btn.tiktok-ann:hover {
  box-shadow: -3px -3px 0px #25f4ee, 3px 3px 0px #fe2c55, 0 8px 25px rgba(0,0,0,0.5) !important;
}

/* Dynamic Sub-Catalog Styles */
.sub-catalog-container {
  animation: fadeInUp 0.5s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.btn-back {
  background: var(--bg-secondary);
  color: var(--text-primary);
  border: 1px solid var(--border-color);
  padding: 0.75rem 1.5rem;
  border-radius: 12px;
  font-weight: 700;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: all var(--transition-speed);
}

.btn-back:hover {
  background: var(--accent-glow);
  color: var(--accent-primary);
  border-color: var(--accent-primary);
  transform: translateX(-4px);
}

.clickable-card {
  cursor: pointer;
  transition: transform var(--transition-speed), box-shadow var(--transition-speed), border-color var(--transition-speed) !important;
}

.clickable-card:hover {
  transform: translateY(-5px) !important;
  box-shadow: 0 15px 35px rgba(220, 38, 38, 0.08), var(--card-shadow) !important;
  border-color: var(--accent-primary) !important;
}

.sub-catalog-header h3 {
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  letter-spacing: -1px;
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-out {
  animation: fadeOutDown 0.4s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

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

/* Fallback Card Style */
.fallback-card {
  border: 2px dashed var(--accent-primary) !important;
  background: var(--bg-secondary) !important;
  box-shadow: 0 4px 12px rgba(220, 38, 38, 0.03) !important;
}

.fallback-card:hover {
  border-style: solid !important;
  box-shadow: 0 15px 35px rgba(220, 38, 38, 0.1), var(--card-shadow) !important;
}

/* Premium Model Image Zoom Effect */
.product-model-img {
  transition: transform var(--transition-speed) cubic-bezier(0.16, 1, 0.3, 1) !important;
}

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

/* Premium Brand Image Zoom Effect */
.product-brand-img {
  transition: transform var(--transition-speed) cubic-bezier(0.16, 1, 0.3, 1) !important;
}

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

/* Premium Search Bar Glow Effect */
#catalog-search {
  transition: all var(--transition-speed) ease;
}

#catalog-search:focus {
  border-color: var(--accent-primary) !important;
  box-shadow: 0 0 0 4px rgba(220, 38, 38, 0.15) !important;
  background: var(--bg-primary) !important;
}

#search-clear-btn:hover {
  color: var(--accent-primary) !important;
}

/* Premium Lightbox Modal */
.lightbox-modal {
  display: none;
  position: fixed;
  z-index: 30000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(10, 10, 10, 0.9);
  backdrop-filter: blur(8px);
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--transition-speed) cubic-bezier(0.16, 1, 0.3, 1);
}

.lightbox-modal.active {
  display: flex !important;
  opacity: 1;
}

.lightbox-modal.active .lightbox-content {
  transform: scale(1) !important;
}

.lightbox-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  color: rgba(255, 255, 255, 0.7);
  font-size: 2.2rem;
  font-weight: 300;
  cursor: pointer;
  transition: all var(--transition-speed) ease;
  line-height: 1;
  width: 2.8rem;
  height: 2.8rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  user-select: none;
}

.lightbox-close:hover {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.15);
  transform: rotate(90deg);
}

.lightbox-content {
  max-width: 90%;
  max-height: 80%;
  object-fit: contain;
  border-radius: 12px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
  transform: scale(0.95);
  transition: transform var(--transition-speed) cubic-bezier(0.16, 1, 0.3, 1);
}

#lightbox-caption {
  position: absolute;
  bottom: 2rem;
  text-align: center;
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.1rem;
  font-weight: 500;
  width: 100%;
  padding: 0 1rem;
}

/* FAQ Accordion Styles */
.faq-item {
  transition: all var(--transition-speed) ease;
}

.faq-item.active {
  border-color: var(--accent-primary) !important;
  box-shadow: 0 4px 15px rgba(220, 38, 38, 0.05);
}

.faq-item.active .faq-question-btn {
  color: var(--accent-primary) !important;
}

.faq-item.active .faq-icon {
  transform: rotate(180deg);
  color: var(--accent-primary) !important;
}

.faq-question-btn:hover {
  color: var(--accent-primary);
}

/* Live Search Dropdown */
.live-search-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  background: var(--bg-secondary);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  margin-top: 0.5rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  z-index: 1000;
  max-height: 350px;
  overflow-y: auto;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

@media (max-width: 768px) {
  .live-search-dropdown {
    max-height: 45vh; /* Prevents overlap with virtual keyboard on mobile */
  }
}

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

.live-search-dropdown::-webkit-scrollbar {
  width: 6px;
}
.live-search-dropdown::-webkit-scrollbar-track {
  background: transparent;
}
.live-search-dropdown::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
}

.live-search-item {
  display: flex;
  align-items: center;
  padding: 0.8rem 1.2rem;
  border-bottom: 1px solid var(--border-color);
  cursor: pointer;
  transition: background 0.2s;
  text-decoration: none;
  color: var(--text-primary);
}

.live-search-item:last-child {
  border-bottom: none;
}

.live-search-item:hover {
  background: rgba(255, 255, 255, 0.05);
}

.live-search-item-img {
  width: 40px;
  height: 40px;
  object-fit: contain;
  border-radius: 6px;
  background: white;
  margin-right: 1rem;
  padding: 4px;
}

.live-search-item-info {
  display: flex;
  flex-direction: column;
}

.live-search-item-title {
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 0.2rem;
  color: var(--text-primary);
}

.live-search-item-badge {
  font-size: 0.7rem;
  color: var(--text-muted);
}

.live-search-empty {
  padding: 1.5rem;
  text-align: center;
  color: var(--text-muted);
  font-size: 0.9rem;
}

/* =========================================
   WhatsApp Cart Feature Styles
========================================= */

/* Floating Cart Button */
.floating-cart-btn {
  position: fixed;
  bottom: 90px; /* Above the WhatsApp float */
  right: 20px;
  width: 60px;
  height: 60px;
  background-color: var(--bg-secondary);
  border: 2px solid var(--accent-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--accent-primary);
  box-shadow: 0 4px 15px rgba(0,0,0,0.3);
  cursor: pointer;
  z-index: 998;
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.floating-cart-btn:hover {
  transform: scale(1.1);
  background-color: var(--accent-primary);
  color: #fff;
}

.cart-badge {
  position: absolute;
  top: -5px;
  right: -5px;
  background-color: var(--accent-primary);
  color: white;
  font-size: 0.8rem;
  font-weight: bold;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--bg-primary);
  transition: transform 0.2s;
}

.floating-cart-btn:hover .cart-badge {
  background-color: #fff;
  color: var(--accent-primary);
  border-color: var(--accent-primary);
}

.cart-badge.bump {
  animation: badge-bump 0.3s ease-out;
}

@keyframes badge-bump {
  0% { transform: scale(1); }
  50% { transform: scale(1.5); }
  100% { transform: scale(1); }
}

/* Cart Drawer Overlay */
.cart-drawer-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(4px);
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

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

/* Cart Drawer */
.cart-drawer {
  position: fixed;
  top: 0;
  right: -400px;
  width: 400px;
  max-width: 100vw;
  height: 100vh;
  background-color: var(--bg-primary);
  box-shadow: -5px 0 25px rgba(0,0,0,0.5);
  z-index: 10000;
  display: flex;
  flex-direction: column;
  transition: right 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.cart-drawer.active {
  right: 0;
}

.cart-drawer-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem;
  border-bottom: 1px solid var(--border-color);
  background-color: var(--bg-secondary);
}

.cart-drawer-header h3 {
  margin: 0;
  font-size: 1.2rem;
  color: var(--text-primary);
}

.cart-close-btn {
  background: none;
  border: none;
  color: var(--text-secondary);
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
  transition: color 0.2s;
}

.cart-close-btn:hover {
  color: var(--accent-primary);
}

.cart-drawer-body {
  flex: 1;
  overflow-y: auto;
  padding: 1.5rem;
  position: relative;
}

.cart-drawer-body::-webkit-scrollbar {
  width: 6px;
}
.cart-drawer-body::-webkit-scrollbar-thumb {
  background: var(--border-color);
  border-radius: 10px;
}

.cart-empty-state {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  text-align: center;
  color: var(--text-secondary);
}

.cart-empty-icon {
  font-size: 4rem;
  margin-bottom: 1rem;
  opacity: 0.5;
}

/* Cart Items */
.cart-item {
  display: flex;
  align-items: center;
  padding: 1rem;
  background: var(--bg-secondary);
  border-radius: 12px;
  margin-bottom: 1rem;
  border: 1px solid var(--border-color);
}

.cart-item-img {
  width: 60px;
  height: 60px;
  object-fit: contain;
  background: white;
  border-radius: 8px;
  padding: 4px;
  margin-right: 1rem;
}

.cart-item-info {
  flex: 1;
}

.cart-item-title {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 0.25rem;
  line-height: 1.3;
}

.cart-item-cat {
  font-size: 0.75rem;
  color: var(--text-muted);
}

.cart-item-controls {
  display: flex;
  align-items: center;
  margin-top: 0.5rem;
  gap: 0.5rem;
}

.qty-btn {
  background: var(--bg-secondary);
  border: 1px solid var(--border-color);
  color: var(--text-primary);
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 1.1rem;
  font-weight: 600;
  line-height: 1;
  transition: all 0.2s ease;
  box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.qty-btn:hover {
  background: var(--accent-primary);
  border-color: var(--accent-primary);
  color: white;
  transform: translateY(-1px);
  box-shadow: 0 4px 8px rgba(229, 9, 20, 0.2);
}

.qty-val {
  font-size: 0.95rem;
  font-weight: 700;
  min-width: 1.5rem;
  text-align: center;
}

.cart-item-remove {
  background: #fee2e2;
  border: 1px solid #fca5a5;
  color: #ef4444;
  width: 32px;
  height: 32px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  cursor: pointer;
  margin-left: auto; /* Push to the right */
  transition: all 0.2s ease;
}

.cart-item-remove:hover {
  background: #ef4444;
  color: white;
  border-color: #ef4444;
  transform: scale(1.05);
}

/* Product Card - Add to Cart Button */
.btn-cart-add {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  background: linear-gradient(135deg, var(--accent-primary) 0%, #b8060f 100%);
  border: none;
  color: white;
  padding: 0.9rem;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 700;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(229, 9, 20, 0.2);
  gap: 0.4rem;
}

.btn-cart-add:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(229, 9, 20, 0.35);
  background: linear-gradient(135deg, #f21b26 0%, #d10711 100%);
}

.btn-cart-add:active {
  transform: translateY(1px);
}

/* Cart Footer */
.cart-drawer-footer {
  padding: 1.5rem;
  border-top: 1px solid var(--border-color);
  background-color: var(--bg-secondary);
}

.btn-checkout-whatsapp {
  width: 100%;
  background-color: #25D366; /* WhatsApp Green */
  color: white;
  border: none;
  border-radius: 12px;
  padding: 1.2rem;
  font-size: 1.1rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.btn-checkout-whatsapp:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}

.btn-checkout-whatsapp:disabled {
  background-color: var(--border-color);
  color: var(--text-muted);
  cursor: not-allowed;
  box-shadow: none;
  transform: none;
}

/* Toast Notification */
.toast-notification {
  position: fixed;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%) translateY(100px);
  background-color: var(--bg-secondary);
  border: 1px solid var(--accent-primary);
  color: var(--text-primary);
  padding: 1rem 1.5rem;
  border-radius: 50px;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  box-shadow: 0 10px 30px rgba(0,0,0,0.5);
  z-index: 2000;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.toast-notification.show {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
  visibility: visible;
}

.toast-icon {
  font-size: 1.2rem;
}

.toast-message {
  font-weight: 600;
  font-size: 0.95rem;
}

@media (max-width: 480px) {
  .cart-drawer {
    width: 100%;
    height: 85vh; /* Fallback */
    height: 85dvh;
    top: auto;
    bottom: -100%;
    right: 0;
    border-radius: 24px 24px 0 0;
    transition: bottom 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  }
  .cart-drawer.active {
    right: 0;
    bottom: 0;
  }
  .floating-cart-btn {
    bottom: 100px;
    right: 15px;
    width: 55px;
    height: 55px;
  }
  .cart-drawer-header {
    padding: 1.2rem;
  }
  .cart-drawer-footer {
    padding: 1.2rem;
    padding-bottom: calc(1.2rem + env(safe-area-inset-bottom, 20px));
  }
}

@keyframes float {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-15px); }
  100% { transform: translateY(0px); }
}

/* --- Slide Outline Button --- */
.slide-btn-outline {
  display: inline-block;
  padding: 0.7rem 1.5rem;
  font-size: 0.95rem;
  font-weight: 700;
  color: white;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 50px;
  cursor: pointer;
  backdrop-filter: blur(10px);
  transition: all var(--transition-speed);
}
.slide-btn-outline:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.5);
  transform: translateY(-2px);
}

/* --- Info Modal Styles --- */
.info-modal-container {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -45%);
  width: 90%;
  max-width: 600px;
  max-height: 85vh;
  background: var(--bg-primary);
  border-radius: 24px;
  z-index: 10001;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
  border: 1px solid var(--border-color);
}
.info-modal-container.active {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, -50%);
}
.info-modal-header {
  padding: 1.5rem;
  border-bottom: 1px solid var(--border-color);
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: var(--bg-secondary);
  border-radius: 24px 24px 0 0;
}
.info-modal-close {
  background: none;
  border: none;
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
  color: var(--text-secondary);
  transition: color 0.2s;
}
.info-modal-close:hover {
  color: var(--accent-primary);
}
.info-modal-body {
  padding: 1.5rem;
  overflow-y: auto;
  color: var(--text-secondary);
}
.info-modal-body::-webkit-scrollbar {
  width: 6px;
}
.info-modal-body::-webkit-scrollbar-thumb {
  background: var(--border-color);
  border-radius: 10px;
}
.info-benefits-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.info-benefits-list li {
  background: var(--bg-secondary);
  padding: 1rem;
  border-radius: 12px;
  border: 1px solid var(--border-color);
  display: flex;
  flex-direction: column;
}
.info-benefits-list li strong {
  color: var(--text-primary);
  margin-bottom: 0.25rem;
  font-size: 1.05rem;
}
.info-benefits-list li span {
  font-size: 0.95rem;
}
.info-bullet-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.info-bullet-list li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.75rem;
  font-size: 1rem;
}
.info-bullet-list li::before {
  content: "•";
  color: var(--accent-primary);
  position: absolute;
  left: 0;
  top: -2px;
  font-size: 1.5rem;
}
.info-modal-footer {
  padding: 1.2rem 1.5rem;
  border-top: 1px solid var(--border-color);
  background: var(--bg-secondary);
  border-radius: 0 0 24px 24px;
}

@media (max-width: 768px) {
  .info-modal-container {
    width: 95%;
    max-height: 90vh;
  }
  .detail-modal-img-box {
    height: 220px !important;
    padding: 1rem !important;
  }
  #detail-modal-title {
    font-size: 1.35rem !important;
  }
  .info-modal-header h3 {
    font-size: 1.15rem !important;
  }
  .info-modal-body {
    padding: 1.25rem 1.5rem !important;
  }
  /* Stacking buttons in the modal footer vertically on mobile */
  #product-detail-modal .info-modal-footer {
    flex-direction: column !important;
    gap: 0.75rem !important;
    padding: 1.25rem 1.5rem !important;
  }
  #product-detail-modal .info-modal-footer button,
  #product-detail-modal .info-modal-footer a {
    width: 100% !important;
    flex: none !important;
    height: 46px !important;
    font-size: 0.95rem !important;
    justify-content: center !important;
    padding: 0 !important;
  }
}

/* --- Language Switch Pill --- */
.lang-switch-pill {
  display: flex;
  background: var(--bg-tertiary);
  border: 1px solid var(--border-color);
  border-radius: 50px;
  padding: 2px;
  height: 34px;
  align-items: center;
}
.lang-pill-btn {
  background: none;
  border: none;
  color: var(--text-secondary);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.4rem 0.75rem;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.2s;
  line-height: 1;
  height: 100%;
}
.lang-pill-btn.active {
  background: var(--accent-primary);
  color: white;
  box-shadow: 0 2px 8px rgba(220, 38, 38, 0.2);
}

/* --- Blog Cards Premium Transitions --- */
.blog-card:hover {
  transform: translateY(-5px);
  border-color: var(--accent-primary) !important;
  box-shadow: 0 10px 25px rgba(220, 38, 38, 0.15) !important;
}

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