/* Pink theme for AddToCart */
body {
    background: linear-gradient(120deg, #ffb6c1 0%, #ff69b4 100%);
    min-height: 100vh;
    font-family: 'Segoe UI', Arial, sans-serif;
}

.cart-hero {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 15vh;
    color: #fff;
    text-shadow: 0 2px 8px rgba(0,0,0,0.12);
    margin-bottom: 2rem;
}

.cart-hero h2 {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
    letter-spacing: 1.5px;
    animation: popIn 1s cubic-bezier(.68,-0.55,.27,1.55);
}

@keyframes popIn {
    0% { transform: scale(0.7) rotate(-10deg); opacity: 0; }
    80% { transform: scale(1.1) rotate(2deg); opacity: 1; }
    100% { transform: scale(1) rotate(0); }
}

#cartTable {
    background: rgba(255,255,255,0.95);
    border-radius: 18px;
    box-shadow: 0 4px 24px rgba(255,105,180,0.13);
    overflow: hidden;
    margin-bottom: 2rem;
    border: 2px solid #ff69b4;
    animation: fadeInUp 0.8s ease;
}
#cartTable th {
    background: #ff69b4;
    color: #fff;
    font-size: 1.1rem;
    border: none;
}
#cartTable td {
    font-size: 1.1rem;
    color: #b30059;
    border: none;
    background: #fff0f6;
}
#cartTable tfoot td {
    background: #ffb6c1;
    color: #fff;
    font-weight: 600;
    font-size: 1.15rem;
}
@keyframes fadeInUp {
    0% { opacity: 0; transform: translateY(40px); }
    100% { opacity: 1; transform: translateY(0); }
}
.btn-pink {
    background: #ff69b4 !important;
    color: #fff !important;
    border: none;
    padding: 0.5rem 1.5rem;
    border-radius: 30px;
    font-size: 1.1rem;
    font-weight: 600;
    box-shadow: 0 2px 8px rgba(255,105,180,0.12);
    transition: background 0.2s;
    text-decoration: none;
    margin: 0 0.5rem;
}
.btn-pink:hover {
    background: #ff1493 !important;
}
.btn-warning {
    background: #ffb6c1 !important;
    color: #b30059 !important;
    border: none;
    border-radius: 18px;
    font-weight: 600;
    transition: background 0.2s;
}
.btn-warning:hover {
    background: #ff69b4 !important;
    color: #fff !important;
}
.text-center {
    margin-bottom: 2rem;
}
