/* Breadcrumbs Styles */
.breadcrumb {
    background-color: transparent;
    padding: 0.5rem 0;
}

.breadcrumb-item + .breadcrumb-item::before {
    content: ">";
    color: #6c757d;
    font-weight: bold;
}

.breadcrumb-item a {
    color: #dc3545;
    font-weight: 500;
    transition: color 0.2s ease;
}

.breadcrumb-item a:hover {
    color: #a71e2a;
    text-decoration: underline !important;
}

.breadcrumb-item.active {
    color: #495057;
    font-weight: 600;
}

.breadcrumb-item i {
    font-size: 0.9rem;
}

/* Botón Volver a Papelería Los Andes */
.btn-volver-papeleria {
    color: #fff !important;
    font-weight: 500;
    transition: all 0.3s ease;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    background-color: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    cursor: pointer !important;
    pointer-events: auto !important;
    z-index: 1000;
    position: relative;
}

.btn-volver-papeleria:hover {
    background-color: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-1px);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.btn-volver-papeleria i {
    font-size: 0.9rem;
}

