:root {
    --primary-color: #f0592d;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background: #f9fafb;
    color: #1f2937;
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
header {
    background: var(--primary-color);
    color: white;
    padding: 1.5rem 0;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 100;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

header h1 {
    font-size: 1.8rem;
}

.cart-icon {
    background: white;
    color: var(--primary-color);
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    cursor: pointer;
    font-weight: 600;
    transition: transform 0.2s;
}

.cart-icon:hover {
    transform: scale(1.05);
}

/* Category Filter */
.category-filter {
    display: flex;
    gap: 0.75rem;
    margin: 2rem 0;
    flex-wrap: wrap;
    justify-content: center;
}

.category-btn {
    padding: 0.75rem 1.5rem;
    background: white;
    border: 2px solid #e5e7eb;
    border-radius: 25px;
    text-decoration: none;
    color: #374151;
    font-weight: 600;
    transition: all 0.2s;
}

.category-btn:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.category-btn.active {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

/* Menu Grid */
.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.menu-item-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    transition: transform 0.2s, box-shadow 0.2s;
}

.menu-item-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 4px 16px rgba(0,0,0,0.15);
}

.item-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.item-content {
    padding: 1.5rem;
}

.item-content h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: #111827;
}

.item-short-desc {
    font-size: 0.875rem;
    color: #6b7280;
    margin-bottom: 0.5rem;
    font-style: italic;
}

.item-description {
    font-size: 0.95rem;
    color: #4b5563;
    margin-bottom: 1rem;
}

.item-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 1rem;
}

.price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.min-qty {
    font-size: 0.875rem;
    color: #6b7280;
    margin-top: 0.5rem;
}

/* Buttons */
.btn-primary {
    background: var(--primary-color);
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
}

.btn-primary:hover {
    opacity: 0.9;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.btn-secondary {
    background: #6b7280;
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    transition: all 0.2s;
}

.btn-secondary:hover {
    background: #4b5563;
    transform: translateY(-1px);
}

.btn-block {
    width: 100%;
    margin-top: 1rem;
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    overflow-y: auto;
}

.modal-content {
    background: white;
    margin: 2rem auto;
    padding: 2rem;
    border-radius: 12px;
    max-width: 600px;
    position: relative;
    box-shadow: 0 4px 24px rgba(0,0,0,0.2);
    max-height: 90vh;
    overflow-y: auto;
}

.close {
    position: absolute;
    right: 1.5rem;
    top: 1.5rem;
    font-size: 2rem;
    font-weight: bold;
    color: #6b7280;
    cursor: pointer;
    z-index: 10;
    background: white;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.close:hover {
    color: #111827;
    background: #f3f4f6;
}

/* Option Groups */
.option-group {
    margin: 1.5rem 0;
    padding: 1rem;
    background: #f9fafb;
    border-radius: 8px;
}

.option-group h4 {
    margin-bottom: 1rem;
    color: #111827;
}

.option-item {
    display: flex;
    align-items: center;
    padding: 0.75rem;
    margin: 0.5rem 0;
    background: white;
    border-radius: 6px;
    cursor: pointer;
    transition: background 0.2s;
}

.option-item:hover {
    background: #f3f4f6;
}

.option-item input {
    margin-right: 0.75rem;
    cursor: pointer;
}

.option-item label {
    flex: 1;
    cursor: pointer;
}

.option-price {
    color: var(--primary-color);
    font-weight: 600;
}

.quantity-selector {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin: 1.5rem 0;
}

.quantity-selector button {
    width: 40px;
    height: 40px;
    border: 2px solid #e5e7eb;
    background: white;
    border-radius: 6px;
    font-size: 1.25rem;
    cursor: pointer;
    transition: all 0.2s;
}

.quantity-selector button:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.quantity-selector input {
    width: 80px;
    text-align: center;
    font-size: 1.25rem;
    font-weight: 600;
    border: 2px solid #e5e7eb;
    border-radius: 6px;
    padding: 0.5rem;
}

/* Cart */
.cart-item {
    padding: 1rem;
    border-bottom: 1px solid #e5e7eb;
}

.cart-item h4 {
    margin-bottom: 0.5rem;
}

.cart-item-options {
    font-size: 0.875rem;
    color: #6b7280;
    margin: 0.5rem 0;
}

.cart-item-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 0.75rem;
    gap: 1rem;
}

.quantity-controls {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.qty-btn {
    width: 28px;
    height: 28px;
    border: 1.5px solid #e5e7eb;
    background: white;
    border-radius: 6px;
    cursor: pointer;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
    color: #374151;
    font-weight: 600;
}

.qty-btn:hover:not(:disabled) {
    border-color: var(--primary-color);
    color: var(--primary-color);
    background: rgba(240, 89, 45, 0.05);
}

.qty-btn:disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

.qty-display {
    min-width: 30px;
    text-align: center;
    font-weight: 600;
    font-size: 0.95rem;
}

.cart-item-price {
    text-align: right;
    font-size: 1.1rem;
    color: var(--primary-color);
}

.remove-item-btn {
    width: 24px;
    height: 24px;
    border: none;
    background: #fee2e2;
    color: #dc2626;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.25rem;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
    flex-shrink: 0;
}

.remove-item-btn:hover {
    background: #dc2626;
    color: white;
    transform: scale(1.1);
}

.cart-total {
    padding: 1.5rem;
    border-top: 2px solid #e5e7eb;
    font-size: 1.25rem;
}

.remove-item {
    color: var(--primary-color);
    cursor: pointer;
    font-size: 0.875rem;
    text-decoration: underline;
}

/* Checkout */
.checkout-container {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 2rem;
    margin: 2rem 0;
}

.checkout-form, .order-summary {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #374151;
}

.form-control {
    width: 100%;
    padding: 0.75rem;
    border: 2px solid #e5e7eb;
    border-radius: 6px;
    font-size: 1rem;
    transition: border-color 0.2s;
}

.form-control:focus {
    outline: none;
    border-color: var(--primary-color);
}

/* Address Form Row Layout */
.form-row {
    display: grid;
    grid-template-columns: 2fr 1fr 1.2fr;
    gap: 15px;
    margin-bottom: 1.5rem;
}

.form-row .form-group {
    margin-bottom: 0;
}

.form-group-city {
    grid-column: 1;
}

.form-group-state {
    grid-column: 2;
}

.form-group-zip {
    grid-column: 3;
}

.field-hint {
    display: block;
    font-size: 12px;
    color: #6b7280;
    margin-top: 4px;
    font-weight: normal;
}

/* Validation Styles */
.form-control.is-valid {
    border-color: #10b981;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3e%3cpath fill='%2310b981' d='M2.3 6.73L.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 12px center;
    background-size: 16px;
    padding-right: 36px;
}

.form-control.is-invalid {
    border-color: #ef4444;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12' width='12' height='12' fill='none' stroke='%23ef4444'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3e%3ccircle cx='6' cy='8.2' r='.6' fill='%23ef4444' stroke='none'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 12px center;
    background-size: 16px;
    padding-right: 36px;
}

.error-message {
    color: #ef4444;
    font-size: 12px;
    margin-top: 4px;
    display: none;
}

.form-control.is-invalid + .error-message {
    display: block;
}

/* Responsive */
@media (max-width: 768px) {
    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .form-row .form-group {
        margin-bottom: 1.5rem;
    }
    
    .form-group-city,
    .form-group-state,
    .form-group-zip {
        grid-column: 1;
    }
}

.order-summary h2 {
    margin-bottom: 1rem;
}

.order-total {
    padding: 1rem 0;
    border-top: 2px solid #e5e7eb;
    margin-top: 1rem;
    font-size: 1.5rem;
}

/* Success Page */
.success-container {
    text-align: center;
    padding: 4rem 2rem;
}

.success-icon {
    font-size: 5rem;
    margin-bottom: 1rem;
}

.success-container h1 {
    color: #059669;
    margin-bottom: 1rem;
}

.success-container p {
    font-size: 1.125rem;
    color: #6b7280;
    margin-bottom: 2rem;
}

/* Responsive */
@media (max-width: 768px) {
    .checkout-container {
        grid-template-columns: 1fr;
    }
    
    .checkout-two-col {
        grid-template-columns: 1fr;
    }
    
    .menu-grid {
        grid-template-columns: 1fr;
    }
    
    header h1 {
        font-size: 1.25rem;
    }
    
    .category-filter {
        justify-content: flex-start;
        overflow-x: auto;
    }
}

/* Order Type Modal Styles */
.order-type-buttons {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
    justify-content: center;
}

.btn-large {
    padding: 2rem 3rem;
    font-size: 1.25rem;
    min-width: 200px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

#orderTypeModal .modal-content,
#orderDetailsModal .modal-content {
    max-width: 550px;
    min-width: 500px;
    margin: 4rem auto;
    max-height: 90vh;
    overflow-y: auto;
}

#orderTypeModal .modal-content h2,
#orderDetailsModal .modal-content h2 {
    text-align: center;
    margin-bottom: 1rem;
    position: sticky;
    top: 0;
    background: white;
    z-index: 6;
    padding: 1rem 0;
    margin-top: -1rem;
}

#orderTypeModal .modal-content p {
    text-align: center;
    color: #6b7280;
    margin-bottom: 1rem;
}

.modal {
    display: none;
    align-items: center;
    justify-content: center;
}

.modal.show {
    display: flex;
}

/* Cart Sidebar */
.cart-sidebar {
    position: fixed;
    top: 0;
    right: -400px;
    width: 400px;
    height: 100vh;
    background: white;
    box-shadow: -2px 0 8px rgba(0,0,0,0.1);
    transition: right 0.3s ease;
    z-index: 1001;
    display: flex;
    flex-direction: column;
}

.cart-sidebar.open {
    right: 0;
}

.cart-header {
    padding: 1.5rem;
    border-bottom: 1px solid #e5e7eb;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cart-header h3 {
    margin: 0;
}

.close-cart {
    background: none;
    border: none;
    font-size: 2rem;
    cursor: pointer;
    color: #6b7280;
    line-height: 1;
    padding: 0;
}

.close-cart:hover {
    color: #111827;
}

.cart-items {
    flex: 1;
    overflow-y: auto;
    padding: 1rem;
}

.cart-footer {
    padding: 1.5rem;
    border-top: 1px solid #e5e7eb;
    background: #f9fafb;
}

.cart-total {
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

/* Product Options Styling */
.option-group {
    margin-bottom: 1.5rem;
}

.option-group h4 {
    margin-bottom: 0.75rem;
    color: #111827;
    font-size: 1rem;
    font-weight: 600;
}

.options-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 0.75rem;
}

.option-item {
    flex: 0 0 calc(50% - 3px);
    box-sizing: border-box;
    position: relative;
}

.option-item input[type="radio"],
.option-item input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.option-item label {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px 10px;
    margin: 0;
    border: 1.5px solid #000;
    border-radius: 6px;
    cursor: pointer;
    user-select: none;
    transition: all 0.2s;
    text-align: center;
    position: relative;
    background: white;
    font-size: 0.85rem;
    font-weight: 400;
    min-height: 38px;
    width: 100%;
}

.option-item input:checked + label {
    border-color: var(--primary-color);
    border-width: 2px;
    background: #fff;
}

.option-item label:hover {
    border-color: var(--primary-color);
    opacity: 0.9;
}

.option-item .option-price {
    font-size: 0.8rem;
    font-weight: 400;
    margin-left: 0.4rem;
}

.option-item input:checked + label .option-price {
    color: var(--primary-color);
    font-weight: 600;
}

/* Text input options */
.option-group textarea.form-control {
    width: 100%;
    grid-column: 1 / -1;
}

/* Order Details Banner */
.order-details-banner {
    background: linear-gradient(135deg, var(--primary-color), #d04520);
    color: white;
    padding: 1.5rem;
    border-radius: 12px;
    margin-bottom: 2rem;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.order-details-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

#orderDetailsText {
    flex: 1;
    font-size: 1.125rem;
    line-height: 1.6;
}

#orderDetailsText strong {
    font-weight: 700;
}

.order-details-banner .btn-secondary {
    background: white;
    color: var(--primary-color);
    border: none;
    white-space: nowrap;
}

.order-details-banner .btn-secondary:hover {
    background: #f9fafb;
    transform: translateY(-2px);
}

/* Tip Modal */
.tip-options {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-top: 1.5rem;
}

.tip-btn {
    padding: 1rem;
    border: 2px solid #e5e7eb;
    background: white;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.2s;
}

.tip-btn:hover {
    border-color: var(--primary-color);
    background: #fef3f2;
}

.tip-btn.active {
    border-color: var(--primary-color);
    background: var(--primary-color);
    color: white;
}

/* Checkout Page */
.checkout-two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.checkout-left, .checkout-right {
    background: white;
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.checkout-left h3, .checkout-right h3 {
    margin-top: 0;
    margin-bottom: 2rem;
    color: #111827;
    font-size: 1.75rem;
    font-weight: 700;
    border-bottom: 3px solid var(--main-color);
    padding-bottom: 0.75rem;
}

.checkout-container {
    max-width: 600px;
    margin: 0 auto;
}

.checkout-form {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.order-total-section {
    margin: 2rem 0;
    padding: 2rem;
    background: linear-gradient(135deg, #f9fafb 0%, #f3f4f6 100%);
    border-radius: 12px;
    border: 1px solid #e5e7eb;
}

.total-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    font-size: 1.1rem;
    padding: 0.5rem 0;
}

.total-row span:first-child {
    color: #6b7280;
    font-weight: 500;
}

.total-row span:last-child {
    color: #111827;
    font-weight: 600;
}

.total-row.final-total {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 3px solid var(--main-color);
    font-size: 1.5rem;
}

.total-row.final-total span {
    color: var(--main-color);
    font-weight: 700;
}

#orderItems {
    margin-bottom: 2rem;
}

#orderItems .order-item {
    background: white;
    padding: 1.25rem;
    border-radius: 10px;
    margin-bottom: 1rem;
    border: 1px solid #e5e7eb;
    transition: all 0.3s ease;
}

#orderItems .order-item:hover {
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    border-color: var(--main-color);
}

#orderItems .order-item h4 {
    margin: 0 0 0.5rem 0;
    color: #111827;
    font-size: 1.15rem;
    font-weight: 600;
}

#orderItems .order-item p {
    margin: 0.25rem 0;
    font-size: 0.95rem;
    color: #6b7280;
}

#orderItems .order-item .item-price {
    color: var(--main-color);
    font-weight: 700;
    font-size: 1.1rem;
    margin-top: 0.5rem;
}

.sandbox-notice {
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
    border: 2px solid #fbbf24;
    border-radius: 12px;
    padding: 1.25rem;
    margin-bottom: 1.5rem;
    color: #92400e;
}

.stripe-card-element {
    padding: 14px 16px;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    background: white;
    transition: all 0.2s;
    min-height: 44px;
}

.stripe-card-element:hover {
    border-color: #d1d5db;
}

.StripeElement--focus {
    border-color: var(--primary-color) !important;
    box-shadow: 0 0 0 3px rgba(240, 89, 45, 0.1) !important;
}

.StripeElement--invalid {
    border-color: #dc2626 !important;
}

.StripeElement--webkit-autofill {
    background-color: #fefde8 !important;
}

#submitButton {
    position: relative;
}

#submitButton:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

#spinner {
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Customize Modal Improvements */
#customizeContent {
    max-height: 70vh;
    overflow-y: auto;
    padding-right: 0.5rem;
}

#customizeContent h2 {
    color: #111827;
    margin-bottom: 0.5rem;
}

#customizeContent .item-description {
    color: #6b7280;
    margin-bottom: 1rem;
    line-height: 1.6;
}

#customizeContent .price {
    color: var(--primary-color);
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.quantity-selector {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin: 1.5rem 0;
    padding: 1rem;
    background: #f9fafb;
    border-radius: 8px;
}

.quantity-selector button {
    width: 40px;
    height: 40px;
    border: 2px solid var(--primary-color);
    background: white;
    color: var(--primary-color);
    border-radius: 8px;
    font-size: 1.5rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s;
}

.quantity-selector button:hover {
    background: var(--primary-color);
    color: white;
}

.quantity-selector input {
    width: 80px;
    text-align: center;
    font-size: 1.25rem;
    font-weight: 600;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    padding: 0.5rem;
}

@media (max-width: 768px) {
    .order-type-buttons {
        flex-direction: column;
    }
    
    .btn-large {
        width: 100%;
    }
    
    .order-details-content {
        flex-direction: column;
        text-align: center;
    }
    
    #orderDetailsText {
        font-size: 1rem;
    }
    
    .tip-options {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .cart-sidebar {
        width: 100%;
        right: -100%;
    }
    
    .options-grid {
        flex-direction: column;
    }
    
    .option-item {
        flex: 0 0 100%;
    }
    
    .option-item label {
        font-size: 0.875rem;
    }
}

/* Order Modal Tabs - Elegant Design */
.order-tabs {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    position: sticky;
    top: 0;
    background: white;
    z-index: 5;
    padding-top: 1rem;
    margin-top: -1rem;
}

.tab-btn {
    flex: 1;
    padding: 1rem 1.5rem;
    background: #f9fafb;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    cursor: pointer;
    font-size: 1.125rem;
    font-weight: 600;
    color: #6b7280;
    transition: all 0.3s;
}

.tab-btn:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
    background: white;
}

.tab-btn.active {
    color: white;
    background: var(--primary-color);
    border-color: var(--primary-color);
    box-shadow: 0 4px 12px rgba(240, 89, 45, 0.3);
}

.modal-large {
    max-width: 600px;
}

/* Catering Menu Grid - Clean & Elegant */
.catering-menu-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin: 2rem 0;
}

.catering-menu-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid #e5e7eb;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.catering-menu-card:hover {
    border-color: var(--primary-color);
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
}

.card-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
    background: #f9fafb;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.card-content {
    padding: 1.25rem;
    flex: 1;
}

.card-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: #111827;
    margin-bottom: 0.5rem;
    line-height: 1.4;
}

.card-subtitle {
    font-size: 0.875rem;
    color: var(--primary-color);
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.card-description {
    font-size: 0.9375rem;
    color: #6b7280;
    line-height: 1.5;
    margin-bottom: 0.5rem;
}

.card-min-qty {
    font-size: 0.9rem;
    color: var(--primary-color);
    font-weight: 600;
    background: rgba(240, 89, 45, 0.1);
    padding: 0.4rem 0.8rem;
    border-radius: 6px;
    display: inline-block;
    margin-top: 0.5rem;
}

.card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 1.25rem;
    border-top: 1px solid #f3f4f6;
}

.card-price {
    font-size: 1.375rem;
    font-weight: 700;
    color: #111827;
}

.btn-add-cart {
    background: var(--primary-color);
    color: white;
    border: none;
    padding: 0.625rem 1.25rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.875rem;
    cursor: pointer;
    transition: all 0.2s;
}

.btn-add-cart:hover {
    background: #d04520;
}

/* Responsive for Catering Menu */
@media (max-width: 968px) {
    .catering-menu-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .card-image {
        height: 180px;
    }
}

/* Cart Totals Breakdown */
.cart-totals-breakdown {
    margin-bottom: 1rem;
}

.cart-totals-breakdown .cart-row {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0;
    border-bottom: 1px solid #e5e7eb;
}

.cart-totals-breakdown .cart-row.cart-total {
    border-top: 2px solid var(--primary-color);
    margin-top: 0.5rem;
    padding-top: 0.75rem;
    font-size: 1.1rem;
}

