.cart-section {
    min-height: 60vh;
    padding: 120px 0 60px;
    background: #f8f9fa;
}
.cart-item {
    background: #fff;
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    transition: all 0.3s;
}
.cart-item:hover {
    box-shadow: 0 4px 16px rgba(0,0,0,0.1);
}
.cart-item img {
    width: 100px;
    height: 100px;
    object-fit: cover;
    border-radius: 8px;
}
.qty-control {
    display: flex;
    align-items: center;
    gap: 8px;
}
.qty-control button {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    border: 1px solid #dee2e6;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s;
}
.qty-control button:hover {
    background: #e9ecef;
}
.qty-control span {
    min-width: 30px;
    text-align: center;
    font-weight: 600;
}
.cart-summary {
    background: #fff;
    border-radius: 12px;
    padding: 24px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    position: sticky;
    top: 100px;
}
.cart-empty {
    text-align: center;
    padding: 80px 20px;
}
.cart-empty i {
    font-size: 64px;
    color: #dee2e6;
}
