/* DepoAuto - Sistema de diseño */
@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800&display=swap');

:root {
  --depo-nav-height: 64px;
  --depo-primary: #0f172a;
  --depo-primary-light: #1e293b;
  --depo-accent: #ea580c;
  --depo-accent-hover: #c2410c;
  --depo-accent-soft: rgba(234, 88, 12, 0.12);
  --depo-surface: #ffffff;
  --depo-bg: #f8fafc;
  --depo-bg-warm: #fefce8;
  --depo-text: #0f172a;
  --depo-text-muted: #64748b;
  --depo-border: #e2e8f0;
  --depo-shadow: 0 4px 6px -1px rgba(15, 23, 42, 0.08), 0 2px 4px -2px rgba(15, 23, 42, 0.06);
  --depo-shadow-lg: 0 20px 25px -5px rgba(15, 23, 42, 0.08), 0 8px 10px -6px rgba(15, 23, 42, 0.06);
  --depo-radius: 12px;
  --depo-radius-lg: 16px;
  --depo-transition: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
}

body {
  background: linear-gradient(180deg, var(--depo-bg) 0%, var(--depo-bg-warm) 100%);
  color: var(--depo-text);
  min-height: 100vh;
  padding-top: var(--depo-nav-height);
}

/* Navbar - siempre visible (fixed) */
.navbar-depo {
  position: fixed !important;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1030;
  background: rgba(255, 255, 255, 0.98) !important;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 1px 3px rgba(15, 23, 42, 0.08);
  padding: 0.75rem 0;
}

.navbar-depo .navbar-brand {
  font-weight: 800;
  font-size: 1.35rem;
  color: var(--depo-primary) !important;
  letter-spacing: -0.02em;
}

.navbar-depo .nav-link {
  font-weight: 500;
  color: var(--depo-text-muted) !important;
  padding: 0.5rem 1rem !important;
  border-radius: 8px;
  transition: var(--depo-transition);
}

.navbar-depo .nav-link:hover {
  color: var(--depo-primary) !important;
  background: var(--depo-accent-soft);
}

.navbar-depo .nav-link.active {
  color: var(--depo-accent) !important;
  background: var(--depo-accent-soft);
  font-weight: 600;
}

.navbar-depo .nav-link::after {
  display: none;
}

/* Hero: el borde redondeado y el overflow solo en el viewport de la imagen;
   flechas e indicadores quedan fuera para evitar solapes y la “raya” de un solo indicador en móvil */
.hero-depo.hero-carousel-root {
  overflow: visible;
  border-radius: 0;
  box-shadow: none;
  position: relative;
}

.hero-carousel-layout {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

@media (min-width: 768px) {
  .hero-carousel-layout {
    gap: 0.75rem;
  }
}

.hero-depo-viewport {
  flex: 1 1 auto;
  min-width: 0;
  border-radius: var(--depo-radius-lg);
  overflow: hidden;
  box-shadow: var(--depo-shadow-lg);
}

.hero-depo .carousel-item {
  background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
}

/* Altura fija del área hero; contain = imagen completa sin recorte (bandas con el fondo del slide) */
.hero-depo .carousel-item img {
  width: 100%;
  height: 280px;
  object-fit: contain;
  object-position: center;
  display: block;
  margin: 0 auto;
}

@media (min-width: 576px) {
  .hero-depo .carousel-item img {
    height: 340px;
  }
}

@media (min-width: 768px) {
  .hero-depo .carousel-item img {
    height: 480px;
    max-height: none;
  }
}

@media (min-width: 992px) {
  .hero-depo .carousel-item img {
    height: 520px;
  }
}

.hero-depo .carousel-caption {
  background: linear-gradient(0deg, rgba(15, 23, 42, 0.85) 0%, transparent 100%);
  bottom: 0;
  left: 0;
  right: 0;
  padding: 3rem 2rem 2rem;
  text-align: left;
}

.hero-depo .carousel-caption h2 {
  font-weight: 800;
  font-size: clamp(1.5rem, 4vw, 2.25rem);
  letter-spacing: -0.02em;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.hero-depo .carousel-caption .lead {
  font-size: 1.1rem;
  opacity: 0.95;
}

.hero-depo .btn-hero {
  background: var(--depo-accent);
  border: none;
  color: white;
  font-weight: 600;
  padding: 0.75rem 1.5rem;
  border-radius: 10px;
  transition: var(--depo-transition);
  box-shadow: 0 4px 14px rgba(234, 88, 12, 0.4);
}

.hero-depo .btn-hero:hover {
  background: var(--depo-accent-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(234, 88, 12, 0.45);
  color: white;
}

.hero-depo .hero-depo-control-side.carousel-control-prev,
.hero-depo .hero-depo-control-side.carousel-control-next {
  position: static;
  top: auto;
  left: auto;
  right: auto;
  bottom: auto;
  transform: none;
  width: 44px;
  height: 44px;
  flex: 0 0 auto;
  margin: 0;
  background: rgba(255, 255, 255, 0.92);
  border-radius: 50%;
  opacity: 1;
  box-shadow: var(--depo-shadow);
}

@media (min-width: 768px) {
  .hero-depo .hero-depo-control-side.carousel-control-prev,
  .hero-depo .hero-depo-control-side.carousel-control-next {
    width: 48px;
    height: 48px;
  }
}

.hero-depo .hero-depo-control-side .carousel-control-prev-icon,
.hero-depo .hero-depo-control-side .carousel-control-next-icon {
  filter: invert(1);
  opacity: 0.7;
}

.hero-depo .hero-depo-indicators.carousel-indicators {
  position: static;
  left: auto;
  right: auto;
  bottom: auto;
  margin: 0.65rem 0 0;
  padding: 0;
  justify-content: center;
  align-items: center;
  gap: 0.45rem;
  flex-wrap: wrap;
}

/* Puntos circulares tipo galería Instagram (no pastillas del carousel por defecto) */
.hero-depo .hero-depo-indicators [data-bs-target] {
  flex: 0 0 6px;
  width: 6px;
  height: 6px;
  min-width: 0;
  max-width: none;
  margin: 0;
  padding: 0;
  border: none;
  border-radius: 50%;
  box-sizing: border-box;
  background-color: rgba(15, 23, 42, 0.2);
  opacity: 1;
  text-indent: -9999px;
  overflow: hidden;
  transition: transform 0.2s ease, background-color 0.2s ease;
}

.hero-depo .hero-depo-indicators [data-bs-target].active {
  background-color: var(--depo-primary);
  transform: scale(1.4);
}

@media (prefers-reduced-motion: reduce) {
  .hero-depo .hero-depo-indicators [data-bs-target] {
    transition: none;
  }
}

/* Cards */
.card-depo {
  background: var(--depo-surface);
  border: 1px solid var(--depo-border);
  border-radius: var(--depo-radius);
  overflow: hidden;
  transition: var(--depo-transition);
  box-shadow: var(--depo-shadow);
}

.card-depo:hover {
  transform: translateY(-4px);
  box-shadow: var(--depo-shadow-lg);
  border-color: transparent;
}

.card-depo .card-body {
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
}

.card-depo .card-title {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--depo-primary);
  line-height: 1.4;
  word-break: break-word;
  overflow-wrap: anywhere;
  hyphens: auto;
  margin-bottom: 0.35rem;
}

@media (min-width: 768px) {
  .card-depo .card-title {
    font-size: 1rem;
  }
}

.card-depo .card-body .btn {
  margin-top: auto;
}

/* Category cards */
.category-depo {
  aspect-ratio: 1;
  border-radius: var(--depo-radius);
  overflow: hidden;
  position: relative;
  background-size: cover;
  background-position: center;
  transition: var(--depo-transition);
}

.category-depo::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(15, 23, 42, 0.85) 100%);
  transition: var(--depo-transition);
}

.category-depo:hover {
  transform: scale(1.03);
  box-shadow: var(--depo-shadow-lg);
}

.category-depo:hover::before {
  background: linear-gradient(180deg, transparent 20%, rgba(15, 23, 42, 0.9) 100%);
}

.category-depo span {
  position: absolute;
  bottom: 1rem;
  left: 1rem;
  right: 1rem;
  font-weight: 700;
  font-size: 1.1rem;
  color: white;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
  z-index: 1;
}

/* ========== Home page ========== */
.home-wrapper {
  display: flex;
  flex-direction: column;
  gap: 3.5rem;
}

.home-kpis {
  margin-top: -0.5rem;
}

.kpi-card {
  background: var(--depo-surface);
  border: 1px solid var(--depo-border);
  border-radius: var(--depo-radius);
  padding: 1.5rem 1.25rem;
  text-align: center;
  transition: var(--depo-transition);
  height: 100%;
  box-shadow: var(--depo-shadow);
}

.kpi-card:hover {
  border-color: var(--depo-accent);
  transform: translateY(-3px);
  box-shadow: 0 0 0 3px var(--depo-accent-soft);
}

.kpi-card-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: var(--depo-accent-soft);
  color: var(--depo-accent);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.85rem;
}

.kpi-card-title {
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--depo-primary);
  margin-bottom: 0.2rem;
  letter-spacing: -0.01em;
}

.kpi-card-sub {
  font-size: 0.85rem;
  color: var(--depo-text-muted);
  line-height: 1.4;
}

.home-section .section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}

.home-section .section-head .section-title-underlined {
  margin-bottom: 0;
}

/* KPI badges (legacy) */
.kpi-depo {
  background: var(--depo-surface);
  border: 1px solid var(--depo-border);
  border-radius: var(--depo-radius);
  padding: 1rem 1.25rem;
  transition: var(--depo-transition);
}

.kpi-depo:hover {
  border-color: var(--depo-accent);
  box-shadow: 0 0 0 3px var(--depo-accent-soft);
}

.kpi-depo .kpi-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--depo-accent-soft);
  color: var(--depo-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
}

.kpi-depo .kpi-title {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--depo-primary);
}

.kpi-depo .kpi-sub {
  font-size: 0.8rem;
  color: var(--depo-text-muted);
}

/* Buttons */
.btn-depo-primary {
  background: var(--depo-accent);
  border: none;
  color: white;
  font-weight: 600;
  padding: 0.5rem 1.25rem;
  border-radius: 10px;
  transition: var(--depo-transition);
}

.btn-depo-primary:hover {
  background: var(--depo-accent-hover);
  color: white;
  transform: translateY(-1px);
}

.btn-depo-outline {
  border: 2px solid var(--depo-accent);
  color: var(--depo-accent);
  font-weight: 600;
  padding: 0.5rem 1.25rem;
  border-radius: 10px;
  transition: var(--depo-transition);
}

.btn-depo-outline:hover {
  background: var(--depo-accent-soft);
  color: var(--depo-accent-hover);
  border-color: var(--depo-accent-hover);
}

/* Section headers */
.section-header {
  font-weight: 800;
  font-size: 1.5rem;
  letter-spacing: -0.02em;
  color: var(--depo-primary);
  margin-bottom: 1.5rem;
}

.section-header small {
  font-weight: 500;
  color: var(--depo-text-muted);
  font-size: 0.9rem;
}

/* Product images - carga suave sin parpadeo */
.product-img-depo,
.img-reserve .img-contain {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  background: #e2e8f0;
  padding: 0.5rem;
  display: block;
  opacity: 0;
  transition: opacity 0.25s ease-out;
}

.product-img-depo.loaded,
.img-reserve .img-contain.loaded {
  opacity: 1;
}

/* Skeleton visible mientras carga */
.ratio.img-reserve {
  min-height: 0;
  background: linear-gradient(135deg, #e2e8f0 0%, #f1f5f9 100%);
}

/* ========== Catalog (product list) ========== */
.catalog-wrapper {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.catalog-header {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 0.5rem;
}

@media (min-width: 768px) {
  .catalog-header {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-end;
  }
}

/* Sidebar (new) */
.catalog-sidebar {
  padding: 0;
  overflow: hidden;
  position: sticky;
  top: calc(var(--depo-nav-height) + 1rem);
}

.catalog-sidebar-head {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  padding: 1rem 1.25rem;
  background: var(--depo-bg);
  border-bottom: 1px solid var(--depo-border);
  font-weight: 700;
  color: var(--depo-primary);
  font-size: 0.95rem;
}

.catalog-sidebar-icon {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: var(--depo-accent-soft);
  color: var(--depo-accent);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.catalog-categories {
  list-style: none;
  padding: 0.5rem;
  margin: 0;
}

.catalog-categories li {
  border-radius: 8px;
  margin-bottom: 0.15rem;
  transition: var(--depo-transition);
}

.catalog-categories li a {
  display: block;
  padding: 0.65rem 0.85rem;
  color: var(--depo-text-muted);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.92rem;
  border-radius: 8px;
  transition: var(--depo-transition);
}

.catalog-categories li:hover a {
  color: var(--depo-accent);
  background: var(--depo-accent-soft);
}

.catalog-categories li.active a {
  color: var(--depo-accent);
  background: var(--depo-accent-soft);
  font-weight: 600;
}

/* Search (redesigned) */
.search-depo-pill {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--depo-surface);
  border: 1px solid var(--depo-border);
  border-radius: 999px;
  padding: 0.3rem 0.3rem 0.3rem 1rem;
  transition: var(--depo-transition);
  box-shadow: var(--depo-shadow);
  width: 100%;
}

.search-depo-pill:focus-within {
  border-color: var(--depo-accent);
  box-shadow: 0 0 0 3px var(--depo-accent-soft);
}

.search-depo-pill .search-icon {
  color: var(--depo-text-muted);
  display: inline-flex;
  flex-shrink: 0;
}

.search-depo-pill .form-control {
  border: none;
  background: transparent;
  padding: 0.5rem 0.5rem;
  box-shadow: none !important;
  font-size: 0.95rem;
  min-width: 0;
}

.search-depo-pill .form-control:focus {
  outline: none;
  border: none;
}

.search-depo-pill .btn {
  border-radius: 999px;
  padding: 0.5rem 1.25rem;
  flex-shrink: 0;
}

@media (min-width: 768px) {
  .search-depo-pill {
    width: auto;
    min-width: 360px;
  }
}

/* Empty state */
.empty-state-icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--depo-accent-soft);
  color: var(--depo-accent);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
}

/* Legacy sidebar-depo (kept for compat) */
.sidebar-depo {
  background: var(--depo-surface);
  border: 1px solid var(--depo-border);
  border-radius: var(--depo-radius);
  overflow: hidden;
  box-shadow: var(--depo-shadow);
}

.sidebar-depo .list-group-item {
  border: none;
  border-bottom: 1px solid var(--depo-border);
  padding: 0.75rem 1rem;
  font-weight: 500;
  transition: var(--depo-transition);
}

.sidebar-depo .list-group-item:last-child {
  border-bottom: none;
}

.sidebar-depo .list-group-item a {
  color: var(--depo-text-muted);
  text-decoration: none;
  transition: var(--depo-transition);
}

.sidebar-depo .list-group-item:hover a,
.sidebar-depo .list-group-item.active a {
  color: var(--depo-accent);
}

.sidebar-depo .list-group-item.active {
  background: var(--depo-accent-soft);
}

/* Search (legacy) */
.search-depo .form-control {
  border-radius: 10px;
  border: 1px solid var(--depo-border);
  padding: 0.6rem 1rem;
}

.search-depo .form-control:focus {
  border-color: var(--depo-accent);
  box-shadow: 0 0 0 3px var(--depo-accent-soft);
}

/* ========== Product detail ========== */
.detail-wrapper {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.detail-gallery {
  border-radius: var(--depo-radius-lg);
  overflow: hidden;
  background: var(--depo-surface);
  border: 1px solid var(--depo-border);
  box-shadow: var(--depo-shadow);
}

.detail-gallery .carousel-inner {
  background: #fff;
}

.detail-thumbs {
  display: flex;
  gap: 0.5rem;
  overflow-x: auto;
  padding-bottom: 0.25rem;
  scroll-behavior: smooth;
}

.detail-thumb {
  flex-shrink: 0;
  width: 72px;
  height: 72px;
  border-radius: 10px;
  border: 2px solid var(--depo-border);
  background: #fff;
  padding: 0.2rem;
  cursor: pointer;
  transition: var(--depo-transition);
  overflow: hidden;
}

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

.detail-thumb:hover {
  border-color: var(--depo-accent);
}

.detail-thumb.active {
  border-color: var(--depo-accent);
  box-shadow: 0 0 0 3px var(--depo-accent-soft);
}

.detail-info {
  background: var(--depo-surface);
  border: 1px solid var(--depo-border);
  border-radius: var(--depo-radius-lg);
  padding: 1.75rem;
  box-shadow: var(--depo-shadow);
  height: 100%;
}

@media (min-width: 768px) {
  .detail-info {
    padding: 2.25rem;
  }
}

.detail-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 0.85rem;
}

.detail-category {
  display: inline-block;
  background: var(--depo-accent-soft);
  color: var(--depo-accent);
  padding: 0.3rem 0.8rem;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.detail-sku {
  display: inline-block;
  background: var(--depo-bg);
  color: var(--depo-text-muted);
  padding: 0.3rem 0.8rem;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.05em;
}

.detail-title {
  font-weight: 800;
  font-size: clamp(1.5rem, 3vw, 2rem);
  letter-spacing: -0.02em;
  color: var(--depo-primary);
  line-height: 1.2;
  margin-bottom: 1rem;
  word-break: break-word;
}

.detail-description {
  color: var(--depo-text-muted);
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.detail-features {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  padding: 1rem;
  background: var(--depo-bg);
  border-radius: var(--depo-radius);
  border: 1px solid var(--depo-border);
}

.detail-feature {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--depo-primary);
}

.detail-feature-icon {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: var(--depo-accent-soft);
  color: var(--depo-accent);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.btn-whatsapp-cta {
  background: #25D366;
  color: #fff !important;
  border: none;
  font-weight: 700;
  padding: 0.85rem 1.5rem;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  box-shadow: 0 4px 14px rgba(37, 211, 102, 0.35);
  transition: var(--depo-transition);
}

.btn-whatsapp-cta:hover {
  background: #1ebe5d;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(37, 211, 102, 0.45);
}

.detail-contact-hint {
  text-align: center;
  color: var(--depo-text-muted);
  font-size: 0.88rem;
  margin: 1rem 0 0;
}

.detail-contact-hint a {
  color: var(--depo-accent);
  text-decoration: none;
  font-weight: 600;
}

.detail-contact-hint a:hover {
  text-decoration: underline;
}

.detail-related {
  padding-top: 2rem;
  border-top: 1px solid var(--depo-border);
}

/* Pagination */
.pagination-depo .page-link {
  border-radius: 8px !important;
  margin: 0 2px;
  font-weight: 500;
  color: var(--depo-primary);
}

.pagination-depo .page-item.active .page-link {
  background: var(--depo-accent);
  border-color: var(--depo-accent);
}

/* Footer */
.footer-depo {
  background: var(--depo-primary);
  color: rgba(255, 255, 255, 0.8);
  padding: 3rem 0 1.5rem;
  margin-top: 4rem;
}

.footer-depo a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: var(--depo-transition);
}

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

.footer-depo .footer-heading {
  font-weight: 700;
  font-size: 1rem;
  color: #ffffff;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.footer-depo .footer-brand {
  font-weight: 800;
  font-size: 1.35rem;
  color: #ffffff;
  letter-spacing: -0.02em;
  display: inline-block;
  margin-bottom: 0.75rem;
}

.footer-depo .footer-tagline {
  font-size: 0.9rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.7);
  max-width: 320px;
}

.footer-depo .footer-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-depo .footer-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  margin-bottom: 0.75rem;
  font-size: 0.92rem;
  line-height: 1.5;
}

.footer-depo .footer-icon {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: rgba(234, 88, 12, 0.15);
  color: var(--depo-accent);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.footer-depo .footer-list strong {
  color: #ffffff;
  font-weight: 600;
  display: block;
  margin-bottom: 0.15rem;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  opacity: 0.85;
}

.footer-depo .footer-divider {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin: 2rem 0 1.25rem;
}

.footer-depo .footer-bottom {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.6);
}

/* ========== Contact page ========== */
.contact-wrapper {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-depo .form-control,
.contact-depo .form-label {
  border-radius: 10px;
}

.contact-depo .form-control:focus {
  border-color: var(--depo-accent);
  box-shadow: 0 0 0 3px var(--depo-accent-soft);
}

.contact-depo .card {
  border-radius: var(--depo-radius-lg);
  border: 1px solid var(--depo-border);
  box-shadow: var(--depo-shadow);
}

.contact-info-card {
  background: linear-gradient(135deg, var(--depo-primary) 0%, var(--depo-primary-light) 100%);
  color: #fff;
  border-radius: var(--depo-radius-lg);
  padding: 2rem 1.75rem;
  box-shadow: var(--depo-shadow-lg);
  position: relative;
  overflow: hidden;
}

.contact-info-card::before {
  content: '';
  position: absolute;
  top: -30%;
  right: -20%;
  width: 260px;
  height: 260px;
  background: radial-gradient(circle, var(--depo-accent-soft) 0%, transparent 70%);
  pointer-events: none;
}

.contact-info-card > * {
  position: relative;
}

.contact-info-list {
  list-style: none;
  padding: 0;
  margin: 0.5rem 0 0;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.contact-info-list li,
.contact-info-list li a {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  font-size: 0.95rem;
  line-height: 1.5;
  transition: var(--depo-transition);
}

.contact-info-list li a:hover {
  color: var(--depo-accent);
}

.contact-info-list strong {
  display: block;
  color: #fff;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 700;
  margin-bottom: 0.2rem;
  opacity: 0.8;
}

.contact-info-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(234, 88, 12, 0.2);
  color: var(--depo-accent);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

/* ========== Shared utilities ========== */
.eyebrow {
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--depo-accent);
  background: var(--depo-accent-soft);
  padding: 0.35rem 0.85rem;
  border-radius: 999px;
}

.page-hero {
  text-align: center;
  max-width: 820px;
  margin: 0 auto 2rem;
  padding: 0.5rem 0;
}

.page-hero .eyebrow {
  margin-bottom: 1.25rem;
}

.page-hero-title {
  font-weight: 800;
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  letter-spacing: -0.02em;
  color: var(--depo-primary);
  line-height: 1.15;
  margin-bottom: 1rem;
}

.page-hero-title-accent {
  color: var(--depo-accent);
  position: relative;
  white-space: nowrap;
}

.page-hero-title-accent::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0.05em;
  height: 0.35em;
  background: var(--depo-accent-soft);
  z-index: -1;
  border-radius: 4px;
}

.page-hero-lead {
  font-size: 1.1rem;
  line-height: 1.7;
  color: var(--depo-text-muted);
  max-width: 640px;
  margin: 0 auto;
}

.section-title-underlined {
  font-weight: 800;
  font-size: 1.35rem;
  color: var(--depo-primary);
  letter-spacing: -0.01em;
  margin-bottom: 1.25rem;
  position: relative;
  padding-bottom: 0.5rem;
}

.section-title-underlined::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 48px;
  height: 3px;
  background: var(--depo-accent);
  border-radius: 2px;
}

.section-title-underlined.text-center::after {
  left: 50%;
  transform: translateX(-50%);
}

/* CTA banner (reusable dark gradient) */
.cta-banner {
  background: linear-gradient(135deg, var(--depo-primary) 0%, var(--depo-primary-light) 100%);
  color: #fff;
  padding: 2.5rem 1.5rem;
  border-radius: var(--depo-radius-lg);
  box-shadow: var(--depo-shadow-lg);
  position: relative;
  overflow: hidden;
  text-align: center;
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: -40%;
  right: -10%;
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, var(--depo-accent-soft) 0%, transparent 70%);
  pointer-events: none;
}

.cta-banner > * {
  position: relative;
}

.cta-banner h3 {
  font-weight: 800;
  letter-spacing: -0.01em;
  margin-bottom: 0.5rem;
}

.cta-banner p {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 1.25rem;
}

.cta-banner .btn-depo-outline {
  border-color: #fff;
  color: #fff;
}

.cta-banner .btn-depo-outline:hover {
  background: #fff;
  color: var(--depo-primary);
  border-color: #fff;
}

/* Brand chips (reusable) */
.brand-chips {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  justify-content: center;
}

.brand-chips li {
  background: var(--depo-surface);
  border: 1px solid var(--depo-border);
  color: var(--depo-primary);
  padding: 0.55rem 1.15rem;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  transition: var(--depo-transition);
  box-shadow: var(--depo-shadow);
}

.brand-chips li:hover {
  background: var(--depo-accent);
  color: #fff;
  border-color: var(--depo-accent);
  transform: translateY(-2px);
}

/* Breadcrumbs */
.breadcrumb-depo {
  font-size: 0.9rem;
  color: var(--depo-text-muted);
  margin-bottom: 1.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  align-items: center;
}

.breadcrumb-depo a {
  color: var(--depo-text-muted);
  text-decoration: none;
  transition: var(--depo-transition);
}

.breadcrumb-depo a:hover {
  color: var(--depo-accent);
}

.breadcrumb-depo .sep {
  color: var(--depo-border);
  font-weight: 300;
}

.breadcrumb-depo .current {
  color: var(--depo-primary);
  font-weight: 600;
}

/* ========== About page ========== */
.about-wrapper {
  display: flex;
  flex-direction: column;
  gap: 3.5rem;
}

/* Legacy about classes (kept for compatibility) */
.about-hero {
  text-align: center;
  max-width: 820px;
  margin: 0 auto;
  padding: 1rem 0 0.5rem;
}

.about-eyebrow {
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--depo-accent);
  background: var(--depo-accent-soft);
  padding: 0.35rem 0.85rem;
  border-radius: 999px;
  margin-bottom: 1.25rem;
}

.about-title {
  font-weight: 800;
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  letter-spacing: -0.02em;
  color: var(--depo-primary);
  line-height: 1.15;
  margin-bottom: 1rem;
}

.about-title-accent {
  color: var(--depo-accent);
  position: relative;
  white-space: nowrap;
}

.about-title-accent::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0.05em;
  height: 0.35em;
  background: var(--depo-accent-soft);
  z-index: -1;
  border-radius: 4px;
}

.about-lead {
  font-size: 1.1rem;
  line-height: 1.7;
  color: var(--depo-text-muted);
  max-width: 640px;
  margin: 0 auto;
}

/* Stats */
.about-stats {
  margin: 0;
}

.about-stat {
  background: var(--depo-surface);
  border: 1px solid var(--depo-border);
  border-radius: var(--depo-radius);
  padding: 1.25rem 1rem;
  text-align: center;
  transition: var(--depo-transition);
  height: 100%;
}

.about-stat:hover {
  border-color: var(--depo-accent);
  transform: translateY(-3px);
  box-shadow: 0 0 0 3px var(--depo-accent-soft);
}

.about-stat-num {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 800;
  color: var(--depo-accent);
  line-height: 1;
  margin-bottom: 0.4rem;
  letter-spacing: -0.02em;
}

.about-stat-label {
  font-size: 0.85rem;
  color: var(--depo-text-muted);
  font-weight: 500;
  line-height: 1.3;
}

/* Section titles */
.about-section-title {
  font-weight: 800;
  font-size: 1.35rem;
  color: var(--depo-primary);
  letter-spacing: -0.01em;
  margin-bottom: 1.25rem;
  position: relative;
  padding-bottom: 0.5rem;
}

.about-section-title::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 48px;
  height: 3px;
  background: var(--depo-accent);
  border-radius: 2px;
}

.about-section-title.text-center::after {
  left: 50%;
  transform: translateX(-50%);
}

/* Main text */
.about-text-card,
.about-products-card {
  background: var(--depo-surface);
}

.about-text {
  font-size: 1.02rem;
  line-height: 1.75;
  color: var(--depo-text);
  margin-bottom: 1rem;
}

.about-text strong {
  color: var(--depo-primary);
  font-weight: 700;
}

/* Products list */
.about-products {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.about-products li {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 0.75rem 1rem;
  background: var(--depo-bg);
  border: 1px solid var(--depo-border);
  border-radius: 10px;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--depo-primary);
  transition: var(--depo-transition);
}

.about-products li:hover {
  border-color: var(--depo-accent);
  background: #fff;
  transform: translateX(4px);
}

.about-product-icon {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: var(--depo-accent-soft);
  color: var(--depo-accent);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

/* Brands */
.about-brands-section {
  text-align: center;
}

.about-brands {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  justify-content: center;
}

.about-brands li {
  background: var(--depo-surface);
  border: 1px solid var(--depo-border);
  color: var(--depo-primary);
  padding: 0.55rem 1.15rem;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  transition: var(--depo-transition);
  box-shadow: var(--depo-shadow);
}

.about-brands li:hover {
  background: var(--depo-accent);
  color: #fff;
  border-color: var(--depo-accent);
  transform: translateY(-2px);
}

/* Timeline */
.about-timeline-header {
  text-align: center;
  margin-bottom: 1.5rem;
}

.about-timeline-header .about-section-title {
  display: inline-block;
}

.about-timeline-header .about-section-title::after {
  left: 50%;
  transform: translateX(-50%);
}

.about-image-card {
  padding: 1.5rem;
  overflow: hidden;
  background: #ffffff;
  max-width: 760px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .about-image-card {
    padding: 2.5rem;
  }
}

.about-image {
  display: block;
  width: 100%;
  max-width: 560px;
  height: auto;
  margin: 0 auto;
  border-radius: calc(var(--depo-radius) - 4px);
}

/* CTA */
.about-cta {
  text-align: center;
}

.about-cta-inner {
  background: linear-gradient(135deg, var(--depo-primary) 0%, var(--depo-primary-light) 100%);
  color: #fff;
  padding: 2.5rem 1.5rem;
  border-radius: var(--depo-radius-lg);
  box-shadow: var(--depo-shadow-lg);
  position: relative;
  overflow: hidden;
}

.about-cta-inner::before {
  content: '';
  position: absolute;
  top: -40%;
  right: -10%;
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, var(--depo-accent-soft) 0%, transparent 70%);
  pointer-events: none;
}

.about-cta-inner h3 {
  font-weight: 800;
  letter-spacing: -0.01em;
  position: relative;
}

.about-cta-inner p {
  color: rgba(255, 255, 255, 0.8);
  position: relative;
}

.about-cta-inner .btn {
  position: relative;
}

.about-cta-inner .btn-depo-outline {
  border-color: #fff;
  color: #fff;
}

.about-cta-inner .btn-depo-outline:hover {
  background: #fff;
  color: var(--depo-primary);
  border-color: #fff;
}

/* Page headers */
.page-header-depo {
  font-weight: 800;
  font-size: 2rem;
  letter-spacing: -0.02em;
  color: var(--depo-primary);
  margin-bottom: 0.5rem;
}

.page-subtitle-depo {
  color: var(--depo-text-muted);
  font-size: 1.1rem;
}

/* WhatsApp float */
.whatsapp-float {
  position: fixed;
  right: 1.5rem;
  bottom: 1.5rem;
  z-index: 1050;
}

.btn-whatsapp {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25D366;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4);
  text-decoration: none;
  transition: var(--depo-transition);
}

.btn-whatsapp:hover {
  background: #1ebe5d;
  color: #fff;
  transform: scale(1.05);
}
