.cart-items {
    display: grid;
    gap: 20px;
    margin-bottom: 30px;
}

.empty-cart {
    text-align: center;
    padding: 60px 20px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.empty-cart-icon {
    font-size: 4em;
    margin-bottom: 20px;
    opacity: 0.7;
}

.empty-cart h3 {
    color: #000000;
    font-size: 1.8em;
    margin-bottom: 15px;
    font-weight: 600;
}

.empty-cart p {
    color: #666666;
    font-size: 1.1em;
    margin: 0;
}

.cart-item-modern {
    background: rgba(255, 255, 255, 0.95);
    padding: 20px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    gap: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
}

.cart-item-modern:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.15);
}

.cart-item-image {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 12px;
    border: 2px solid rgba(255, 0, 0, 0.2);
}

.cart-item-details {
    flex: 1;
}

.cart-item-details h3 {
    color: #000000;
    font-size: 1.3em;
    font-weight: 600;
    margin: 0 0 10px 0;
}

.cart-item-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cart-item-info .quantity {
    color: #666666;
    font-size: 1em;
    font-weight: 500;
}

.cart-item-info .price {
    color: #ff0000;
    font-size: 1.4em;
    font-weight: 700;
}

.remove-item {
    background: #ff4757;
    color: white;
    border: none;
    width: 32px;
    height: 32px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(255, 71, 87, 0.3);
}

.remove-item:hover {
    background: #ff3742;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(255, 71, 87, 0.4);
}

.cart-total-simple {
    background: rgba(255, 255, 255, 0.9);
    padding: 15px 20px;
    border-radius: 8px;
    text-align: center;
    margin-bottom: 20px;
    max-width: 400px;
    margin: 0 auto 20px;
    border: 1px solid rgba(0, 0, 0, 0.1);
}

.cart-total-simple h3 {
    color: #333333;
    font-size: 1.5em;
    font-weight: 500;
    margin: 0;
}

.total-price {
    color: #ff0000;
    font-size: 1.2em;
    font-weight: 700;
}

.checkout-btn {
    max-width: 400px;
    width: 100%;
    margin: 0 auto;
    display: block;
    padding: 16px 32px;
    background: linear-gradient(135deg, #ff0000, #cc0000);
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 0, 0, 0.3);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.checkout-btn:hover {
    background: linear-gradient(135deg, #cc0000, #990000);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 0, 0, 0.4);
}