body { background-color: #ffffff; }

/* CABECERA SUPERIOR */
.top-bar {
    background: #212529;
    color: white;
    padding: 5px 15px;
    font-size: 0.9rem;
}

.top-bar a {
    color: white;
    text-decoration: none;
    margin-left: 15px;
}

/* LOGO */
.logo-container {
    text-align: center;
    background: white;
}

.logo-container img {
    max-height: 110px;
    width: auto;
    display: block;
}

/* MENÚ */
.navbar-custom {
    background-color: #343a40;
}

/* SIDEBAR DERECHA */
.sidebar-right {
    background: white;
    padding: 15px;
    border-left: 1px solid #ddd;
}
/* PRODUCTO */
.product-title {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;

    overflow: hidden;
    text-overflow: ellipsis;

    line-height: 1.2rem;
    max-height: 2.4rem; /* 1.2 x 2 líneas exactas */
}
/* CARD BASE */
.product-card {
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    border: none;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
}

/* HOVER SUAVE */
.product-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

/* CONTENEDOR IMAGEN */
.product-image-container {
    height: 220px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #ffffff;
    overflow: hidden;
}

/* IMAGEN */
.product-image {
    max-height: 100%;
    max-width: 100%;
    object-fit: contain;
    transition: transform 0.4s ease;
}

/* ZOOM SUAVE SOLO A LA IMAGEN */
.product-card:hover .product-image {
    transform: scale(1.08);
}

.badge-novedad {
    position: absolute;
    top: 10px;
    left: 10px;
    background-color: #dc3545;
    color: white;
    font-size: 0.75rem;
    padding: 4px 8px;
    border-radius: 20px;
    font-weight: bold;
    letter-spacing: 0.5px;
    z-index: 10;   /* 👈 CLAVE */
}

.badge-agotado {
    position: absolute;
    top: 10px;
    left: 10px;
    background-color: #dc3545;
    color: white;
    font-size: 0.75rem;
    padding: 4px 8px;
    border-radius: 20px;
    font-weight: bold;
    letter-spacing: 0.5px;
    z-index: 10;   /* 👈 CLAVE */
}

.btn-oliva {
    background-color: #6B8E23;
    border-color: #6B8E23;
    color: #fff;
}

.btn-oliva:hover {
    background-color: #5a781d;
    border-color: #5a781d;
}

.btn-tierra {
    background-color: #C26A2E;
    border-color: #C26A2E;
    color: #fff;
}

.btn-tierra:hover {
    background-color: #a85824;
    border-color: #a85824;
}

.dropdown-submenu {
    position: relative;
}

.dropdown-submenu > .dropdown-menu {
    top: 0;
    left: 100%;
    margin-top: -1px;
}

.dropdown-submenu:hover > .dropdown-menu {
    display: block;
}
.dropdown-item {
    font-size: 15px;
    padding: 8px 18px;
    transition: all 0.2s;
}
.dropdown-menu {
    min-width: 260px;
    padding: 10px 0;
    border-radius: 10px;
    border: 1px solid #e5e5e5;
    box-shadow: 0 6px 15px rgba(0,0,0,0.1);
}
.dropdown-item:hover {
    background-color: #f5f5f5;
}
.categoria-nivel-0 {
    font-weight: 600;
}
.categoria-nivel-1 {
    padding-left: 35px;
    font-size: 14px;
}
.categoria-nivel-2 {
    padding-left: 55px;
    font-size: 14px;
    color: #555;
}
.categoria-nivel-3 {
    padding-left: 75px;
    font-size: 13px;
    color: #666;
}