/* ======= Keranjang Page Styles ======= */
body {
    font-family: 'Roboto', sans-serif;
    background-color: #f9f9f9;
    color: #333;
    margin: 0;
    padding: 20px 0;
}

.keranjang-page.container {
    max-width: 960px;
    margin: 0 auto;
    padding: 0 20px;
}

.keranjang-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #b71c1a;
    text-align: center;
}

/* Tombol Navigasi */
.keranjang-actions {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 30px;
}

.btn {
    padding: 10px 20px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 25px;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    cursor: pointer;
    box-shadow: 0 3px 8px rgba(0,0,0,0.1);
}

.btn-primary {
    background-color: #d62420;
    color: #ffd300;
    border: none;
}

.btn-primary:hover {
    background-color: #b71c1a;
}

.btn-secondary {
    background-color: transparent;
    color: #d62420;
    border: 2px solid #d62420;
}

.btn-secondary:hover {
    background-color: #d62420;
    color: #fff;
}

.btn-remove {
    background-color: #f44336;
    color: white;
    padding: 6px 14px;
    font-size: 0.9rem;
    border-radius: 20px;
    text-decoration: none;
    display: inline-block;
}

.btn-remove:hover {
    background-color: #d32f2f;
}

/* Tabel Keranjang */
.keranjang-table {
    width: 100%;
    border-collapse: collapse;
    background-color: #fff;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
    border-radius: 10px;
    overflow: hidden;
}

.keranjang-table th,
.keranjang-table td {
    padding: 14px 16px;
    border-bottom: 1px solid #eee;
    text-align: center;
}

.keranjang-table thead {
    background-color: #ffe082;
    color: #5d4037;
}

.keranjang-qty {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.qty-btn {
    background-color: #ffcc80;
    color: #5d4037;
    font-weight: bold;
    padding: 4px 10px;
    border-radius: 6px;
    text-decoration: none;
    transition: background-color 0.2s;
}

.qty-btn:hover {
    background-color: #ffb74d;
}

.qty-value {
    min-width: 24px;
    display: inline-block;
    text-align: center;
}

/* Total Row */
.keranjang-total-row {
    background-color: #fff8e1;
    font-weight: bold;
}

.total-label {
    text-align: right;
}

.total-value {
    text-align: left;
    color: #d62420;
}

/* Checkout */
.keranjang-checkout {
    margin-top: 30px;
    text-align: center;
}

.btn-checkout {
    font-size: 1.1rem;
    padding: 12px 28px;
}

/* Keranjang Kosong */
.keranjang-empty {
    text-align: center;
    font-size: 1.2rem;
    color: #999;
    margin-top: 40px;
}

/* Responsif */
@media (max-width: 768px) {
    .keranjang-actions {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }

    .keranjang-table th,
    .keranjang-table td {
        font-size: 0.95rem;
        padding: 10px;
    }

    .qty-btn {
        padding: 4px 8px;
    }
}
