body {
    background-color: #080706;
    color: #ffffff;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    margin: 0;
    padding: 0;
}


.cart-page-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    padding: 20px;
    background-image: linear-gradient(rgba(8, 7, 6, 0.82), rgba(8, 7, 6, 0.9)), url('https://images.unsplash.com/photo-1441986300917-64674bd600d8?auto=format&fit=crop&w=1950&q=80');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
}


.cart-container {
    width: 100%;
    max-width: 800px;
    padding: 40px;
    background: rgba(18, 17, 15, 0.88);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(184, 134, 11, 0.4);
    border-radius: 16px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.9), 0 0 35px rgba(184, 134, 11, 0.2);
    perspective: 1000px; 
    animation: fadeInUp 0.8s cubic-bezier(0.25, 1, 0.5, 1) forwards;
}

.cart-title {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 30px;
    text-align: center;
    color: #ffffff;
    letter-spacing: 2px;
    text-shadow: 0 0 15px rgba(184, 134, 11, 0.7);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 20px;
    transition: transform 0.4s ease;
}

.cart-title:hover {
    transform: scale(1.05);
    text-shadow: 0 0 25px rgba(184, 134, 11, 1);
}

.cart-content-box {
    margin-bottom: 35px;
    perspective: 1000px; 
}

.cart-item-card {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(25, 24, 21, 0.95);
    padding: 25px 30px;
    border-radius: 12px;
    border: 1px solid rgba(184, 134, 11, 0.3);
    transition: all 0.4s ease-in-out;
    transform: translateZ(0);
}

.cart-item-card:hover {
    transform: translateY(-10px) scale(1.03);
    border-color: #b8860b;
    background: rgba(45, 41, 34, 0.98);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.95), 0 0 35px rgba(184, 134, 11, 0.8);
}

.item-info h3 {
    margin: 0 0 8px 0;
    font-size: 22px;
    color: #ffffff;
    transition: color 0.3s ease;
}

.cart-item-card:hover .item-info h3 {
    color: #b8860b;
    text-shadow: 0 0 10px rgba(184, 134, 11, 0.8);
}

.item-info p {
    margin: 6px 0;
    color: #b0b0b0;
    font-size: 15px;
}

.item-info span {
    color: #b8860b;
    font-weight: 600;
}

.item-price span {
    font-size: 24px;
    font-weight: 700;
    color: #b8860b;
    text-shadow: 0 0 10px rgba(184, 134, 11, 0.6);
    transition: transform 0.3s ease;
}

.cart-item-card:hover .item-price span {
    transform: scale(1.1);
    text-shadow: 0 0 20px rgba(184, 134, 11, 1);
}

.cart-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 25px;
}

.continue-shopping-btn, .checkout-btn {
    text-decoration: none;
    padding: 14px 28px;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.continue-shopping-btn {
    background: transparent;
    color: #b0b0b0;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.continue-shopping-btn:hover {
    color: #ffffff;
    border-color: #b8860b;
    transform: translateY(-3px);
}

.checkout-btn {
    background: #b8860b;
    color: #000000;
    box-shadow: 0 4px 15px rgba(184, 134, 11, 0.4);
}

.checkout-btn:hover {
    background: #ffffff;
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 20px rgba(184, 134, 11, 0.8);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}