/**
 * Estilos del Carrito de Compras
 */


.carrito-wrapper {
    padding: 60px 20px;
    background: #f5f7fa;
    min-height: 70vh;
}

.carrito-title {
    text-align: center;
    font-size: 36px;
    margin: 0 0 50px;
    color: #333;
    font-weight: 700;
}

.carrito-grid {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 30px;
    max-width: 1400px;
    margin: 0 auto;
}

@media (max-width: 992px) {
    .carrito-grid {
        grid-template-columns: 1fr;
    }
}


.carrito-items {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.carrito-item {
    background: white;
    border-radius: 16px;
    padding: 25px;
    display: grid;
    grid-template-columns: 1fr auto auto auto;
    gap: 25px;
    align-items: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.carrito-item:hover {
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
    border-color: #667eea;
}

@media (max-width: 768px) {
    .carrito-item {
        grid-template-columns: 1fr;
        gap: 15px;
    }
}

.item-info h3 {
    margin: 0 0 8px;
    font-size: 20px;
    color: #333;
    font-weight: 700;
}

.item-periodo {
    margin: 0 0 8px;
    color: #667eea;
    font-weight: 600;
    font-size: 14px;
}

.item-dominio,
.item-notas {
    margin: 5px 0;
    font-size: 14px;
    color: #666;
}

.item-dominio strong,
.item-notas strong {
    color: #333;
}

/* Cantidad */
.item-cantidad label {
    display: block;
    margin-bottom: 8px;
    font-size: 14px;
    color: #666;
    font-weight: 600;
}

.cantidad-controls {
    display: flex;
    align-items: center;
    gap: 5px;
    background: #f8f9fa;
    border: 2px solid #e5e7eb;
    border-radius: 10px;
    padding: 5px;
}

.btn-cantidad {
    width: 36px;
    height: 36px;
    border: none;
    background: white;
    color: #667eea;
    font-size: 20px;
    font-weight: 700;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-cantidad:hover {
    background: #667eea;
    color: white;
    transform: scale(1.1);
}

.cantidad-input {
    width: 60px;
    height: 36px;
    border: none;
    background: white;
    text-align: center;
    font-size: 16px;
    font-weight: 700;
    border-radius: 8px;
    color: #333;
}

.cantidad-input:focus {
    outline: 2px solid #667eea;
}

/* Precio */
.item-precio {
    text-align: right;
}

.precio-unitario {
    font-size: 14px;
    color: #666;
    margin-bottom: 5px;
}

.precio-total {
    font-size: 22px;
    font-weight: 700;
    color: #667eea;
}

/* Acciones */
.item-acciones {
    display: flex;
    align-items: center;
}

.btn-eliminar {
    width: 44px;
    height: 44px;
    border: 2px solid #ffc1c8;
    background: #fff5f7;
    color: #ff5757;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-eliminar:hover {
    background: #ff5757;
    color: white;
    border-color: #ff5757;
    transform: rotate(90deg) scale(1.1);
}

/* Acciones extra */
.carrito-acciones-extra {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 15px;
    padding: 20px;
    background: white;
    border-radius: 16px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

@media (max-width: 576px) {
    .carrito-acciones-extra {
        flex-direction: column;
    }
}


.carrito-resumen {
    background: white;
    border-radius: 16px;
    padding: 30px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    height: fit-content;
    position: sticky;
    top: 100px;
}

.carrito-resumen h2 {
    margin: 0 0 25px;
    font-size: 24px;
    color: #333;
    font-weight: 700;
    padding-bottom: 15px;
    border-bottom: 2px solid #e5e7eb;
}

.resumen-detalle {
    margin-bottom: 25px;
}

.resumen-item {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    font-size: 15px;
    color: #666;
    border-bottom: 1px solid #f0f0f0;
}

.resumen-item:last-of-type {
    border-bottom: none;
}

.resumen-total {
    display: flex;
    justify-content: space-between;
    padding: 20px 0 0;
    margin-top: 20px;
    border-top: 2px solid #e5e7eb;
    font-size: 18px;
    font-weight: 700;
    color: #333;
}

.resumen-total-precio {
    color: #667eea;
    font-size: 24px;
}

.resumen-acciones {
    margin-bottom: 25px;
}

.resumen-nota {
    text-align: center;
    font-size: 13px;
    color: #999;
    margin-top: 10px;
}

.resumen-info {
    padding: 20px;
    background: linear-gradient(135deg, #f0f7ff 0%, #e8f4fd 100%);
    border: 2px solid #d4ebf8;
    border-radius: 12px;
}

.resumen-info h3 {
    margin: 0 0 15px;
    font-size: 16px;
    color: #667eea;
    font-weight: 700;
}

.resumen-info ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.resumen-info li {
    padding: 8px 0;
    font-size: 14px;
    color: #555;
}


.carrito-vacio {
    text-align: center;
    padding: 100px 40px;
    background: white;
    border-radius: 16px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    max-width: 600px;
    margin: 0 auto;
}

.vacio-icon {
    font-size: 80px;
    margin-bottom: 20px;
    opacity: 0.3;
}

.carrito-vacio h2 {
    margin: 0 0 15px;
    font-size: 28px;
    color: #333;
}

.carrito-vacio p {
    margin: 0 0 30px;
    color: #666;
    font-size: 16px;
}


.cart-icon-wrapper {
    position: relative;
    display: inline-block;
    margin-left: 15px;
}

.cart-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.cart-icon:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(102, 126, 234, 0.4);
}

.cart-icon svg {
    width: 22px;
    height: 22px;
}

.cart-count {
    position: absolute;
    top: -5px;
    right: -5px;
    background: #ff5757;
    color: white;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: 700;
    border: 2px solid white;
    box-shadow: 0 2px 8px rgba(255, 87, 87, 0.4);
}

.cart-count.empty {
    display: none;
}
