/* ----------------------------------------------
 * Archivo: sidebar_productos_dark.css
 * Modo oscuro elegante - tonos vino, dorado y beige cálido
 * Autor: Elier Rosales
 * Proyecto: Distribuidora Liam
 * ---------------------------------------------- */

/* Paleta oscura noviembre */
:root {
  --dorado: #e0a100;
  --vino: #a56de2;
  --chocolate: #2b1a17;
  --fondo: #000000;
  --texto: #f3ece4;
  --beige-card: #2b201b;
  --sombra-card: rgba(0, 0, 0, 0.4);
}

/* ===== Fondo general ===== */
body {
  background-color: var(--fondo);
  color: var(--texto);
  transition: background-color 0.3s ease, color 0.3s ease;
}

/* ===== Sidebar ===== */
.sidebar-left {
  position: sticky;
  top: 80px;
  align-self: flex-start;
  width: 280px;
  padding-right: 20px;
  border-right: 2px solid var(--vino);
  background-color: #000000;
  box-shadow: 0 0 18px rgba(165, 109, 226, 0.15);
  z-index: 10;
}

/* Decoración superior */
.sidebar-left::before {
  content: "";
  display: block;
  height: 5px;
  margin: 0 6px 10px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--vino), var(--dorado), var(--chocolate));
}

/* ===== Categorías ===== */
.sidebar-left .categoria-link {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 1rem;
  padding: 12px 14px;
  border-radius: 12px;
  background: linear-gradient(180deg, #000000, #000000);
  border: 1px solid #3b2b24;
  color: var(--texto);
  font-weight: 600;
  transition: all 0.3s ease;
}

.sidebar-left .categoria-link:hover {
  transform: translateY(-2px);
  background: linear-gradient(180deg, #30221d, #271c18);
  box-shadow: 0 8px 15px rgba(224, 161, 0, 0.15);
  color: var(--dorado);
}

.sidebar-left .categoria-link.active {
  background: linear-gradient(180deg, var(--vino), var(--dorado));
  color: #fff;
  border: none;
  box-shadow: 0 6px 14px rgba(224, 161, 0, 0.3);
}

/* ===== Iconos ===== */
.sidebar-left .icon-container {
  background: #e0a100;
  border-radius: 10px;
  width: 55px;
  height: 55px;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
}

/* ===== Texto ===== */
.sidebar-left span {
  color: var(--texto);
  font-weight: 700;
}

/* ===== Cards de productos ===== */
.product-card {
  border-radius: 16px;
  background-color: var(--beige-card);
  border: 1px solid #3a2a22;
  box-shadow: 0 6px 16px var(--sombra-card);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  color: var(--texto);
}

.product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 24px rgba(224, 161, 0, 0.15);
}

/* Imagen */
.product-img {
  height: 220px;
  object-fit: contain;
  padding: 10px;
  background-color: #1e1612;
}

/* Precio */
.product-price {
  color: var(--dorado);
  font-size: 1.2rem;
  font-weight: bold;
}

/* Botón principal */
.product-card .btn-outline-primary {
  border: 2px solid var(--vino);
  color: var(--vino);
  font-weight: 600;
  transition: all 0.3s ease;
  background: transparent;
}

.product-card .btn-outline-primary:hover {
  background: var(--vino);
  color: #fff;
  box-shadow: 0 6px 12px rgba(165, 109, 226, 0.3);
}

.product-card .btn-outline-primary:active {
  background: var(--dorado);
  border-color: var(--dorado);
  color: #fff;
}

/* ===== Textos generales ===== */
h1, h2, h3, h4, h5, h6 {
  color: var(--dorado);
}

p, span {
  color: var(--texto);
}

/* ===== Links ===== */
a {
  color: var(--vino);
}
a:hover {
  color: var(--dorado);
}
