/* ========================================
   ESTILOS DEL CARRITO DE COMPRAS
   ======================================== */

.cart-widget {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 9999;
}

.cart-toggle {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, #003d82 0%, #001f4d 100%);
    color: white;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0, 61, 130, 0.3);
    transition: all 0.3s;
    font-size: 24px;
    position: relative;
}

.cart-toggle:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(0, 61, 130, 0.4);
}

.cart-badge {
    position: absolute;
    top: -5px;
    right: -5px;
    background: #e74c3c;
    color: white;
    border-radius: 50%;
    width: 26px;
    height: 26px;
    display: flex !important;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 700;
    border: 2px solid white;
    z-index: 10001;
    box-shadow: 0 2px 8px rgba(231, 76, 60, 0.4);
    pointer-events: none;
}

.cart-sidebar {
    position: fixed;
    top: 0;
    right: -400px;
    width: 400px;
    height: 100vh;
    background: white;
    box-shadow: -5px 0 15px rgba(0,0,0,0.1);
    transition: right 0.3s;
    z-index: 10000;
    display: flex;
    flex-direction: column;
}

.cart-sidebar.open {
    right: 0;
}

.cart-header {
    padding: 20px;
    border-bottom: 1px solid #e1e8ed;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cart-header h3 {
    margin: 0;
    color: #2D3436;
    font-size: 20px;
}

.cart-close {
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: #636E72;
    padding: 5px;
}

.cart-body {
    flex: 1;
    padding: 20px;
    overflow-y: auto;
}

.cart-empty {
    text-align: center;
    color: #636E72;
    margin-top: 50px;
}

.cart-item {
    display: flex;
    align-items: center;
    padding: 15px 0;
    border-bottom: 1px solid #f1f3f4;
}

.cart-footer {
    padding: 20px;
    border-top: 1px solid #e1e8ed;
}

.cart-total {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
    font-size: 18px;
    font-weight: 700;
    color: #2D3436;
}

.btn-checkout {
    width: 100%;
    padding: 15px;
    background: #003d82;
    color: white;
    border: none;
    border-radius: 10px;
    font-weight: 600;
    cursor: pointer;
    margin-bottom: 10px;
    font-family: 'Poppins', sans-serif;
}

.btn-checkout:hover {
    background: #0052cc;
}

.btn-clear-cart {
    width: 100%;
    padding: 10px;
    background: transparent;
    color: #e74c3c;
    border: 1px solid #e74c3c;
    border-radius: 10px;
    cursor: pointer;
    font-family: 'Poppins', sans-serif;
}

.btn-clear-cart:hover {
    background: #ffebee;
}

.cart-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: 9999;
    display: none;
}

.cart-overlay.show {
    display: block;
}

@media (max-width: 768px) {
    .cart-sidebar {
        width: 100%;
        right: -100%;
    }
}





