.page-title {
    font-family: 'Pangolin';
    color: #4e342e;
    font-weight: 700;
    font-size: 40px;
    padding-top: 40px;
    margin: 10px;
}

.page-subtitle {
    font-family: 'Nunito', sans-serif;
    color: #2e7d32;
    font-size: 20px;
    font-weight: 400;
}

.section-header {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    border-bottom: 1px solid #e9ecef;
}

.section-header h3 {
    font-family: 'Pangolin', cursive;
    font-weight: 700;
    font-size: 24px;
    margin-top: 20px;
    color: #4e342e;
}

.section-header p {
    font-family: 'Nunito', sans-serif;
    margin: 0;
    opacity: 0.95;
    font-size: 16px;
    color: #2e7d32;
}

.item-list {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: flex-start;
}

.item-card {
    background: #f9a825;
    border: 2px solid #4e342e;
    /* biru */
    border-radius: 5px;
    margin-bottom: 0;
    overflow: hidden;
    flex: 1 1 500px;
    min-width: 500px;
    max-width: 100%;
    box-shadow: 0 2px 8px rgba(2, 136, 209, 0.08);
    transition: box-shadow 0.2s;
    position: relative;
}

.item-header {
    background: #4e342e;
    padding: 18px 24px 10px 24px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.item-icon {
    width: 36px;
    height: 36px;
    background: #f9a825;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #2e7d32;
    font-size: 22px;
    font-family: 'Pangolin', cursive;
    font-weight: 700;
    box-shadow: 0 2px 8px rgba(2, 136, 209, 0.13);
}

.item-name {
    font-family: 'Pangolin', cursive;
    color: #f9a825;
    font-weight: 700;
    font-size: 24px;
    margin: 0;
    flex: 1;
    letter-spacing: 0.5px;
}

.item-details {
    padding: 18px 24px 18px 24px;
}

.detail-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
    padding: 7px 0;
    border-bottom: 1px solid #4e342e;
}

.detail-row:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.detail-label {
    font-family: 'Nunito', sans-serif;
    color: #2e7d32;
    font-weight: 700;
    font-size: 16px;
}

.detail-value {
    font-family: 'Nunito', sans-serif;
    color: #2e7d32;
    font-weight: 700;
    font-size: 16px;
}

.quantity-badge {
    background: #f9a825;
    color: #ffffff;
    padding: 7px 16px;
    border-radius: 6px;
    font-family: 'Nunito', sans-serif;
    font-weight: 700;
    font-size: 16px;
    letter-spacing: 0.5px;
    box-shadow: 0 1px 4px rgba(249, 168, 37, 0.13);
    display: inline-block;
    min-width: 40px;
    text-align: center;
}

.qty-btn {
    background: #2e7d32;
    color: #f9a825;
    border: none;
    border-radius: 5px;
    width: 32px;
    height: 32px;
    font-size: 1.2rem;
    font-weight: bold;
    margin: 0 4px;
    cursor: pointer;
    transition: background 0.2s;
    vertical-align: middle;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.qty-btn:disabled {
    background: #479470;
    color: #fff;
    cursor: not-allowed;
}

.total-section {
    background: #ffffff;
    border: 2px solid #4e342e;
    border-radius: 8px;
    padding: 32px 24px 24px 24px;
    margin-top: 30px;
    box-shadow: 0 2px 12px rgba(78, 52, 46, 0.07);
}

.total-title {
    font-family: 'Pangolin', cursive;
    font-weight: 700;
    font-size: 40px;
    margin-bottom: 18px;
    text-align: center;
    color: #4e342e;
}

.total-amount {
    font-family: 'Nunito', sans-serif;
    font-size: 40px;
    font-weight: 700;
    text-align: center;
    color: #2e7d32;
    margin-bottom: 25px;
    padding: 18px;
    letter-spacing: 1px;
}

.action-buttons {
    display: flex;
    gap: 18px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 10px;
}

.btn {
    font-family: 'Nunito', sans-serif;
    font-weight: 700;
    font-size: 16px;
    padding: 10px 24px;
    border-radius: 14px;
    border: none;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.13);
}

.btn-clear {
    background: #4e342e !important;
    color: #ffffff !important;
}

.btn-clear:hover {
    background: #f9a825 !important;
    color: #4e342e !important;
    transform: translateY(-2px) scale(1.04);
    box-shadow: 0 4px 12px rgba(220, 53, 69, 0.18);
}

.btn-checkout {
    background: #f9a825 !important;
    color: #4e342e !important;
    padding: 13px 36px;
    box-shadow: 0 4px 15px rgba(255, 152, 0, 0.18);
}

.btn-checkout:hover {
    background: #2e7d32 !important;
    color: #ffffff !important;
    transform: translateY(-2px) scale(1.04);
    box-shadow: 0 6px 20px rgba(255, 152, 0, 0.22);
}

.btn-continue {
    background: #2e7d32 !important;
    color: #ffffff !important;
}

.btn-continue:hover {
    background: #4e342e !important;
    color: #ffffff !important;
    text-decoration: none;
    transform: translateY(-2px) scale(1.04);
    box-shadow: 0 4px 12px rgba(2, 136, 209, 0.18);
}

.empty-cart {
    text-align: center;
    padding: 60px 20px 60px 20px;
    background: #f9a825;
    border-radius: 12px;
    border: 1px solid #e9ecef;
}

.empty-cart h3 {
    font-family: 'Pangolin', cursive;
    color: #4e342e;
    font-weight: 700;
    font-size: 40px;
    margin-bottom: 18px;
}

.empty-cart p {
    font-family: 'Nunito', sans-serif;
    color: #4e342e;
    font-size: 18px;
    margin-bottom: 30px;
}

.table-responsive {
    overflow: hidden;
    margin-bottom: 0;
}

.table {
    margin-bottom: 0;
}

.table th {
    font-family: 'Pangolin', cursive;
    color: #4e342e;
    font-weight: 700;
    font-size: 16px;
    padding: 16px 14px;
}

.table td {
    padding: 16px 14px;
    font-family: 'Nunito', sans-serif;
    font-size: 16px;
    vertical-align: middle;
    color: #2e7d32;
}

@media (max-width: 767px) {
    .item-list {
        flex-direction: column;
        gap: 12px;
    }

    .item-card {
        min-width: 0;
    }
}

.qty-form-inline {
    display: inline-flex;
    align-items: center;
    gap: 0;
}