/* ========================================
   SHOPPING CART & EXTRAS MODAL STYLES
   ======================================== */

/* Extras Modal */
.extras-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 10000;
    align-items: center;
    justify-content: center;
    padding: 20px;
    backdrop-filter: blur(5px);
    animation: fadeIn 0.3s ease;
}

.modal-content {
    background: white;
    border-radius: 24px;
    max-width: 500px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: slideUp 0.3s ease;
}

.modal-header {
    padding: 24px;
    border-bottom: 2px solid #f0f0f0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modal-header h3 {
    color: var(--primary-brown);
    font-size: 1.4rem;
    margin: 0;
}

.btn-close-modal {
    background: none;
    border: none;
    font-size: 1.5rem;
    color: #999;
    cursor: pointer;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    transition: all 0.3s;
}

.btn-close-modal:hover {
    background: #f0f0f0;
    color: var(--primary-brown);
}

.modal-body {
    padding: 24px;
}

.modal-item-info {
    display: flex;
    gap: 16px;
    margin-bottom: 24px;
    padding: 16px;
    background: #f9f9f9;
    border-radius: 16px;
}

.modal-item-image {
    width: 80px;
    height: 80px;
    border-radius: 12px;
    object-fit: cover;
}

.modal-item-details h4 {
    color: var(--primary-brown);
    font-size: 1.2rem;
    margin-bottom: 8px;
}

.modal-item-details .base-price {
    color: var(--orange);
    font-size: 1.3rem;
    font-weight: 700;
}

/* Temperature Selection */
.temperature-section {
    margin-top: 20px;
    margin-bottom: 20px;
    padding: 15px;
    background: linear-gradient(135deg, #fff8dc 0%, #ffe4b5 100%);
    border-radius: 12px;
    border: 2px solid #ff6b35;
}

.temperature-section h4 {
    margin: 0 0 15px 0;
    font-size: 16px;
    color: #333;
    text-align: center;
}

.temperature-options {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.temperature-option {
    position: relative;
    cursor: pointer;
}

.temperature-option input[type="radio"] {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}

.temperature-option .temp-label {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 15px;
    background: white;
    border: 2px solid #ddd;
    border-radius: 10px;
    transition: all 0.3s ease;
    text-align: center;
    min-height: 90px;
}

.temperature-option .temp-label i {
    font-size: 24px;
    margin-bottom: 8px;
}

.temperature-option input[type="radio"]:checked + .temp-label {
    background: linear-gradient(135deg, #ff6b35 0%, #ff8c42 100%);
    color: white;
    border-color: #ff6b35;
    transform: scale(1.05);
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.4);
}

.temperature-option .temp-label strong {
    display: block;
    font-size: 16px;
    margin-bottom: 3px;
}

.temperature-option .temp-label small {
    font-size: 12px;
    opacity: 0.8;
}

.temperature-option:hover .temp-label {
    border-color: #ff6b35;
    transform: translateY(-2px);
}

.cart-item-temp {
    font-size: 13px;
    color: #ff6b35;
    font-weight: 600;
    margin: 5px 0;
}

.extras-section {
    margin-bottom: 24px;
}

.extras-section h4 {
    color: var(--primary-brown);
    font-size: 1.1rem;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.extras-section h4 i {
    color: var(--orange);
}

.extras-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.extra-option {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px;
    background: white;
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s;
}

.extra-option:hover {
    border-color: var(--orange);
    background: #fff5f0;
}

.extra-option input[type="checkbox"] {
    width: 20px;
    height: 20px;
    cursor: pointer;
    accent-color: var(--orange);
}

.extra-option label {
    flex: 1;
    display: flex;
    justify-content: space-between;
    cursor: pointer;
    font-size: 0.95rem;
}

.extra-option.checked {
    border-color: var(--orange);
    background: #fff5f0;
}

.quantity-section {
    margin-bottom: 24px;
}

.quantity-section h4 {
    color: var(--primary-brown);
    font-size: 1.1rem;
    margin-bottom: 12px;
}

.quantity-controls {
    display: flex;
    align-items: center;
    gap: 16px;
}

.btn-quantity {
    width: 40px;
    height: 40px;
    border: 2px solid var(--orange);
    background: white;
    color: var(--orange);
    border-radius: 8px;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-quantity:hover {
    background: var(--orange);
    color: white;
}

#itemQuantity {
    width: 80px;
    height: 40px;
    text-align: center;
    font-size: 1.1rem;
    font-weight: 700;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
}

.modal-footer {
    padding: 24px;
    border-top: 2px solid #f0f0f0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modal-total {
    display: flex;
    flex-direction: column;
}

.modal-total label {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 4px;
}

.modal-total .total-price {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--orange);
}

.btn-add-to-cart {
    padding: 14px 32px;
    background: var(--primary-brown);
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    gap: 8px;
}

.btn-add-to-cart:hover {
    background: var(--dark-brown);
    transform: translateY(-2px);
}

/* Shopping Cart Floating Button */
.cart-button {
    position: fixed;
    bottom: 100px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: var(--orange);
    color: white;
    border: none;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    box-shadow: 0 8px 24px rgba(217, 125, 84, 0.4);
    transition: all 0.3s;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cart-button:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(217, 125, 84, 0.5);
}

.cart-count {
    position: absolute;
    top: -5px;
    right: -5px;
    background: #FF4444;
    color: white;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: none;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 700;
    border: 2px solid white;
}

/* Cart Panel */
.cart-panel {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    max-width: 450px;
    height: 100%;
    background: white;
    box-shadow: -4px 0 24px rgba(0, 0, 0, 0.2);
    z-index: 10001;
    transition: right 0.3s ease;
    display: flex;
    flex-direction: column;
}

.cart-panel.active {
    right: 0;
}

.cart-header {
    padding: 24px;
    background: var(--primary-brown);
    color: white;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cart-header h3 {
    margin: 0;
    font-size: 1.4rem;
}

.btn-close-cart {
    background: none;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    transition: all 0.3s;
}

.btn-close-cart:hover {
    background: rgba(255, 255, 255, 0.2);
}

.cart-body {
    flex: 1;
    overflow-y: auto;
    padding: 20px;
}

.cart-empty {
    text-align: center;
    padding: 60px 20px;
    color: #999;
}

.cart-empty i {
    font-size: 4rem;
    margin-bottom: 16px;
    color: #ddd;
}

.cart-items {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.cart-item {
    background: #f9f9f9;
    border-radius: 16px;
    padding: 16px;
    display: flex;
    justify-content: space-between;
    gap: 12px;
}

.cart-item-details h4 {
    color: var(--primary-brown);
    font-size: 1rem;
    margin-bottom: 8px;
}

.cart-item-base {
    font-size: 0.85rem;
    color: #666;
    margin-bottom: 4px;
}

.cart-item-extras {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin: 8px 0;
}

.extra-tag {
    font-size: 0.75rem;
    padding: 4px 10px;
    background: #fff;
    border: 1px solid var(--orange);
    color: var(--orange);
    border-radius: 12px;
}

.cart-item-qty {
    font-size: 0.85rem;
    color: #666;
    margin-top: 4px;
}

.cart-item-actions {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 8px;
}

.cart-item-total {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--orange);
}

/* Promo Item Styles */
.cart-item.promo-item {
    background: linear-gradient(135deg, #fff5e6 0%, #ffe6cc 100%);
    border: 2px solid #ff6b35;
    position: relative;
    overflow: hidden;
}

.cart-item.promo-item::before {
    content: '🎉';
    position: absolute;
    top: -10px;
    right: -10px;
    font-size: 60px;
    opacity: 0.15;
    transform: rotate(15deg);
}

.promo-badge {
    display: inline-block;
    background: linear-gradient(135deg, #ff6b35, #ff8c42);
    color: white;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 8px;
    box-shadow: 0 2px 8px rgba(255, 107, 53, 0.3);
}

.cart-item-total.free-price {
    color: #4CAF50;
    font-size: 1.2rem;
    font-weight: 800;
}

/* Active Promos Display in Cart */
.cart-promos-active {
    margin: 16px 0;
    padding: 16px;
    background: linear-gradient(135deg, #fff3cd 0%, #ffe69c 100%);
    border-radius: 12px;
    border: 2px dashed #ff6b35;
    animation: slideIn 0.3s ease;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.promo-active-title {
    font-weight: 700;
    color: #ff6b35;
    font-size: 1rem;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.promo-active-item {
    padding: 8px 12px;
    background: white;
    border-radius: 8px;
    margin-top: 6px;
    font-size: 0.9rem;
    color: #333;
    border-left: 3px solid #ff6b35;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s;
}

.promo-chip {
    display: inline-block;
    margin-left: 6px;
    padding: 2px 8px;
    border-radius: 999px;
    font-size: 0.7rem;
    font-weight: 700;
    background: rgba(255, 107, 53, 0.15);
    color: #c5441d;
    text-transform: uppercase;
}

.promo-active-item:hover {
    transform: translateX(4px);
    box-shadow: 0 2px 8px rgba(255, 107, 53, 0.2);
}

.btn-clear-promos {
    margin-top: 10px;
    padding: 8px 16px;
    background: #dc3545;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 0.85rem;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    gap: 6px;
    width: 100%;
    justify-content: center;
}

.btn-clear-promos:hover {
    background: #c82333;
    transform: scale(1.02);
}

.btn-remove {
    background: #ff4444;
    color: white;
    border: none;
    width: 32px;
    height: 32px;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-remove:hover {
    background: #cc0000;
}

.cart-footer {
    padding: 20px;
    border-top: 2px solid #f0f0f0;
    background: white;
}

.cart-total-section {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
    padding: 16px;
    background: #f9f9f9;
    border-radius: 12px;
}

.cart-total-section h4 {
    font-size: 1.2rem;
    color: var(--primary-brown);
}

.cart-total-price {
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--orange);
}

.cart-actions {
    display: flex;
    gap: 12px;
}

.btn-clear-cart {
    flex: 1;
    padding: 14px;
    background: #f0f0f0;
    color: #666;
    border: none;
    border-radius: 12px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-clear-cart:hover {
    background: #e0e0e0;
}

.btn-checkout {
    flex: 2;
    padding: 14px;
    background: #25D366;
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.btn-checkout:hover {
    background: #20BA5A;
    transform: translateY(-2px);
}

/* Notification */
.cart-notification {
    position: fixed;
    top: 100px;
    right: 30px;
    background: var(--primary-brown);
    color: white;
    padding: 16px 24px;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    gap: 12px;
    z-index: 10002;
    opacity: 0;
    transform: translateX(100px);
    transition: all 0.3s;
}

.cart-notification.show {
    opacity: 1;
    transform: translateX(0);
}

.cart-notification i {
    font-size: 1.2rem;
    color: #4CAF50;
}

/* Checkout Modal */
.checkout-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 10003;
    align-items: center;
    justify-content: center;
    padding: 20px;
    backdrop-filter: blur(5px);
}

.checkout-content {
    background: white;
    border-radius: 24px;
    max-width: 600px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: slideUp 0.3s ease;
}

.checkout-header {
    padding: 24px;
    border-bottom: 2px solid #f0f0f0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: linear-gradient(135deg, var(--primary-brown) 0%, var(--secondary-brown) 100%);
    border-radius: 24px 24px 0 0;
    color: white;
}

.checkout-header h3 {
    margin: 0;
    font-size: 1.5rem;
}

.checkout-body {
    padding: 24px;
}

.form-section {
    margin-bottom: 24px;
}

.form-section h4 {
    color: var(--primary-brown);
    font-size: 1.1rem;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.form-section h4 i {
    color: var(--orange);
}

.form-group {
    margin-bottom: 16px;
}

.form-group label {
    display: block;
    color: var(--primary-brown);
    font-weight: 600;
    margin-bottom: 8px;
    font-size: 0.95rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    font-size: 0.95rem;
    font-family: inherit;
    transition: all 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--orange);
    background: #fff5f0;
}

.form-group textarea {
    resize: vertical;
    min-height: 80px;
}

.delivery-options {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.delivery-option {
    position: relative;
}

.delivery-option input[type="radio"] {
    position: absolute;
    opacity: 0;
}

.delivery-option label {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 20px 16px;
    background: white;
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s;
    text-align: center;
}

.delivery-option label i {
    font-size: 2rem;
    color: var(--orange);
}

.delivery-option label span {
    font-weight: 600;
    color: var(--primary-brown);
}

.delivery-option input[type="radio"]:checked + label {
    border-color: var(--orange);
    background: #fff5f0;
}

/* Payment Section */
.payment-section {
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    border: 2px solid #38bdf8;
}

.payment-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 12px;
}

.payment-option {
    position: relative;
}

.payment-option input[type="radio"] {
    display: none;
}

.payment-option label {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 16px 12px;
    background: white;
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    min-height: 110px;
}

.payment-option label:hover {
    border-color: #38bdf8;
    background: #f0f9ff;
    transform: translateY(-2px);
}

.payment-option label i {
    font-size: 2rem;
    color: #38bdf8;
    margin-bottom: 8px;
}

.payment-option label span {
    font-weight: 600;
    color: var(--primary-brown);
    display: block;
}

.payment-option label small {
    font-size: 0.75rem;
    color: #666;
    margin-top: 4px;
    display: block;
}

.payment-option input[type="radio"]:checked + label {
    border-color: #38bdf8;
    background: linear-gradient(135deg, #e0f2fe 0%, #bae6fd 100%);
    box-shadow: 0 4px 12px rgba(56, 189, 248, 0.3);
}

.payment-option input[type="radio"]:checked + label i {
    color: #0284c7;
}

/* Payment Info Section */
.payment-info {
    background: white;
    border: 2px solid #38bdf8;
    animation: slideDown 0.3s ease;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.payment-details {
    background: #f8fafc;
    border-radius: 12px;
    padding: 20px;
}

.payment-header {
    text-align: center;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px dashed #cbd5e1;
}

.payment-header h4 {
    color: var(--primary-brown);
    margin-top: 10px;
    font-size: 1.2rem;
}

.ewallet-options {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin-bottom: 20px;
}

.ewallet-item {
    background: white;
    padding: 12px;
    border-radius: 10px;
    border: 2px solid #e0e0e0;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: all 0.3s;
}

.ewallet-item:hover {
    border-color: #00a8e8;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 168, 232, 0.2);
}

.ewallet-logo {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
}

.ewallet-info {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.ewallet-info strong {
    font-size: 0.95rem;
    color: #333;
    margin-bottom: 2px;
}

.ewallet-info span {
    font-size: 0.8rem;
    color: #666;
    font-family: 'Courier New', monospace;
}

@media (max-width: 480px) {
    .ewallet-options {
        grid-template-columns: 1fr;
    }
}

.payment-account {
    background: white;
    padding: 16px;
    border-radius: 10px;
    margin-bottom: 15px;
    border: 2px solid #00a8e8;
}

.payment-account label {
    display: block;
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.account-number {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}

.account-number strong {
    font-size: 1.4rem;
    color: #00a8e8;
    letter-spacing: 1px;
}

.btn-copy {
    padding: 8px 16px;
    background: #00a8e8;
    color: white;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-size: 0.85rem;
    font-weight: 600;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    gap: 6px;
}

.btn-copy:hover {
    background: #0077b6;
    transform: scale(1.05);
}

.qris-info {
    text-align: center;
}

.qris-apps {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin: 15px 0;
}

.qris-app {
    padding: 8px 16px;
    background: white;
    border: 2px solid #e0e0e0;
    border-radius: 20px;
    font-size: 0.85rem;
    color: #666;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.qris-app i {
    color: #ff6b35;
}

.qris-placeholder {
    background: white;
    padding: 30px;
    border-radius: 12px;
    border: 2px dashed #cbd5e1;
    margin: 20px 0;
}

.payment-instructions {
    background: #fff3e0;
    padding: 15px;
    border-radius: 10px;
    margin-top: 15px;
    border-left: 4px solid #ff6b35;
}

.payment-instructions p {
    margin: 0 0 10px 0;
    color: #333;
}

.payment-instructions ol {
    margin: 0;
    padding-left: 20px;
}

.payment-instructions li {
    margin: 8px 0;
    font-size: 0.9rem;
    line-height: 1.5;
    color: #555;
}

.payment-instructions strong {
    color: #ff6b35;
}

.order-summary {
    background: #f9f9f9;
    border-radius: 16px;
    padding: 20px;
    margin-bottom: 24px;
}

.order-summary h4 {
    color: var(--primary-brown);
    font-size: 1.1rem;
    margin-bottom: 16px;
}

.summary-items {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 16px;
}

.summary-item {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    font-size: 0.9rem;
    padding-bottom: 8px;
    border-bottom: 1px solid #e0e0e0;
}

.summary-item:last-child {
    border-bottom: none;
}

.summary-extras {
    display: block;
    font-size: 0.8rem;
    color: var(--orange);
    margin-top: 2px;
}

.summary-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 16px;
    border-top: 2px solid var(--orange);
}

.summary-total h4 {
    margin: 0;
    font-size: 1.2rem;
    color: var(--primary-brown);
}

.summary-total .total-amount {
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--orange);
}

.checkout-footer {
    padding: 24px;
    border-top: 2px solid #f0f0f0;
    display: flex;
    gap: 12px;
}

.btn-cancel-checkout {
    flex: 1;
    padding: 14px;
    background: #f0f0f0;
    color: #666;
    border: none;
    border-radius: 12px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-cancel-checkout:hover {
    background: #e0e0e0;
}

.btn-submit-checkout {
    flex: 2;
    padding: 14px;
    background: #25D366;
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.btn-submit-checkout:hover {
    background: #20BA5A;
    transform: translateY(-2px);
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Paket Modal */
.paket-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 10000;
    align-items: center;
    justify-content: center;
    padding: 20px;
    backdrop-filter: blur(5px);
}

.paket-menu-selections {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 20px;
}

.paket-menu-item label {
    display: block;
    color: var(--primary-brown);
    font-weight: 600;
    margin-bottom: 8px;
    font-size: 0.95rem;
}

.paket-menu-select {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    font-size: 0.95rem;
    font-family: inherit;
    transition: all 0.3s;
    background: white;
    cursor: pointer;
}

.paket-menu-select:focus {
    outline: none;
    border-color: var(--orange);
    background: #fff5f0;
}

.paket-notes {
    margin-top: 16px;
}

.paket-notes label {
    display: block;
    color: var(--primary-brown);
    font-weight: 600;
    margin-bottom: 8px;
}

.paket-notes textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    font-size: 0.9rem;
    font-family: inherit;
    resize: vertical;
    min-height: 60px;
}

.cart-item-notes {
    font-size: 0.85rem;
    color: #666;
    margin-top: 6px;
    font-style: italic;
}

/* Sold Out Styling */
.sold-out {
    position: relative;
    opacity: 0.6;
    pointer-events: none;
}

.sold-out-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
}

.sold-out-badge {
    background: #FF4444;
    color: white;
    padding: 12px 32px;
    border-radius: 30px;
    font-size: 1.2rem;
    font-weight: 800;
    letter-spacing: 2px;
    transform: rotate(-15deg);
    box-shadow: 0 8px 24px rgba(255, 68, 68, 0.5);
    border: 3px solid white;
}

/* Responsive */
@media (max-width: 768px) {
    .modal-content {
        max-width: 95%;
        max-height: 85vh;
    }
    
    .cart-panel {
        max-width: 100%;
    }
    
    .cart-button {
        bottom: 80px;
        right: 20px;
        width: 55px;
        height: 55px;
    }
    
    .delivery-options {
        grid-template-columns: 1fr;
    }
}

/* Promo Modal Styles */
.promo-info-box {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    background: linear-gradient(135deg, #fff5e6 0%, #ffe6cc 100%);
    border-radius: 12px;
    border-left: 5px solid #ff6b35;
    margin-bottom: 25px;
}

.promo-info-box i {
    font-size: 36px;
    color: #ff6b35;
}

.promo-info-box h4 {
    margin: 0 0 5px 0;
    color: var(--primary-brown);
    font-size: 1.2rem;
}

.promo-value-text {
    margin: 0;
    font-size: 1.1rem;
    font-weight: bold;
    color: #ff6b35;
}

.promo-menu-selection {
    margin: 25px 0;
    padding: 20px;
    background: #f9f9f9;
    border-radius: 12px;
}

.promo-menu-selection h4 {
    margin: 0 0 10px 0;
    color: var(--primary-brown);
    font-size: 1.1rem;
}

.promo-note {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 15px;
}

.promo-menu-list {
    margin-top: 15px;
}

.promo-menu-select {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s;
    background: white;
    cursor: pointer;
}

.promo-menu-select:focus {
    outline: none;
    border-color: #ff6b35;
    background: #fff5f0;
    box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.1);
}

.promo-min-purchase {
    margin-top: 15px;
    padding: 12px 15px;
    background: linear-gradient(135deg, #fff3e0, #ffe0b2);
    border-radius: 8px;
    border-left: 4px solid #ff6b35;
    font-size: 0.95rem;
    color: #333;
    display: flex;
    align-items: center;
    gap: 10px;
}

.promo-min-purchase i {
    color: #ff6b35;
    font-size: 1.1rem;
}

.promo-instructions {
    margin-top: 25px;
    padding: 20px;
    background: white;
    border: 2px solid #e0e0e0;
    border-radius: 12px;
}

.promo-instructions h4 {
    margin: 0 0 15px 0;
    color: var(--primary-brown);
    font-size: 1.1rem;
}

.promo-instructions ol {
    margin: 0;
    padding-left: 20px;
    color: #555;
}

.promo-instructions li {
    margin: 10px 0;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Promo Verification Input in Modal */
.promo-verification-input {
    margin-top: 20px;
    padding: 20px;
    background: #f0f8ff;
    border-radius: 12px;
    border: 2px dashed #4a90e2;
}

.promo-verification-input .form-group {
    margin-bottom: 15px;
}

.promo-verification-input .form-group:last-child {
    margin-bottom: 0;
}

.promo-verification-input label {
    display: block;
    margin-bottom: 8px;
    color: #333;
    font-weight: 600;
    font-size: 0.95rem;
}

.promo-verification-input label i {
    color: #4a90e2;
    margin-right: 6px;
}

.promo-input {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #d0e7ff;
    border-radius: 10px;
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s;
    background: white;
}

.promo-input:focus {
    outline: none;
    border-color: #4a90e2;
    background: #f0f8ff;
    box-shadow: 0 0 0 3px rgba(74, 144, 226, 0.1);
}

.input-hint {
    display: block;
    margin-top: 6px;
    font-size: 0.85rem;
    color: #666;
    font-style: italic;
}

/* Promo Verification in Checkout Form */
.promo-verification {
    background: linear-gradient(135deg, #fff8e1 0%, #ffecb3 100%) !important;
    border: 2px solid #ffa726 !important;
}

.promo-verify-info {
    background: white;
    padding: 12px 16px;
    border-radius: 8px;
    margin-bottom: 15px;
    border-left: 4px solid #ffa726;
}

.promo-verify-info p {
    margin: 0;
    color: #333;
    font-size: 0.95rem;
}

.promo-verify-info i {
    color: #ffa726;
    margin-right: 8px;
}

.promo-verify-item {
    background: white;
    padding: 15px;
    border-radius: 10px;
    margin-bottom: 12px;
    border: 2px solid #ffe0b2;
}

.promo-verify-item:last-child {
    margin-bottom: 0;
}

.promo-verify-title {
    font-weight: 700;
    color: #ff6b35;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.promo-verify-item .form-group {
    margin-bottom: 10px;
}

.promo-verify-item .form-group:last-child {
    margin-bottom: 0;
}

.promo-verify-item label {
    display: block;
    margin-bottom: 6px;
    color: #555;
    font-size: 0.9rem;
    font-weight: 600;
}

.promo-verify-item input,
.promo-verify-item textarea {
    width: 100%;
    padding: 10px 14px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 0.95rem;
    font-family: inherit;
    transition: all 0.3s;
}

.promo-verify-item input:focus,
.promo-verify-item textarea:focus {
    outline: none;
    border-color: #ff6b35;
    background: #fff5f0;
    box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.1);
}

.modal-footer {
    display: flex;
    justify-content: flex-end;
    gap: 12px;
    padding: 20px;
    border-top: 1px solid #eee;
}

.btn-secondary {
    padding: 12px 24px;
    background: #f5f5f5;
    color: #333;
    border: 2px solid #ddd;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background: #e0e0e0;
    border-color: #bbb;
}

.btn-promo-apply {
    padding: 12px 24px;
    background: linear-gradient(135deg, #ff6b35, #ff8c42);
    color: white;
    border: none;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 4px 12px rgba(255, 107, 53, 0.3);
}

.btn-promo-apply:hover {
    background: linear-gradient(135deg, #ff8c42, #ff6b35);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(255, 107, 53, 0.4);
}

.btn-promo-apply i {
    font-size: 1.1rem;
}
