/* MODO OSCURO REFORZADO NEGRO ABSOLUTO */
body.theme-dark {
  background-color: #000000 !important;
  color: #f1f1f1 !important;
}
/* Scroll personalizado solo para el tema oscuro */
body.theme-dark ::-webkit-scrollbar {
    width: 8px !important;
    background-color: transparent !important;
}

body.theme-dark ::-webkit-scrollbar-thumb {
    background-color: #fff46e !important;
    border-radius: 4px !important;
}

body.theme-dark ::-webkit-scrollbar-thumb:hover {
    background-color: #fff46e !important;
    cursor: pointer !important;
}

/* Scroll personalizado en Firefox solo en tema oscuro */
body.theme-dark {
    scrollbar-width: thin !important;
    scrollbar-color: #fff46e transparent !important;
}

body.theme-dark .container,
body.theme-dark .header,
body.theme-dark .dropdown-container,
body.theme-dark .custom-modal,
body.theme-dark .dropdown-list,
/* body.theme-dark .card, */
body.theme-dark .card-text,
body.theme-dark #sucursales-select {
  background-color: #000000 !important;
  color: #f1f1f1 !important;
}

body.theme-dark .product-card {
    border: 1px solid #838383;
}

body.theme-dark .alert-danger {
  background: grey !important;
  color: #ffffff !important;
}

body.theme-dark .alert-success {
  background: #000000 !important;
  color: white !important;
}

body.theme-dark .btn-primary {
  background-color: #2979ff !important;
  border-color: #2979ff !important;
  color: #ffffff !important;
}

body.theme-dark .btn-secondary {
  background-color: #616161 !important;
  border-color: #616161 !important;
  color: #ffffff !important;
}

body.theme-dark .badge,
body.theme-dark .badge-success {
  background-color: #212121 !important;
  color: #ffffff !important;
}

body.theme-dark .table-bordered td {
  border-color: #333 !important;
}

body.theme-dark #search {
  background-color: #121212 !important;
  color: #ffffff !important;
  border-color: #333 !important;
}

body.theme-dark .cart-counter {
  background-color: #111 !important;
  color: #ffffff !important;
  border: 1px solid #555 !important;
}

body.theme-dark .overlay {
  background-color: rgba(0, 0, 0, 0.8) !important;
}

body.theme-dark .dropdown-icon {
  fill: #ffffff !important;
}

body.theme-dark #searchContainer {
  border-bottom: 1px solid #ffffff38 !important;
}

body.theme-dark .category-title {
    color: white !important;
}

body.theme-dark .icon-button {
    color: #b2b2b2 !important;
}

body.theme-dark #preloader-container {
    background-color: rgb(0 0 0 / 85%) !important;
}

body.theme-dark .product-card.featured {
    border: 3px solid white !important;
}

body.theme-dark .house {
    background: black !important;
}

body.theme-dark #toggleContainer {
    background: #c8c8c8 !important;
    border: 1px solid #dcdcdc !important;
}

body.theme-dark #barratitulo, #idpedido {
    color: black !important;
}

body.theme-dark #checkout {
    background: black !important;
}

body.theme-dark .header .icon-text {
    background: black !important;
}

body.theme-dark #infocliente {
  color: black !important;
}

body.theme-dark #cardinterno {
  background: #0b0b0b !important;
}

body.theme-dark #colortextblanco, .dropdown-header, #distance, #time, #scrollTopBtn {
  color: white !important;
}

body.theme-dark #distance, #time, #footercolor, #idpedido {
  color: #bdbdbd !important;
}

body.theme-dark #suggestions li {
  color: black !important;
}

/* ===== Pulido del negro (mejoras aditivas, mismo look) ===== */

/* Cards: borde más fino y elegante + fondo levemente despegado del negro puro */
body.theme-dark .product-card {
    background: #0c0c0c !important;
    border: 1px solid #2e2e2e;
    border-radius: 14px !important;
    box-shadow: 0 4px 16px rgba(0, 0, 0, .5) !important;
    transition: border-color .15s ease;
}
body.theme-dark .product-card:hover { border-color: #555 !important; }

/* Destacado: borde blanco más fino con glow sutil (antes 3px duro) */
body.theme-dark .product-card.featured {
    border: 2px solid #ffffff !important;
    box-shadow: 0 0 14px rgba(255, 255, 255, .14) !important;
}

/* Título de categoría con subrayado gris (no amarillo) en negro */
body.theme-dark .category-title-underline { background: #838383 !important; }

/* Buscador con foco visible */
body.theme-dark #search:focus {
    border-color: #fff46e !important;
    box-shadow: 0 0 0 2px rgba(255, 244, 110, .15) !important;
}

/* Chips de filtro del comprador adaptados al negro */
body.theme-dark .ps-chip-f {
    background: #111 !important;
    border-color: #333 !important;
    color: #e6e6e6 !important;
}
body.theme-dark .ps-chip-f:hover { border-color: #fff46e !important; }
body.theme-dark .ps-chip-f.activo {
    background: #e94e1a !important;
    border-color: #e94e1a !important;
    color: #fff !important;
    box-shadow: 0 3px 12px rgba(233, 78, 26, .4) !important;
}

