body {
    background-color: #f8f1ea;
    color: #2f2f2f;
    font-family: Arial, Helvetica, sans-serif;
}

html { scroll-behavior: smooth; }

.navbar-brand span { font-weight: 700; letter-spacing: .2px; }

.bg-marron {
    background-color: #5a3825;
}

.logo {
    object-fit: cover;
    background-color: #ffffff;
}

.banner {
    background-color: #ffffff;
    border: 2px solid #d8b99c;
    border-radius: 15px;
    padding: clamp(35px, 8vw, 90px) 24px;
    background: radial-gradient(circle at top right, #fff8ef 0, #fff 48%, #f5e8da 100%);
    box-shadow: 0 4px 12px rgba(90, 56, 37, 0.10);
}

.eyebrow { color: #a65f34; font-size: .78rem; font-weight: 800; letter-spacing: .13em; }
.filtros { background: #fff; border-radius: 14px; padding: 20px; margin-top: 28px; border: 1px solid #ead8c8; }
.section-heading { display: flex; justify-content: space-between; gap: 16px; align-items: end; margin-bottom: 18px; }

.banner h1 {
    color: #5a3825;
    font-weight: bold;
}

.banner p {
    font-size: 18px;
    color: #6b4a38;
}

.btn-marron {
    background-color: #7a4a2d;
    color: #ffffff;
    border: none;
}

.btn-marron:hover {
    background-color: #4a2d1d;
    color: #ffffff;
}

.producto-card {
    border: 1px solid #d8b99c;
    transition: 0.2s;
    background-color: #ffffff;
}

.product-media { position: relative; overflow: hidden; }
.discount-badge { position: absolute; z-index: 2; top: 12px; left: 12px; background: #b53a2d; color: white; padding: 5px 9px; border-radius: 999px; font-size: .8rem; font-weight: 800; }
.precio-anterior { color: #777; text-decoration: line-through; font-size: .9rem; }
.stock { color: #55705b; font-size: .85rem; }
.stock-bajo { color: #b36b18; font-weight: 700; }
.recomendacion { display: block; height: 100%; padding: 18px; background: #fff; border: 1px solid #e5d0bd; color: #4a2d1d; text-decoration: none; border-radius: 12px; transition: .2s; }
.recomendacion:hover { transform: translateY(-3px); box-shadow: 0 8px 22px rgba(90,56,37,.12); }
.empty-state { text-align: center; background: white; padding: 60px 20px; border-radius: 14px; }
.cantidad-input { width: 78px; }
.order-summary { position: sticky; top: 20px; background: #fff; border: 1px solid #e5d0bd; border-radius: 14px; padding: 24px; }

.producto-card:hover {
    transform: scale(1.02);
    box-shadow: 0 4px 12px rgba(90, 56, 37, 0.18);
}

.categoria-card {
    border-left: 5px solid #7a4a2d;
    border-top: 1px solid #d8b99c;
    border-right: 1px solid #d8b99c;
    border-bottom: 1px solid #d8b99c;
    color: #2f2f2f;
    background-color: #ffffff;
    transition: 0.2s;
}

.categoria-card:hover {
    background-color: #fff8f0;
    transform: translateY(-2px);
}

.producto-img {
    height: 190px;
    object-fit: cover;
}

.precio {
    color: #7a4a2d;
    font-weight: bold;
    font-size: 20px;
}

.descripcion-producto {
    min-height: 55px;
    color: #555555;
}

.sin-imagen {
    height: 190px;
    background-color: #e6d4c3;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #5a3825;
    font-weight: bold;
}

.sin-imagen-detalle {
    height: 350px;
    background-color: #e6d4c3;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #5a3825;
    font-weight: bold;
    border-radius: 10px;
}

.resumen-carrito {
    background-color: #ffffff;
    border: 1px solid #d8b99c;
    border-radius: 10px;
    padding: 20px;
    text-align: right;
}

.footer {
    background-color: #5a3825;
    color: #ffffff;
}

.table-dark {
    --bs-table-bg: #5a3825;
}

@media (max-width: 767.98px) {
    main.container { padding-left: 12px; padding-right: 12px; }
    .banner h1 { font-size: 2rem; }
    .producto-card .card-body { padding: 12px; }
    .producto-img, .sin-imagen { height: 150px; }
    .precio { font-size: 1.08rem; }
    .section-heading { align-items: start; flex-direction: column; }
    .resumen-carrito { text-align: left; }
}
