﻿/* ============================= */
/* 🛒 Floating Cart Styles */
/* ============================= */

.carrito-flotante {
    position: fixed;
    top: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #422a72, #de3d33);
    border-radius: 50%;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    z-index: 1000;
}

    .carrito-flotante:hover {
        transform: scale(1.1);
        box-shadow: 0 6px 16px rgba(0, 0, 0, 0.35);
    }

.carrito-icono {
    width: 40px;
    height: 40px;
    position: relative;
}

    .carrito-icono img {
        width: 100%;
        filter: brightness(0) invert(1);
    }

.cantidad-carrito {
    position: absolute;
    top: -8px;
    right: -8px;
    background-color: #fff;
    color: #E30613;
    font-size: 14px;
    font-weight: 700;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    border: 1px solid #E30613;
}

/* 🛍 Cart Content Dropdown */
.carrito-contenido {
    position: fixed;
    top: 90px;
    right: 20px;
    width: 340px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
    padding: 20px;
    display: none;
    flex-direction: column;
    align-items: center;
    z-index: 999;
    border: 1px solid #eee;
}

    .carrito-contenido h3 {
        margin: 0 0 15px;
        color: #222;
        font-size: 18px;
        font-weight: 600;
    }

    .carrito-contenido ul {
        list-style: none;
        padding: 0;
        width: 100%;
        max-height: 240px;
        overflow-y: auto;
        scrollbar-width: inherit;
    }

    .carrito-contenido li {
        padding: 12px 0;
        border-bottom: 1px solid #e8e8e8;
        min-height: 80px;
        display: flex;
        align-items: center;
    }

.empty-cart {
    text-align: center;
    color: #666;
    font-style: italic;
    padding: 20px 0;
}

.producto-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    gap: 10px;
}

.producto-info {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.producto-nombre {
    font-size: 15px;
    color: #333;
    font-weight: 500;
}

.precio {
    font-weight: 600;
    color: #222;
    font-size: 13px;
    margin-top: 4px;
}

.producto-controles {
    display: flex;
    align-items: center;
    gap: 10px;
}

.btn-comprar {
    background-color: #E30613;
    color: #fff;
    padding: 10px;
    width: 100%;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
    margin-top: 10px;
}

    .btn-comprar:hover {
        background-color: #c2040f;
        transform: translateY(-1px);
    }

/* Delete Button */
.btn-eliminarflot {
    width: 32px;
    height: 32px;
    background-color: #555;
    border: none;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.1s ease;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.15);
}

    .btn-eliminarflot:hover {
        background-color: #E30613;
        transform: scale(1.05);
    }

    .btn-eliminarflot:active {
        transform: scale(0.95);
    }

    .btn-eliminarflot img {
        width: 18px;
        height: 18px;
    }

/* Quantity Controls */
.control-cantidad {
    display: flex;
    align-items: center;
    gap: 6px;
}

.btn-cantidad {
    background-color: #E30613;
    border: none;
    width: 24px;
    height: 24px;
    border-radius: 6px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s ease, box-shadow 0.2s ease;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}

    .btn-cantidad:hover {
        background-color: #c2040f;
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
    }

    .btn-cantidad::before {
        content: attr(data-symbol);
        font-size: 14px;
        font-weight: 700;
        color: #fff;
    }

.cantidad-num {
    min-width: 20px;
    text-align: center;
    font-weight: 600;
    color: #333;
    font-size: 14px;
}

/* ============================= */
/* 📌 Responsive (Mobile) */
/* ============================= */
@media screen and (max-width: 768px) {
    .carrito-flotante {
        width: 50px;
        height: 50px;
        top: 15px;
        right: 15px;
    }

    .cantidad-carrito {
        font-size: 12px;
        width: 18px;
        height: 18px;
        top: -6px;
        right: -6px;
    }

    .carrito-contenido {
        width: 280px;
        top: 70px;
        right: 10px;
        padding: 15px;
    }

        .carrito-contenido h3 {
            font-size: 16px;
        }

    .producto-nombre {
        font-size: 13px;
    }

    .precio {
        font-size: 11px;
    }

    .carrito-contenido li {
        min-height: 70px;
        padding: 10px 0;
    }

    .btn-eliminarflot {
        width: 28px;
        height: 28px;
    }

    .btn-cantidad {
        width: 22px;
        height: 22px;
    }

    .cantidad-num {
        font-size: 13px;
    }
}
