/* ÇAĞLAR OTO - Premium Design System */
:root {
  --color-bg: #0a0a0a;
  --color-surface: #111111;
  --color-surface-2: #1a1a1a;
  --color-border: #2a2a2a;
  --color-text: #ffffff;
  --color-text-muted: #a0a0a0;
  --color-accent: #b22222;
  --color-accent-hover: #d32f2f;
  --color-silver: #c0c0c0;
  --color-success: #22c55e;
  --font-sans: 'Inter', system-ui, -apple-system, sans-serif;
  --font-display: 'Oswald', 'Inter', sans-serif;
  --radius: 12px;
  --shadow: 0 4px 24px rgba(0,0,0,0.4);
  --transition: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

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

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

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

/* Typography */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: 0.02em;
  line-height: 1.2;
}

.text-muted { color: var(--color-text-muted); }
.text-accent { color: var(--color-accent); }
.text-silver { color: var(--color-silver); }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.875rem 1.75rem;
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border: none;
  border-radius: var(--radius);
  cursor: pointer;
  transition: all var(--transition);
  white-space: nowrap;
}

.btn-primary {
  background: var(--color-accent);
  color: #fff;
}
.btn-primary:hover {
  background: var(--color-accent-hover);
  transform: translateY(-1px);
  box-shadow: 0 8px 20px rgba(178, 34, 34, 0.35);
}

.btn-outline {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255,255,255,0.3);
}
.btn-outline:hover {
  border-color: #fff;
  background: rgba(255,255,255,0.05);
}

.btn-ghost {
  background: transparent;
  color: var(--color-text-muted);
  padding: 0.5rem 1rem;
}
.btn-ghost:hover {
  color: #fff;
}

.btn-sm {
  padding: 0.6rem 1.25rem;
  font-size: 0.8rem;
}

/* Navbar */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(10, 10, 10, 0.85);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid transparent;
  transition: all var(--transition);
}

.navbar.scrolled {
  border-bottom-color: var(--color-border);
  background: rgba(10, 10, 10, 0.95);
}

.navbar-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 1.5rem;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.logo-link {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
}

.logo-link img {
  height: 42px;
  width: auto;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
}

.nav-links a {
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  position: relative;
}
.nav-links a:hover,
.nav-links a.active {
  color: #fff;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--color-accent);
  transition: width var(--transition);
}
.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

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

.nav-search {
  background: var(--color-surface-2);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 0.5rem 0.75rem;
  color: #fff;
  font-size: 0.875rem;
  width: 180px;
  transition: all var(--transition);
}
.nav-search:focus {
  outline: none;
  border-color: var(--color-accent);
  width: 220px;
}

.mobile-toggle {
  display: none;
  background: none;
  border: none;
  color: #fff;
  cursor: pointer;
  padding: 0.5rem;
}

/* Hero */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: 72px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(10,10,10,0.92) 0%, rgba(10,10,10,0.7) 45%, rgba(10,10,10,0.4) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1400px;
  margin: 0 auto;
  padding: 4rem 1.5rem;
  width: 100%;
}

.hero-badge {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: 1.25rem;
  opacity: 0;
  animation: fadeUp 0.8s 0.2s forwards;
}

.hero h1 {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 700;
  margin-bottom: 1.25rem;
  max-width: 700px;
  opacity: 0;
  animation: fadeUp 0.8s 0.35s forwards;
}

.hero p {
  font-size: 1.125rem;
  color: var(--color-text-muted);
  max-width: 520px;
  margin-bottom: 2.5rem;
  opacity: 0;
  animation: fadeUp 0.8s 0.5s forwards;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  opacity: 0;
  animation: fadeUp 0.8s 0.65s forwards;
}

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

/* Sections */
.section {
  padding: 5rem 0;
}
.section-header {
  text-align: center;
  margin-bottom: 3.5rem;
}
.section-header h2 {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  margin-bottom: 0.75rem;
}
.section-header p {
  color: var(--color-text-muted);
  max-width: 560px;
  margin: 0 auto;
}

.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* Category Cards */
.category-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}
.category-card {
  position: relative;
  height: 320px;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  transition: all var(--transition);
}
.category-card:hover {
  border-color: rgba(178,34,34,0.4);
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}
.category-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.category-card:hover img {
  transform: scale(1.06);
}
.category-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, transparent 60%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.75rem;
}
.category-overlay h3 {
  font-size: 1.5rem;
  margin-bottom: 0.35rem;
}
.category-overlay span {
  font-size: 0.875rem;
  color: var(--color-text-muted);
}

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

.product-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
}
.product-card:hover {
  border-color: rgba(178,34,34,0.35);
  transform: translateY(-6px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.45);
}
.product-card-image {
  position: relative;
  aspect-ratio: 1;
  background: #0d0d0d;
  overflow: hidden;
}
.product-card-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 1.5rem;
  transition: transform 0.5s ease;
}
.product-card:hover .product-card-image img {
  transform: scale(1.08);
}
.product-badge {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 0.25rem 0.6rem;
  border-radius: 2px;
  background: var(--color-accent);
}
.product-badge.out {
  background: #444;
}
.product-card-body {
  padding: 1.25rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.product-brand {
  font-size: 0.75rem;
  color: var(--color-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.25rem;
}
.product-name {
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}
.product-specs {
  font-size: 0.8rem;
  color: var(--color-text-muted);
  margin-bottom: 1rem;
  flex: 1;
}
.product-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  margin-top: auto;
}
.product-price {
  font-size: 1.15rem;
  font-weight: 700;
  color: #fff;
}
.product-price span {
  font-size: 0.8rem;
  font-weight: 400;
  color: var(--color-text-muted);
}

/* Filters */
.filters-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 2rem;
  align-items: center;
}
.filter-select, .filter-input {
  background: var(--color-surface-2);
  border: 1px solid var(--color-border);
  color: #fff;
  padding: 0.6rem 0.9rem;
  border-radius: var(--radius);
  font-size: 0.875rem;
  min-width: 140px;
}
.filter-select:focus, .filter-input:focus {
  outline: none;
  border-color: var(--color-accent);
}

/* Why Us */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
}
.feature-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 1.75rem;
  text-align: center;
  transition: all var(--transition);
}
.feature-card:hover {
  border-color: rgba(178,34,34,0.3);
  transform: translateY(-3px);
}
.feature-icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(178,34,34,0.12);
  border-radius: 50%;
  color: var(--color-accent);
}
.feature-card h3 {
  font-size: 1.05rem;
  margin-bottom: 0.5rem;
}
.feature-card p {
  font-size: 0.875rem;
  color: var(--color-text-muted);
}

/* About */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}
.about-content h2 {
  margin-bottom: 1.25rem;
}
.about-content p {
  color: var(--color-text-muted);
  margin-bottom: 1rem;
}
.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
}
.stat-item strong {
  display: block;
  font-size: 1.75rem;
  font-family: var(--font-display);
  color: var(--color-accent);
}
.stat-item span {
  font-size: 0.8rem;
  color: var(--color-text-muted);
}

/* Brands */
.brands-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  align-items: center;
}
.brand-item {
  padding: 1rem 1.75rem;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: var(--color-text-muted);
  transition: all var(--transition);
}
.brand-item:hover {
  color: #fff;
  border-color: var(--color-accent);
}

.brands-note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  margin-top: 2rem;
  color: var(--color-text-muted);
  font-size: 0.8rem;
  letter-spacing: 0.02em;
}

.brands-note-mark {
  display: grid;
  width: 1.5rem;
  height: 1.5rem;
  place-items: center;
  border: 1px solid rgba(178, 34, 34, 0.55);
  border-radius: 50%;
  color: #e85a5a;
  font-weight: 700;
}

/* Testimonials */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
}
.testimonial-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 1.75rem;
}
.stars {
  color: #f59e0b;
  margin-bottom: 1rem;
  font-size: 0.9rem;
}
.testimonial-card p {
  color: var(--color-text-muted);
  font-size: 0.95rem;
  margin-bottom: 1.25rem;
  font-style: italic;
}
.testimonial-card strong {
  font-size: 0.875rem;
}

/* Contact */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}
.contact-info-item {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
}
.contact-info-item svg {
  flex-shrink: 0;
  color: var(--color-accent);
}
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.form-group label {
  display: block;
  font-size: 0.8rem;
  font-weight: 500;
  margin-bottom: 0.35rem;
  color: var(--color-text-muted);
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  background: var(--color-surface-2);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 0.75rem 1rem;
  color: #fff;
  font-size: 0.95rem;
  transition: border-color var(--transition);
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--color-accent);
}
.form-group textarea {
  min-height: 120px;
  resize: vertical;
}

/* Footer */
.footer {
  background: #050505;
  border-top: 1px solid var(--color-border);
  padding: 4rem 0 2rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 2.5rem;
  margin-bottom: 3rem;
}
.footer-brand p {
  color: var(--color-text-muted);
  font-size: 0.9rem;
  margin-top: 1rem;
  max-width: 280px;
}
.footer h4 {
  font-size: 0.9rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
  color: #fff;
}
.footer ul {
  list-style: none;
}
.footer ul li {
  margin-bottom: 0.6rem;
}
.footer ul a {
  font-size: 0.875rem;
  color: var(--color-text-muted);
}
.footer ul a:hover {
  color: var(--color-accent);
}
.footer-bottom {
  border-top: 1px solid var(--color-border);
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.8rem;
  color: var(--color-text-muted);
}

/* WhatsApp Float */
.whatsapp-float {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 999;
  width: 56px;
  height: 56px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  transition: all var(--transition);
}
.whatsapp-float:hover {
  transform: scale(1.08);
  box-shadow: 0 6px 28px rgba(37, 211, 102, 0.5);
}
.whatsapp-float svg {
  width: 28px;
  height: 28px;
  fill: #fff;
}

/* Modal */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.75);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  padding: 1rem;
}
.modal-overlay.active {
  opacity: 1;
  visibility: visible;
}
.modal {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: 8px;
  width: 100%;
  max-width: 480px;
  max-height: 90vh;
  overflow-y: auto;
  transform: translateY(20px);
  transition: transform 0.3s ease;
}
.modal-overlay.active .modal {
  transform: translateY(0);
}
.modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.25rem 1.5rem;
  border-bottom: 1px solid var(--color-border);
}
.modal-header h3 {
  font-size: 1.15rem;
}
.modal-close {
  background: none;
  border: none;
  color: var(--color-text-muted);
  cursor: pointer;
  font-size: 1.5rem;
  line-height: 1;
}
.modal-body {
  padding: 1.5rem;
}
.modal-footer {
  padding: 1rem 1.5rem 1.5rem;
}

/* Product Detail Page extras */
.detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  margin-top: 2rem;
}
.detail-gallery {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.detail-gallery img {
  max-height: 100%;
  object-fit: contain;
  padding: 2rem;
}
.detail-specs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
  margin: 1.5rem 0;
}
.spec-item {
  background: var(--color-surface-2);
  padding: 0.75rem 1rem;
  border-radius: var(--radius);
  font-size: 0.875rem;
}
.spec-item span {
  display: block;
  font-size: 0.7rem;
  color: var(--color-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.2rem;
}

/* Vehicle Finder */
.finder-form {
  display: grid;
  grid-template-columns: repeat(4, 1fr) auto;
  gap: 1rem;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 1.5rem;
}
.finder-form select {
  width: 100%;
  background: var(--color-surface-2);
  border: 1px solid var(--color-border);
  color: #fff;
  padding: 0.75rem;
  border-radius: var(--radius);
  font-size: 0.9rem;
}

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  top: 72px;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--color-bg);
  z-index: 999;
  padding: 2rem 1.5rem;
  transform: translateX(100%);
  transition: transform 0.35s ease;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu a {
  font-size: 1.25rem;
  font-weight: 500;
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--color-border);
}

/* Responsive */
@media (max-width: 1024px) {
  .nav-links { display: none; }
  .mobile-toggle { display: block; }
  .nav-search { display: none; }
  .about-grid, .contact-grid, .detail-grid {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .finder-form {
    grid-template-columns: 1fr 1fr;
  }
  .category-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .hero h1 { font-size: 2.25rem; }
  .hero-ctas { flex-direction: column; }
  .hero-ctas .btn { width: 100%; }
  .product-grid {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .about-stats {
    grid-template-columns: 1fr;
  }
  .finder-form {
    grid-template-columns: 1fr;
  }
  .filters-bar {
    flex-direction: column;
    align-items: stretch;
  }
  .filter-select, .filter-input {
    width: 100%;
  }
}

/* Scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Success toast */
.toast {
  position: fixed;
  bottom: 6rem;
  right: 1.5rem;
  background: var(--color-surface);
  border: 1px solid var(--color-success);
  color: #fff;
  padding: 1rem 1.5rem;
  border-radius: var(--radius);
  z-index: 3000;
  transform: translateY(20px);
  opacity: 0;
  transition: all 0.3s ease;
  box-shadow: var(--shadow);
}
.toast.show {
  transform: translateY(0);
  opacity: 1;
}

/* ========== Enhanced Premium Animations ========== */

/* Staggered product cards */
.product-card {
  opacity: 0;
  transform: translateY(28px);
  animation: cardIn 0.55s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}
.product-card:nth-child(1) { animation-delay: 0.05s; }
.product-card:nth-child(2) { animation-delay: 0.12s; }
.product-card:nth-child(3) { animation-delay: 0.19s; }
.product-card:nth-child(4) { animation-delay: 0.26s; }
.product-card:nth-child(5) { animation-delay: 0.33s; }
.product-card:nth-child(6) { animation-delay: 0.40s; }
.product-card:nth-child(7) { animation-delay: 0.47s; }
.product-card:nth-child(8) { animation-delay: 0.54s; }

@keyframes cardIn {
  to { opacity: 1; transform: translateY(0); }
}

/* Better product card hover */
.product-card {
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1),
              border-color 0.3s ease,
              box-shadow 0.4s ease;
}
.product-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.5), 0 0 0 1px rgba(178,34,34,0.25);
}

/* Image zoom smoother */
.product-card-image img {
  transition: transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

/* Feature cards stagger */
.feature-card {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease, border-color 0.3s ease;
}
.feature-card.visible {
  opacity: 1;
  transform: translateY(0);
}
.feature-card:nth-child(1) { transition-delay: 0.05s; }
.feature-card:nth-child(2) { transition-delay: 0.1s; }
.feature-card:nth-child(3) { transition-delay: 0.15s; }
.feature-card:nth-child(4) { transition-delay: 0.2s; }
.feature-card:nth-child(5) { transition-delay: 0.25s; }
.feature-card:nth-child(6) { transition-delay: 0.3s; }

/* Button micro interactions */
.btn {
  position: relative;
  overflow: hidden;
}
.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent, rgba(255,255,255,0.12), transparent);
  transform: translateX(-100%);
  transition: transform 0.5s ease;
}
.btn:hover::after {
  transform: translateX(100%);
}

/* Hero parallax-ish feel */
.hero-bg img {
  transition: transform 8s ease-out;
}
.hero:hover .hero-bg img {
  transform: scale(1.04);
}

/* Category cards enhanced */
.category-card {
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1),
              border-color 0.3s ease,
              box-shadow 0.45s ease;
}
.category-card:hover {
  transform: translateY(-6px) scale(1.01);
}

/* Smooth page load */
body {
  animation: pageFade 0.5s ease;
}
@keyframes pageFade {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* Navbar logo subtle pulse on load */
.logo-link img {
  animation: logoIn 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}
@keyframes logoIn {
  from { opacity: 0; transform: scale(0.9); }
  to { opacity: 1; transform: scale(1); }
}

/* Testimonial cards */
.testimonial-card {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}
.testimonial-card.visible {
  opacity: 1;
  transform: translateY(0);
}

/* WhatsApp float subtle bounce */
.whatsapp-float {
  animation: waFloat 3s ease-in-out infinite;
}
@keyframes waFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}
.whatsapp-float:hover {
  animation: none;
  transform: scale(1.1);
}

/* Scroll progress indicator (optional visual polish) */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 2px;
  background: var(--color-accent);
  z-index: 9999;
  width: 0%;
  transition: width 0.1s linear;
}

/* Admin link subtle in footer */
.admin-link {
  font-size: 0.7rem;
  color: #444;
  transition: color 0.2s;
}
.admin-link:hover {
  color: var(--color-text-muted);
}

/* ============================================================
   PREMIUM LEVEL UP — Visual System v2
   ============================================================ */

/* Refined surfaces */
:root {
  --color-surface: #0e0e0e;
  --color-surface-2: #161616;
  --color-border: #252525;
  --shadow-premium: 0 8px 32px rgba(0,0,0,0.45), 0 0 0 1px rgba(255,255,255,0.03);
  --shadow-hover: 0 20px 50px rgba(0,0,0,0.55), 0 0 0 1px rgba(178,34,34,0.2);
}

/* Navbar glass stronger */
.navbar {
  background: rgba(8, 8, 8, 0.75);
  backdrop-filter: blur(20px) saturate(1.4);
  -webkit-backdrop-filter: blur(20px) saturate(1.4);
}
.navbar.scrolled {
  background: rgba(8, 8, 8, 0.92);
  box-shadow: 0 4px 30px rgba(0,0,0,0.4);
}

/* Hero upgrade */
.hero {
  min-height: 100vh;
  min-height: 100dvh;
}
.hero-overlay {
  background:
    linear-gradient(105deg, rgba(8,8,8,0.95) 0%, rgba(8,8,8,0.75) 40%, rgba(8,8,8,0.35) 70%, rgba(8,8,8,0.55) 100%),
    linear-gradient(to top, rgba(8,8,8,0.7) 0%, transparent 40%);
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 0.9rem;
  background: rgba(178,34,34,0.12);
  border: 1px solid rgba(178,34,34,0.35);
  border-radius: 100px;
  font-size: 0.7rem;
  letter-spacing: 0.12em;
}
.hero h1 {
  text-shadow: 0 4px 40px rgba(0,0,0,0.5);
  letter-spacing: -0.02em;
}
.hero h1 span.accent {
  color: var(--color-accent);
}

/* Section headers with accent line */
.section-header h2 {
  position: relative;
  display: inline-block;
}
.section-header h2::after {
  content: '';
  display: block;
  width: 48px;
  height: 3px;
  background: var(--color-accent);
  margin: 0.85rem auto 0;
  border-radius: 2px;
}
.section-header[style*="text-align:left"] h2::after,
.section-header.text-left h2::after {
  margin-left: 0;
}

/* Product cards premium */
.product-card {
  background: linear-gradient(165deg, #121212 0%, #0c0c0c 100%);
  border: 1px solid #222;
  box-shadow: var(--shadow-premium);
}
.product-card:hover {
  border-color: rgba(178,34,34,0.35);
  box-shadow: var(--shadow-hover);
}
.product-card-image {
  background: radial-gradient(circle at 50% 40%, #1a1a1a 0%, #0a0a0a 70%);
}
.product-price {
  background: linear-gradient(90deg, #fff 0%, #ccc 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Category cards */
.category-card {
  box-shadow: var(--shadow-premium);
}
.category-overlay {
  background: linear-gradient(to top, rgba(0,0,0,0.92) 0%, rgba(0,0,0,0.3) 50%, transparent 100%);
}

/* Feature cards */
.feature-card {
  background: linear-gradient(160deg, #121212, #0d0d0d);
  border: 1px solid #222;
}
.feature-card:hover {
  border-color: rgba(178,34,34,0.3);
  box-shadow: 0 12px 40px rgba(0,0,0,0.4);
}
.feature-icon {
  background: linear-gradient(135deg, rgba(178,34,34,0.2), rgba(178,34,34,0.05));
  border: 1px solid rgba(178,34,34,0.2);
}

/* Buttons premium */
.btn-primary {
  background: linear-gradient(135deg, #c41e1e 0%, #9a1a1a 100%);
  box-shadow: 0 4px 16px rgba(178,34,34,0.3);
}
.btn-primary:hover {
  background: linear-gradient(135deg, #d42a2a 0%, #b22222 100%);
  box-shadow: 0 8px 28px rgba(178,34,34,0.45);
  transform: translateY(-2px);
}
.btn-outline {
  border-color: rgba(255,255,255,0.2);
  backdrop-filter: blur(4px);
}
.btn-outline:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.45);
}

/* About section */
.about-stats .stat-item {
  padding: 1rem;
  background: rgba(255,255,255,0.02);
  border: 1px solid #222;
  border-radius: 8px;
  text-align: center;
}

/* Testimonials */
.testimonial-card {
  background: linear-gradient(160deg, #121212, #0d0d0d);
  border: 1px solid #222;
  position: relative;
}
.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 0.75rem;
  right: 1.25rem;
  font-size: 3.5rem;
  font-family: Georgia, serif;
  color: rgba(178,34,34,0.15);
  line-height: 1;
}

/* Footer */
.footer {
  background: #060606;
  border-top: 1px solid #1a1a1a;
}

/* CTA banner */
.cta-banner {
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(178,34,34,0.12) 0%, transparent 70%);
  pointer-events: none;
}

/* Filters bar */
.filters-bar {
  background: rgba(14,14,14,0.8);
  border: 1px solid #222;
  border-radius: 10px;
  padding: 1rem 1.15rem;
  backdrop-filter: blur(8px);
}

/* Detail page */
.detail-gallery {
  background: radial-gradient(circle at center, #1a1a1a 0%, #0a0a0a 70%);
  border: 1px solid #222;
  box-shadow: var(--shadow-premium);
}
.spec-item {
  background: linear-gradient(145deg, #161616, #101010);
  border: 1px solid #222;
}

/* Scroll progress refined */
.scroll-progress {
  height: 2.5px;
  background: linear-gradient(90deg, #b22222, #e85a5a);
  box-shadow: 0 0 12px rgba(178,34,34,0.5);
}

/* Brand items */
.brand-item {
  background: linear-gradient(145deg, #141414, #0e0e0e);
  border: 1px solid #222;
  letter-spacing: 0.08em;
}
.brand-item:hover {
  border-color: rgba(178,34,34,0.4);
  color: #fff;
  box-shadow: 0 4px 20px rgba(0,0,0,0.3);
}

/* Smooth image loading */
img {
  transition: opacity 0.4s ease;
}

/* Selection color */
::selection {
  background: rgba(178,34,34,0.4);
  color: #fff;
}


/* ============================================================
   SOFTER / MORE ORGANIC SHAPES
   ============================================================ */
.product-card,
.category-card,
.feature-card,
.testimonial-card,
.brand-item,
.detail-gallery,
.spec-item,
.filters-bar,
.finder-form,
.stat-item,
.modal,
.about-stats .stat-item {
  border-radius: 16px !important;
}

.product-card-image,
.category-card img,
.apc-img,
.detail-gallery {
  border-radius: 14px 14px 0 0;
}
.product-card-image {
  border-radius: 14px 14px 0 0;
  overflow: hidden;
}

.btn, .btn-sm {
  border-radius: 10px !important;
}
.btn-primary, .btn-outline {
  border-radius: 10px;
}

.nav-search,
.filter-select,
.filter-input,
.form-group input,
.form-group textarea,
.form-group select,
.nav-search {
  border-radius: 10px !important;
}

.feature-icon {
  border-radius: 14px !important;
}

.whatsapp-float {
  border-radius: 50%;
}

.product-badge {
  border-radius: 8px !important;
}

.hero-badge {
  border-radius: 100px !important;
}

/* Softer product image area */
.product-card-image {
  background: radial-gradient(ellipse at 50% 30%, #1f1f1f 0%, #0a0a0a 75%);
}

/* Testimonial cards more organic */
.testimonial-card {
  border-radius: 18px !important;
  padding: 1.75rem 1.5rem !important;
}

/* Category cards rounded */
.category-card {
  border-radius: 18px !important;
}
.category-card img {
  border-radius: 18px;
}

/* Brand pills more pill-like */
.brand-item {
  border-radius: 100px !important;
  padding: 0.75rem 1.5rem !important;
}

/* Premium brand wall */
.brands-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.9rem;
  max-width: 1080px;
  margin: 0 auto;
}

.brand-item {
  position: relative;
  display: grid;
  min-height: 132px;
  place-items: center;
  overflow: hidden;
  padding: 1.4rem !important;
  border: 1px solid #dedbd4;
  border-radius: 16px !important;
  background:
    linear-gradient(135deg, rgba(255,255,255,0.9), transparent 48%),
    linear-gradient(145deg, #f7f5f0, #e9e6df);
  isolation: isolate;
}

.brand-item::after {
  content: "";
  position: absolute;
  inset: auto -30% -75% 25%;
  z-index: -1;
  height: 110px;
  border-radius: 50%;
  background: rgba(178, 34, 34, 0.16);
  filter: blur(28px);
  opacity: 0;
  transition: opacity var(--transition), transform var(--transition);
}

.brand-item img {
  width: 100%;
  max-width: 190px;
  height: 58px;
  object-fit: contain;
  opacity: 1;
  transition: transform var(--transition);
}

.brand-type {
  position: absolute;
  top: 0.75rem;
  right: 0.8rem;
  color: #6e6a63;
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.brand-item:hover {
  border-color: rgba(178, 34, 34, 0.55);
  transform: translateY(-4px);
  box-shadow: 0 16px 34px rgba(0,0,0,0.38);
}

.brand-item:hover::after {
  opacity: 1;
  transform: translateY(-10px);
}

.brand-item:hover img {
  transform: scale(1.04);
}

@media (max-width: 820px) {
  .brands-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .brand-item {
    min-height: 112px;
    padding: 1rem !important;
  }

  .brand-item img {
    max-width: 150px;
    height: 48px;
  }
}

@media (max-width: 430px) {
  .brands-grid {
    gap: 0.65rem;
  }

  .brand-item {
    min-height: 98px;
  }

  .brand-type {
    top: 0.55rem;
    right: 0.6rem;
  }

  .brands-note {
    align-items: flex-start;
    text-align: left;
  }
}

/* Soften filters bar */
.filters-bar {
  border-radius: 14px !important;
}

/* Finder form */
.finder-form {
  border-radius: 16px !important;
}

/* Modal */
.modal {
  border-radius: 16px !important;
}

/* ===== Real-feeling testimonials ===== */
.t-header {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  margin-bottom: 0.85rem;
}
.t-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.1rem;
  color: #fff;
  flex-shrink: 0;
}
.t-meta {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}
.t-meta strong {
  font-size: 0.95rem;
}
.t-city {
  font-size: 0.75rem;
  color: var(--color-text-muted);
}
.testimonial-card .stars {
  color: #f59e0b;
  font-size: 0.95rem;
  letter-spacing: 0.05em;
  margin-bottom: 0.75rem;
}
.testimonial-card p {
  font-size: 0.92rem;
  line-height: 1.65;
  color: #c8c8c8;
  font-style: normal;
}

/* Better product image framing */
.product-card-image {
  padding: 0;
  aspect-ratio: 1;
}
.product-card-image img {
  padding: 1.75rem;
  object-fit: contain;
}

/* Softer section spacing */
.section {
  padding: 5.5rem 0;
}

/* Hero CTA buttons more pill-like */
.hero-ctas .btn {
  border-radius: 12px !important;
  padding: 1rem 1.85rem;
}

/* Category overlay text */
.category-overlay h3 {
  font-size: 1.65rem;
}
.category-overlay {
  padding: 2rem;
}

/* Testimonial grid denser on desktop */
.testimonial-grid {
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.25rem;
}

/* ============================================================
   VISUAL POLISH v3 — warmer, deeper, more refined
   ============================================================ */

:root {
  --color-bg: #070707;
  --color-surface: #0f0f0f;
  --color-surface-2: #161616;
  --color-border: #262626;
  --color-accent: #c62828;
  --color-accent-soft: rgba(198, 40, 40, 0.14);
  --radius-lg: 18px;
  --radius-md: 12px;
  --shadow-card: 0 4px 24px rgba(0,0,0,0.35), 0 0 0 1px rgba(255,255,255,0.03);
  --shadow-card-hover: 0 16px 48px rgba(0,0,0,0.5), 0 0 0 1px rgba(198,40,40,0.25);
}

body {
  background: var(--color-bg);
  background-image:
    radial-gradient(ellipse 80% 50% at 50% -20%, rgba(198,40,40,0.08), transparent),
    radial-gradient(ellipse 60% 40% at 100% 100%, rgba(198,40,40,0.04), transparent);
  background-attachment: fixed;
}

/* Navbar */
.navbar {
  background: rgba(7,7,7,0.72) !important;
  backdrop-filter: blur(24px) saturate(1.5);
  -webkit-backdrop-filter: blur(24px) saturate(1.5);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.navbar.scrolled {
  background: rgba(7,7,7,0.92) !important;
  box-shadow: 0 8px 32px rgba(0,0,0,0.45);
}
.nav-links a {
  position: relative;
  transition: color 0.2s;
}
.nav-links a::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: -4px;
  height: 2px;
  background: var(--color-accent);
  border-radius: 2px;
  transform: scaleX(0);
  transition: transform 0.25s ease;
}
.nav-links a:hover::after,
.nav-links a.active::after {
  transform: scaleX(1);
}

/* Hero */
.hero {
  position: relative;
  overflow: hidden;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 120px;
  background: linear-gradient(to top, var(--color-bg), transparent);
  pointer-events: none;
  z-index: 2;
}
.hero-overlay {
  background:
    linear-gradient(105deg, rgba(7,7,7,0.92) 0%, rgba(7,7,7,0.7) 42%, rgba(7,7,7,0.25) 72%, rgba(7,7,7,0.55) 100%),
    linear-gradient(to top, rgba(7,7,7,0.85) 0%, transparent 45%) !important;
}
.hero-badge {
  background: var(--color-accent-soft) !important;
  border-color: rgba(198,40,40,0.4) !important;
  backdrop-filter: blur(8px);
}
.hero h1 {
  letter-spacing: -0.03em;
  line-height: 1.08;
}
.hero h1 .accent {
  background: linear-gradient(135deg, #e53935, #c62828 50%, #ff6b6b);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-ctas .btn {
  min-width: 160px;
}

/* Buttons */
.btn-primary {
  background: linear-gradient(135deg, #d32f2f 0%, #b71c1c 100%) !important;
  border: none !important;
  box-shadow: 0 4px 20px rgba(198,40,40,0.35), inset 0 1px 0 rgba(255,255,255,0.12);
  transition: transform 0.2s, box-shadow 0.2s, filter 0.2s;
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(198,40,40,0.5), inset 0 1px 0 rgba(255,255,255,0.15);
  filter: brightness(1.08);
}
.btn-outline {
  border: 1px solid rgba(255,255,255,0.18) !important;
  background: rgba(255,255,255,0.03) !important;
  backdrop-filter: blur(6px);
}
.btn-outline:hover {
  background: rgba(255,255,255,0.08) !important;
  border-color: rgba(255,255,255,0.35) !important;
}

/* Section headers */
.section {
  padding: 5rem 0;
}
.section-header h2 {
  letter-spacing: -0.02em;
}
.section-header h2::after {
  width: 40px;
  height: 3px;
  background: linear-gradient(90deg, var(--color-accent), transparent);
  border-radius: 3px;
  margin-top: 0.9rem;
}

/* Cards */
.product-card,
.category-card,
.feature-card,
.testimonial-card {
  border-radius: var(--radius-lg) !important;
  border: 1px solid rgba(255,255,255,0.06) !important;
  background: linear-gradient(165deg, #141414 0%, #0c0c0c 100%) !important;
  box-shadow: var(--shadow-card);
  transition: transform 0.35s cubic-bezier(0.22,1,0.36,1), box-shadow 0.35s, border-color 0.3s;
}
.product-card:hover,
.feature-card:hover,
.testimonial-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-card-hover);
  border-color: rgba(198,40,40,0.3) !important;
}
.product-card-image {
  background: radial-gradient(ellipse at 50% 30%, #222 0%, #0a0a0a 70%) !important;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0 !important;
}
.product-card-image img {
  transition: transform 0.5s cubic-bezier(0.22,1,0.36,1);
}
.product-card:hover .product-card-image img {
  transform: scale(1.06);
}
.product-price {
  background: linear-gradient(90deg, #fff, #c9c9c9);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 700;
}

/* Category */
.category-card {
  overflow: hidden;
}
.category-card img {
  transition: transform 0.6s cubic-bezier(0.22,1,0.36,1);
}
.category-card:hover img {
  transform: scale(1.08);
}
.category-overlay {
  background: linear-gradient(to top, rgba(0,0,0,0.92) 0%, rgba(0,0,0,0.2) 55%, transparent 100%) !important;
}

/* Features */
.feature-icon {
  background: linear-gradient(135deg, rgba(198,40,40,0.25), rgba(198,40,40,0.06)) !important;
  border: 1px solid rgba(198,40,40,0.25) !important;
  border-radius: 14px !important;
}

/* Brands */
.brand-item {
  border-radius: 14px !important;
  background: linear-gradient(145deg, #151515, #0e0e0e) !important;
  border: 1px solid rgba(255,255,255,0.06) !important;
  transition: border-color 0.25s, transform 0.25s, box-shadow 0.25s;
}
.brand-item:hover {
  border-color: rgba(198,40,40,0.35) !important;
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.3);
}
.brand-item img {
  filter: grayscale(0.3) brightness(0.95);
  transition: filter 0.3s;
}
.brand-item:hover img {
  filter: none;
}

/* Testimonials */
.testimonial-card {
  border-radius: 18px !important;
}
.t-avatar {
  box-shadow: 0 0 0 2px rgba(198,40,40,0.25);
}

/* Filters */
.filters-bar {
  border-radius: 14px !important;
  background: rgba(15,15,15,0.85) !important;
  border: 1px solid rgba(255,255,255,0.06) !important;
  backdrop-filter: blur(12px);
}

/* Footer */
.footer {
  background: #050505 !important;
  border-top: 1px solid rgba(255,255,255,0.05) !important;
  position: relative;
}
.footer::before {
  content: '';
  position: absolute;
  top: 0; left: 10%; right: 10%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(198,40,40,0.35), transparent);
}

/* WhatsApp float */
.whatsapp-float {
  box-shadow: 0 6px 24px rgba(37,211,102,0.4) !important;
  transition: transform 0.25s, box-shadow 0.25s;
}
.whatsapp-float:hover {
  transform: scale(1.08);
  box-shadow: 0 10px 32px rgba(37,211,102,0.55) !important;
}

/* CTA banner */
.cta-banner {
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  inset: -40%;
  background: radial-gradient(circle at 30% 50%, rgba(198,40,40,0.15), transparent 50%),
              radial-gradient(circle at 70% 50%, rgba(198,40,40,0.08), transparent 45%);
  pointer-events: none;
  animation: ctaGlow 8s ease-in-out infinite alternate;
}
@keyframes ctaGlow {
  from { opacity: 0.6; transform: scale(1); }
  to { opacity: 1; transform: scale(1.05); }
}

/* Scroll reveal smoother */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s cubic-bezier(0.22,1,0.36,1), transform 0.7s cubic-bezier(0.22,1,0.36,1);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Modal */
.modal-overlay {
  backdrop-filter: blur(8px);
  background: rgba(0,0,0,0.7) !important;
}
.modal {
  border-radius: 18px !important;
  border: 1px solid rgba(255,255,255,0.08) !important;
  box-shadow: 0 24px 64px rgba(0,0,0,0.6);
  background: #111 !important;
}

/* Toast */
.toast {
  border-radius: 12px !important;
  background: #1a1a1a !important;
  border: 1px solid rgba(198,40,40,0.35) !important;
  box-shadow: 0 12px 40px rgba(0,0,0,0.5);
}

/* Spec items / detail */
.spec-item {
  border-radius: 12px !important;
  background: linear-gradient(145deg, #161616, #101010) !important;
  border: 1px solid rgba(255,255,255,0.06) !important;
}
.detail-gallery {
  border-radius: 18px !important;
  border: 1px solid rgba(255,255,255,0.06) !important;
  box-shadow: var(--shadow-card);
}

/* Contact form */
.contact-form input,
.contact-form textarea,
.contact-form select {
  border-radius: 10px !important;
  border: 1px solid rgba(255,255,255,0.08) !important;
  background: #141414 !important;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
  border-color: rgba(198,40,40,0.5) !important;
  box-shadow: 0 0 0 3px rgba(198,40,40,0.12);
  outline: none;
}

/* About stats */
.about-stats .stat-item {
  border-radius: 14px !important;
  background: linear-gradient(145deg, #151515, #0e0e0e) !important;
  border: 1px solid rgba(255,255,255,0.06) !important;
  transition: border-color 0.25s, transform 0.25s;
}
.about-stats .stat-item:hover {
  border-color: rgba(198,40,40,0.3);
  transform: translateY(-2px);
}

/* Soft page transitions feel */
main {
  min-height: 60vh;
}

/* Selection */
::selection {
  background: rgba(198,40,40,0.45);
  color: #fff;
}

/* Scrollbar */
::-webkit-scrollbar { width: 8px; height: 8px; }
::-webkit-scrollbar-track { background: #0a0a0a; }
::-webkit-scrollbar-thumb {
  background: #333;
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover { background: #c62828; }

@media (max-width: 768px) {
  .section { padding: 3.5rem 0; }
  .hero h1 { font-size: clamp(1.85rem, 8vw, 2.6rem); }
  .product-card:hover { transform: translateY(-3px); }
}
