/* Ícono del carrito */
.cart-icon {
    position: relative;
    cursor: pointer;
    display: flex;
    align-items: center;
}

.cart-icon img {
    width: 30px;
    height: 30px;
}

.cart-icon .cart-count {
    position: absolute;
    top: -5px;
    right: -10px;
    background-color: red;
    color: white;
    font-size: 12px;
    font-weight: bold;
    border-radius: 50%;
    padding: 2px 6px;
}

/* Contenedor del carrito */
.cart-container {
    position: fixed;
    overflow-y: auto;
    top: 0;
    right: 0;
    width: 350px;
    height: 95%;
    background-color: #f9f9f9;
    box-shadow: -2px 0 10px rgba(0, 0, 0, 0.2);
    transform: translateX(100%);
    visibility: hidden;
    pointer-events: none;
    transition: transform 0.3s ease-in-out;
    z-index: 1001;
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.cart-container.show {
    transform: translateX(0);
    visibility: visible;
    pointer-events: auto;
}

.cart-container h2 {
    font-size: 22px;
    margin-bottom: 20px;
    font-weight: bold;
    color: #333;
    text-align: center;
    border-bottom: 2px solid #ddd;
    padding-bottom: 10px;
}
.cart-container.show {
    transform: translateX(0);
    visibility: visible;
    pointer-events: auto;
}
.close-cart {
    position: absolute;
    top: 14px;
    right: 14px;
    background: none;
    border: none;
    font-size: 22px;
    cursor: pointer;
    color: #000;
    line-height: 1;
    padding: 6px;
    transition: color 0.2s ease, transform 0.2s ease;
}

.close-cart:hover {
    color: #1681a9;
    transform: scale(1.15);
}
/* Lista de productos */
.cart-items {
    list-style: none;
    padding: 0;
    margin: 0;
    flex-grow: 1;
    overflow-y: auto;
}

.cart-items li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    border-bottom: 1px solid #ddd;
    padding-bottom: 10px;
    padding-top: 10px;
}

.cart-items li img {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 5px;
    margin-right: 10px;
}

.cart-items li .product-info {
    flex-grow: 1;
    margin-left: 10px;
}

.cart-items li .product-info h3 {
    font-size: 16px;
    margin: 0;
    color: #333;
    font-weight: bold;
}

.cart-items li .product-info span {
    font-size: 14px;
    color: #666;
    display: block;
    margin-top: 5px;
}

/* Botón de eliminar */
.cart-items li .remove-item {
    background-color: transparent;
    border: none;
    color: #ff4d4d;
    font-size: 18px;
    cursor: pointer;
    transition: color 0.3s ease;
}

.cart-items li .remove-item:hover {
    color: #ff0000;
}

/* Total del carrito */
.cart-total {
    margin-top: 20px;
    color: #333;
    padding: 10px 0;
    border-top: 2px solid #ddd;
}

.cart-total-row {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    font-size: 15px;
    font-weight: 700;
    line-height: 1.4;
    padding: 3px 0;
}

.cart-total-final {
    font-size: 18px;
    font-weight: 800;
    padding-top: 8px;
}

/* Botón de finalizar compra */
.checkout-button {
    width: 100%;
    min-height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: 14px;
    background: #2f7fa1;
    color: #ffffff;
    border: 1px solid #2f7fa1;
    padding: 12px 18px;
    font-size: 16px;
    font-weight: 800;
    cursor: pointer;
    border-radius: 10px;
    box-shadow: 0 10px 22px rgba(47, 127, 161, 0.22);
    transition: background-color 0.2s ease, border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
    text-align: center;
}

.checkout-button:hover,
.checkout-button:focus-visible {
    background: #255f7a;
    border-color: #255f7a;
    color: #ffffff;
    transform: translateY(-1px);
    box-shadow: 0 14px 28px rgba(37, 95, 122, 0.28);
    outline: none;
}

.checkout-button:disabled {
    background: #9aa9b2;
    border-color: #9aa9b2;
    box-shadow: none;
    cursor: not-allowed;
    transform: none;
}

.cart-item-unavailable {
    opacity: 0.85;
    border: 1px solid #f1c9c9;
    background: #fff7f7;
}

.cart-stock-message,
.cart-inline-message {
    margin: 8px 0;
    color: #9f1239;
    font-size: 0.9rem;
    font-weight: 700;
}

.cart-inline-message {
    list-style: none;
    padding: 10px 12px;
    border-radius: 6px;
    background: #fff7ed;
    color: #9a3412;
}

.stock-alert-button {
    border: 1px solid #0f766e;
    background: #ffffff;
    color: #0f766e;
    border-radius: 6px;
    padding: 8px 10px;
    font-weight: 700;
    cursor: pointer;
}

.stock-alert-button:disabled,
.stock-alert-button.registered {
    border-color: #94a3b8;
    color: #475569;
    cursor: default;
}

/* Scrollbar personalizado */
.cart-items::-webkit-scrollbar {
    width: 8px;
}

.cart-items::-webkit-scrollbar-thumb {
    background-color: #ccc;
    border-radius: 4px;
}

.cart-items::-webkit-scrollbar-thumb:hover {
    background-color: #aaa;
}
