:root {
  --site-primary: #e52e2e; /* Color principal de acento */
  --site-dark: #282828; /* Texto oscuro */
  --site-bg-light: #f7f7f7; /* Fondo gris claro */
  --site-border: #e9e9e9; /* Bordes */
  --site-footer-bg: #282d3b; /* Fondo Footer */
}

body {
  font-family:
    -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue",
    Arial, sans-serif;
  color: var(--site-dark);
  background-color: #ffffff;
}

/* BARRA DE ANUNCIOS SUPERIOR */
.site-announcement-bar {
  background-color: var(--site-primary);
  color: #ffffff;
  font-size: 0.825rem;
  font-weight: 600;
}

/* TOPBAR SUPERIOR */
.site-topbar {
  background-color: var(--site-bg-light);
  border-bottom: 1px solid var(--site-border);
  font-size: 0.775rem;
  color: #777777;
}
.site-topbar a {
  color: #777777;
  text-decoration: none;
  transition: color 0.2s ease;
}
.site-topbar a:hover {
  color: var(--site-primary);
}

/* HEADER PRINCIPAL */
.site-header {
  padding: 15px 0;
  background: #ffffff;
}
.site-phone-box {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--site-primary);
}

/* NAV CATEGORIAS & BUSCADOR */
.btn-shop-by {
  background-color: var(--site-primary);
  color: #ffffff !important;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border-radius: 0;
  padding: 12px 25px;
  border: none;
}
.site-search-input {
  border-radius: 0;
  background-color: var(--site-bg-light);
  border: 1px solid var(--site-border);
  font-size: 0.875rem;
}

/* TARJETAS DE PRODUCTOS EN EL CATALOGO */
.site-product-card {
  border: none;
  transition: all 0.3s ease;
  position: relative;
  background: #ffffff;
  margin-bottom: 25px;
}
.site-product-card .img-wrapper {
  background-color: var(--site-bg-light);
  position: relative;
  overflow: hidden;
  text-align: center;
  padding: 20px;
}
.site-product-card .img-wrapper img {
  max-height: 200px;
  object-fit: contain;
  transition: transform 0.3s ease;
}
.site-product-card:hover .img-wrapper img {
  transform: scale(1.05);
}
.site-product-card .category-title {
  font-size: 0.75rem;
  color: #999999;
  text-transform: uppercase;
  margin-top: 10px;
}
.site-product-card .product-title {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--site-dark);
  text-decoration: none;
  display: block;
  margin: 4px 0;
}
.site-product-card .price {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--site-primary);
}
.site-btn-cart {
  background-color: var(--site-footer-bg);
  color: #ffffff;
  border-radius: 0;
  font-weight: 700;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 10px 15px;
  width: 100%;
  border: none;
  transition: background-color 0.2s ease;
}
.site-btn-cart:hover {
  background-color: var(--site-primary);
  color: #ffffff;
}

/* FOOTER */
.site-footer {
  background-color: var(--site-footer-bg);
  color: #999999;
  font-size: 0.825rem;
  padding-top: 50px;
  padding-bottom: 30px;
}
.site-footer h5 {
  color: #ffffff;
  font-weight: 700;
  font-size: 0.95rem;
  margin-bottom: 20px;
}
.site-footer a {
  color: #999999;
  text-decoration: none;
}
.site-footer a:hover {
  color: #ffffff;
}

@media (min-width: 992px) {
  .navbar-nav .dropdown:hover .dropdown-menu {
    display: block;
    margin-top: 0;
  }
}

/* AJUSTES TOPBAR ESTILO MINIMALISTA */
.site-topbar {
  background-color: #f4f4f4;
  border-bottom: 1px solid #e5e5e5;
  font-size: 0.8125rem; /* ~13px */
  color: #555555;
}

.site-topbar a {
  color: #444444 !important;
  transition: color 0.2s ease;
}

.site-topbar a:hover {
  color: #000000 !important;
}

.site-topbar .fa-whatsapp {
  color: #25d366 !important; /* Color oficial de WhatsApp */
}

.fw-black {
  font-weight: 900 !important;
}
.text-shadow {
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
}
.tracking-wider {
  letter-spacing: 1.5px;
}
#heroHomeCarousel .carousel-indicators [data-bs-target] {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  margin: 0 5px;
}

/* MENÚ VERTICAL CATEGORÍAS (SHOP BY) */
.shop-by-sidebar {
  background-color: #f1f5f9;
  border-radius: 6px;
  overflow: hidden;
  border: 1px solid #e2e8f0;
}

.shop-by-header {
  background-color: #e52e2e;
  color: #ffffff;
  padding: 12px 18px;
  font-weight: 700;
  font-size: 0.95rem;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.shop-by-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.shop-by-item {
  border-bottom: 1px solid #e2e8f0;
}

.shop-by-item:last-child {
  border-bottom: none;
}

.shop-by-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 18px;
  color: #334155;
  font-weight: 600;
  font-size: 0.875rem;
  text-decoration: none;
  transition:
    background 0.2s,
    color 0.2s;
}

.shop-by-link:hover {
  background-color: #e2e8f0;
  color: #e52e2e;
}

.shop-by-container {
  background-color: #f1f5f9;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid #e2e8f0;
}
.shop-by-header {
  background-color: #e52e2e;
  color: #ffffff;
  padding: 12px 18px;
  font-weight: 800;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.shop-by-list {
  list-style: none !important;
  padding: 0 !important;
  margin: 0 !important;
}
.shop-by-item {
  border-bottom: 1px solid #e2e8f0;
}
.shop-by-item:last-child {
  border-bottom: none;
}
.shop-by-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 18px;
  color: #334155;
  font-weight: 700;
  font-size: 0.85rem;
  text-decoration: none !important;
  transition: all 0.2s;
}
.shop-by-link:hover {
  background-color: #e2e8f0;
  color: #e52e2e;
}
.search-input-header {
  background-color: #f1f5f9;
  border: 1px solid #e2e8f0;
  border-radius: 6px;
  padding: 10px 18px;
  font-size: 0.9rem;
}
.search-input-header:focus {
  background-color: #ffffff;
  border-color: #cbd5e1;
  box-shadow: none;
}
