/* Paul's Deli - Dark Maroon & White Theme */
:root {
    --primary-maroon: #5C0011;
    --dark-maroon: #400008;
    --light-maroon: #800020;
    --hover-maroon: #A0293A;
    --white: #FFFFFF;
    --cream: #FFF8F0;
    --light-gray: #F5F5F5;
    --border-gray: #DDD;
    --text-dark: #333;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    margin: 0;
    background-color: var(--cream);
    color: var(--text-dark);
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    background: linear-gradient(135deg, var(--primary-maroon) 0%, var(--dark-maroon) 100%);
    color: var(--white);
    padding: 20px 30px;
    box-shadow: 0 4px 6px rgba(92, 0, 17, 0.3);
}

header h1 {
    margin: 0;
    font-size: 2.2em;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

/* Header Logo Styling */
header .header-logo {
    height: 100px;
    width: auto;
    background-color: white;
    padding: 10px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}

nav {
    display: flex;
    gap: 20px;
}

nav a {
    color: var(--white);
    text-decoration: none;
    font-weight: bold;
    padding: 10px 18px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

nav a:hover {
    background-color: var(--hover-maroon);
    transform: translateY(-2px);
}
@media (max-width: 768px) {

    header {
        flex-direction: column;
        align-items: center;
    }

    nav {
        flex-direction: column;
        width: 100%;
        text-align: center;
        margin-top: 10px;
    }

        nav a {
            padding: 10px 0;
            border-top: 1px solid #ddd;
        }
}
main {
    padding: 40px;
    background-color: var(--white);
    min-height: calc(100vh - 200px);
}

/* Home Page - Center welcome text and description */
main > h1:first-of-type,
main > p:first-of-type {
    text-align: center;
}

main > h1:first-of-type {
    font-size: 3em;
    margin-bottom: 30px;
}

main > p:first-of-type {
    font-size: 1.3em;
    max-width: 800px;
    margin: 0 auto 40px auto;
    line-height: 1.6;
}

footer {
    background: linear-gradient(135deg, var(--dark-maroon) 0%, var(--primary-maroon) 100%);
    color: var(--white);
    text-align: center;
    padding: 25px;
    margin-top: 50px;
    box-shadow: 0 -4px 6px rgba(92, 0, 17, 0.2);
}

.menu-item {
    border-bottom: 2px solid var(--border-gray);
    padding: 15px 0;
    transition: background-color 0.2s;
}

.menu-item:hover {
    background-color: var(--light-gray);
    padding-left: 10px;
}

/* Menu Page Styling */
.menu-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.menu-container h1 {
    text-align: center;
    color: var(--primary-maroon);
    font-size: 3em;
    margin-bottom: 10px;
}

.menu-subtitle {
    text-align: center;
    font-size: 1.2em;
    color: #666;
    margin-bottom: 40px;
    font-style: italic;
}

.menu-category {
    margin-bottom: 50px;
    background: var(--white);
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 4px 15px rgba(92, 0, 17, 0.1);
}

.category-header {
    color: var(--primary-maroon);
    font-size: 2em;
    margin: 0 0 25px 0;
    padding-bottom: 15px;
    border-bottom: 3px solid var(--primary-maroon);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.menu-items-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 20px;
}

.menu-item-card {
    padding: 20px;
    border: 2px solid var(--border-gray);
    border-radius: 10px;
    background: var(--cream);
    transition: all 0.3s ease;
}

.menu-item-card:hover {
    border-color: var(--primary-maroon);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(92, 0, 17, 0.15);
}

.menu-item-header {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 10px;
}

.menu-item-card h3 {
    color: var(--primary-maroon);
    font-size: 1.3em;
    margin: 0;
    flex: 1;
}

.menu-item-price {
    color: var(--dark-maroon);
    font-size: 1.5em;
    font-weight: bold;
    margin-left: 15px;
}

.menu-item-description {
    color: #555;
    font-size: 0.95em;
    line-height: 1.5;
    margin: 10px 0;
}

.menu-item-customizations {
    margin-top: 12px;
    padding-top: 12px;
    border-top: 1px solid var(--border-gray);
}

.customization-note {
    font-size: 0.85em;
    color: #666;
    margin: 5px 0;
}

.customization-note strong {
    color: var(--primary-maroon);
}

/* Responsive Menu */
@media (max-width: 768px) {
    .menu-container h1 {
        font-size: 2em;
    }

    .category-header {
        font-size: 1.5em;
    }

    .menu-items-grid {
        grid-template-columns: 1fr;
    }

    .menu-item-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .menu-item-price {
        margin-left: 0;
        margin-top: 5px;
    }
}

/* Order Page Category Styling */
.order-page-container {
    max-width: 1400px;
    margin: 0 auto;
}

.order-page-container h1 {
    text-align: center;
    color: var(--primary-maroon);
    font-size: 3em;
    margin-bottom: 10px;
}

.order-subtitle {
    text-align: center;
    font-size: 1.2em;
    color: #666;
    margin-bottom: 40px;
    font-style: italic;
}

.order-category-section {
    margin-bottom: 50px;
}

.order-category-header {
    color: var(--primary-maroon);
    font-size: 2em;
    margin: 30px 0 20px 0;
    padding-bottom: 12px;
    border-bottom: 3px solid var(--primary-maroon);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Responsive Order Page */
@media (max-width: 768px) {
    .order-page-container h1 {
        font-size: 2em;
    }

    .order-category-header {
        font-size: 1.5em;
    }
}
.hero-image {
    width: 100%;
    max-width: 1200px;
    height: auto;
    object-fit: contain;
    margin: 0 auto 30px auto;
    display: block;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(92, 0, 17, 0.2);
}

h1, h2, h3 {
    color: var(--primary-maroon);
}

h1 {
    font-size: 3em;
    margin-bottom: 20px;
}

h2 {
    font-size: 2.2em;
    margin-bottom: 15px;
}

h3 {
    font-size: 1.6em;
    margin-bottom: 10px;
}

p {
    font-size: 1.1em;
    line-height: 1.7;
    margin-bottom: 15px;
}

.features {
    display: flex;
    gap: 40px;
}

.feature {
    text-align: center;
}

    .feature img {
        border-radius: 10px;
    }
.product-grid {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.product-card {
    border: 2px solid var(--border-gray);
    padding: 20px;
    width: 220px;
    text-align: center;
    border-radius: 12px;
    background-color: var(--white);
    transition: all 0.3s ease;
}

.product-card:hover {
    border-color: var(--primary-maroon);
    box-shadow: 0 6px 20px rgba(92, 0, 17, 0.2);
}

.product-card img {
    width: 200px;
    height: 150px;
    object-fit: cover;
    border-radius: 8px;
}

.product-card button {
    background: linear-gradient(135deg, var(--primary-maroon) 0%, var(--light-maroon) 100%);
    color: var(--white);
    border: none;
    padding: 12px 20px;
    cursor: pointer;
    border-radius: 8px;
    font-weight: bold;
    transition: all 0.3s ease;
    box-shadow: 0 3px 10px rgba(92, 0, 17, 0.3);
}

.product-card button:hover {
    background: linear-gradient(135deg, var(--hover-maroon) 0%, var(--primary-maroon) 100%);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(92, 0, 17, 0.4);
}
.checkout-container {
    display: flex;
    gap: 60px;
}

.checkout-cart {
    width: 40%;
    border: 1px solid #ddd;
    padding: 20px;
}

.checkout-form {
    width: 40%;
}

    .checkout-form input,
    .checkout-form textarea {
        width: 100%;
        margin-bottom: 10px;
        padding: 8px;
    }

    .checkout-form button {
        background: linear-gradient(135deg, var(--primary-maroon) 0%, var(--light-maroon) 100%);
        color: var(--white);
        border: none;
        padding: 15px 25px;
        cursor: pointer;
        border-radius: 8px;
        font-weight: bold;
        font-size: 16px;
        transition: all 0.3s ease;
        box-shadow: 0 3px 10px rgba(92, 0, 17, 0.3);
    }

    .checkout-form button:hover {
        background: linear-gradient(135deg, var(--hover-maroon) 0%, var(--primary-maroon) 100%);
        transform: translateY(-2px);
        box-shadow: 0 5px 15px rgba(92, 0, 17, 0.4);
    }
.contact-form {
    display: flex;
    flex-direction: column;
    max-width: 400px;
}

    .contact-form label {
        margin-top: 10px;
        font-weight: bold;
    }

    .contact-form input,
    .contact-form textarea {
        padding: 8px;
        margin-top: 5px;
        border: 1px solid #ccc;
        border-radius: 4px;
    }

    .contact-form textarea {
        height: 120px;
    }

    .contact-form button {
        margin-top: 15px;
        padding: 12px 25px;
        background: linear-gradient(135deg, var(--primary-maroon) 0%, var(--light-maroon) 100%);
        color: var(--white);
        border: none;
        cursor: pointer;
        border-radius: 8px;
        font-weight: bold;
        transition: all 0.3s ease;
        box-shadow: 0 3px 10px rgba(92, 0, 17, 0.3);
    }

    .contact-form button:hover {
        background: linear-gradient(135deg, var(--hover-maroon) 0%, var(--primary-maroon) 100%);
        transform: translateY(-2px);
    }

/* Alert Messages */
.alert-success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 20px;
    font-size: 1em;
}

.alert-error {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 20px;
    font-size: 1em;
}

.featured-products {
    margin-top: 50px;
    text-align: center;
}

.featured-products h2 {
    color: var(--primary-maroon);
    font-size: 2.5em;
    margin-bottom: 30px;
    text-shadow: 1px 1px 2px rgba(92, 0, 17, 0.1);
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px,1fr));
    gap: 25px;
    margin-top: 25px;
}

.product-card {
    display: block;
    border: 2px solid var(--border-gray);
    padding: 15px;
    border-radius: 12px;
    text-decoration: none;
    color: var(--text-dark);
    background-color: var(--white);
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 20px rgba(92, 0, 17, 0.25);
    border-color: var(--primary-maroon);
}

.product-card h3 {
    color: var(--primary-maroon);
    margin-top: 10px;
}

/* Product Card Images - High Quality */
.product-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 10px;
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
}

/* Business Hours */
.business-hours {
    margin-top: 60px;
    margin-bottom: 40px;
    text-align: center;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.business-hours h2 {
    color: var(--primary-maroon);
    font-size: 2.5em;
    margin-bottom: 30px;
    text-shadow: 1px 1px 2px rgba(92, 0, 17, 0.1);
}

.hours-grid {
    background: linear-gradient(135deg, rgba(92, 0, 17, 0.05) 0%, rgba(255, 255, 255, 0.8) 100%);
    border: 2px solid var(--border-gray);
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.hours-row {
    display: flex;
    justify-content: space-between;
    padding: 12px 20px;
    border-bottom: 1px solid rgba(92, 0, 17, 0.1);
}

.hours-row:last-child {
    border-bottom: none;
}

.hours-row .day {
    font-weight: bold;
    color: var(--primary-maroon);
    font-size: 1.1em;
}

.hours-row .time {
    color: var(--text-dark);
    font-size: 1.1em;
}

.hours-row .time.closed {
    color: #999;
    font-style: italic;
}

/* General Image Quality Improvements */
img {
    max-width: 100%;
    height: auto;
    image-rendering: -webkit-optimize-contrast;
    image-rendering: high-quality;
}
.cart-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 10px 0;
    border-bottom: 1px solid #ddd;
}
    .cart-item button {
        width: 25px;
        height: 25px;
        cursor: pointer;
    }
.cart-name {
    flex: 2;
}

.cart-item-notes {
    font-size: 12px;
    color: #666;
    font-style: italic;
    margin-top: 5px;
    padding: 5px;
    background-color: var(--light-gray);
    border-left: 4px solid var(--primary-maroon);
    border-radius: 3px;
}

.qty-controls {
    display: flex;
    gap: 8px;
    align-items: center;
}

.cart-price {
    flex: 1;
    text-align: right;
}
@media (max-width: 768px) {

    .product-grid {
        grid-template-columns: 1fr;
    }

    .product-card img {
        height: 200px;
    }
}
@media (max-width: 768px) {

    .cart-item {
        flex-direction: row; /* 👈 keep horizontal */
        justify-content: space-between;
    }

    .cart-name {
        width: 100%;
        margin-bottom: 5px;
    }
}
@media (max-width: 768px) {

    .checkout-container {
        flex-direction: column;
    }

    .checkout-cart,
    .checkout-form {
        width: 100%;
    }
}
    .qty-controls button {
        width: 36px;
        height: 36px;
        font-size: 18px;
    }
.cart-container {
    max-width: 700px;
    margin: 0 auto;
}

/* Clover Checkout Button */
.clover-checkout-btn {
    background: linear-gradient(135deg, var(--primary-maroon) 0%, var(--dark-maroon) 100%);
    color: var(--white);
    border: none;
    padding: 15px 30px;
    cursor: pointer;
    border-radius: 8px;
    font-size: 18px;
    font-weight: bold;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(92, 0, 17, 0.4);
    width: 100%;
    margin-top: 15px;
}

.clover-checkout-btn:hover {
    background: linear-gradient(135deg, var(--hover-maroon) 0%, var(--primary-maroon) 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(92, 0, 17, 0.5);
}

.clover-checkout-btn:active {
    transform: translateY(0);
}

/* Product card enhancements */
.product-description {
    color: #666;
    font-size: 14px;
    margin: 10px 0;
    min-height: 40px;
}

.product-price {
    font-size: 20px;
    font-weight: bold;
    color: var(--primary-maroon);
    margin: 10px 0;
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.5);
}

.modal-content {
    background-color: white;
    margin: 5% auto;
    padding: 30px;
    border-radius: 10px;
    width: 90%;
    max-width: 500px;
    max-height: 85vh;
    overflow-y: auto;
    position: relative;
}

.close {
    position: absolute;
    right: 20px;
    top: 15px;
    font-size: 28px;
    font-weight: bold;
    color: #aaa;
    cursor: pointer;
}

    .close:hover {
        color: #000;
    }

.customization-group {
    margin: 20px 0;
    padding: 15px;
    border: 2px solid var(--border-gray);
    border-radius: 8px;
    background-color: var(--light-gray);
}

    .customization-group h4 {
        margin-top: 0;
        color: var(--primary-maroon);
        font-size: 1.1em;
        margin-bottom: 12px;
    }

    .customization-group textarea {
        width: 100%;
        padding: 10px;
        border: 2px solid var(--border-gray);
        border-radius: 6px;
        font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        font-size: 14px;
        resize: vertical;
        box-sizing: border-box;
    }

        .customization-group textarea:focus {
            outline: none;
            border-color: var(--primary-maroon);
            box-shadow: 0 0 0 3px rgba(92, 0, 17, 0.1);
        }

.customization-option {
    display: flex;
    align-items: center;
    margin: 10px 0;
    padding: 8px;
    border-radius: 5px;
    transition: background-color 0.2s;
}

    .customization-option:hover {
        background-color: var(--white);
    }

    .customization-option input {
        margin-right: 10px;
        cursor: pointer;
    }

    .customization-option input[type="radio"],
    .customization-option input[type="checkbox"] {
        width: 18px;
        height: 18px;
        accent-color: var(--primary-maroon);
    }

    .customization-option label {
        flex: 1;
        cursor: pointer;
        user-select: none;
    }

    .customization-option .price-modifier {
        color: var(--primary-maroon);
        font-weight: bold;
        margin-left: 8px;
    }

#customizationOptions {
    max-height: 50vh;
    overflow-y: auto;
    margin-bottom: 15px;
}

/* Smooth scrollbar for modal */
.modal-content::-webkit-scrollbar,
#customizationOptions::-webkit-scrollbar {
    width: 8px;
}

.modal-content::-webkit-scrollbar-track,
#customizationOptions::-webkit-scrollbar-track {
    background: var(--light-gray);
    border-radius: 4px;
}

.modal-content::-webkit-scrollbar-thumb,
#customizationOptions::-webkit-scrollbar-thumb {
    background: var(--primary-maroon);
    border-radius: 4px;
}

.modal-content::-webkit-scrollbar-thumb:hover,
#customizationOptions::-webkit-scrollbar-thumb:hover {
    background: var(--dark-maroon);
}

.modal-footer {
    margin-top: 25px;
    padding-top: 20px;
    border-top: 2px solid var(--border-gray);
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: white;
    position: sticky;
    bottom: 0;
    z-index: 10;
}

    .modal-footer p {
        font-size: 22px;
        font-weight: bold;
        margin: 0;
        color: var(--primary-maroon);
    }

    .modal-footer button {
        background: linear-gradient(135deg, var(--primary-maroon) 0%, var(--dark-maroon) 100%);
        color: var(--white);
        border: none;
        padding: 12px 30px;
        cursor: pointer;
        border-radius: 8px;
        font-size: 16px;
        font-weight: bold;
        transition: all 0.3s ease;
        box-shadow: 0 3px 10px rgba(92, 0, 17, 0.3);
    }

        .modal-footer button:hover {
            background: linear-gradient(135deg, var(--hover-maroon) 0%, var(--primary-maroon) 100%);
            transform: translateY(-2px);
        }

/* Checkout Page Styles */
.checkout-page-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.checkout-page-container h1 {
    text-align: center;
    color: var(--primary-maroon);
    font-size: 2.5em;
    margin-bottom: 30px;
}

.checkout-container {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 40px;
    margin-top: 30px;
}

.checkout-cart {
    background: var(--white);
    border: 2px solid var(--border-gray);
    border-radius: 12px;
    padding: 25px;
    box-shadow: 0 4px 15px rgba(92, 0, 17, 0.1);
    height: fit-content;
    position: sticky;
    top: 20px;
}

.checkout-cart h3 {
    color: var(--primary-maroon);
    font-size: 1.5em;
    margin-top: 0;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--border-gray);
}

.checkout-item {
    display: grid;
    grid-template-columns: 2fr 0.5fr 1fr;
    gap: 15px;
    padding: 15px 0;
    border-bottom: 1px solid var(--border-gray);
    align-items: start;
}

.checkout-item:last-child {
    border-bottom: none;
}

.item-info strong {
    color: var(--text-dark);
    font-size: 15px;
}

.item-notes {
    font-size: 12px;
    color: #666;
    font-style: italic;
    margin-top: 5px;
    padding: 5px;
    background-color: var(--light-gray);
    border-left: 3px solid var(--primary-maroon);
    border-radius: 3px;
}

.item-quantity {
    text-align: center;
    color: #666;
}

.item-price {
    text-align: right;
    font-weight: bold;
    color: var(--primary-maroon);
}

.checkout-totals {
    margin-top: 20px;
    padding-top: 15px;
    border-top: 2px solid var(--border-gray);
}

.total-row {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    font-size: 15px;
}

.total-final {
    font-size: 20px;
    color: var(--primary-maroon);
    padding-top: 12px;
    border-top: 1px solid var(--border-gray);
    margin-top: 8px;
}

.security-badge {
    background: linear-gradient(135deg, rgba(92, 0, 17, 0.05) 0%, rgba(255, 255, 255, 0.8) 100%);
    border: 2px solid var(--border-gray);
    border-radius: 8px;
    padding: 15px;
    margin-top: 20px;
    text-align: center;
}

.security-badge p {
    margin: 0;
    color: var(--primary-maroon);
    font-size: 14px;
}

.checkout-form {
    background: var(--white);
    border: 2px solid var(--border-gray);
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 4px 15px rgba(92, 0, 17, 0.1);
}

.checkout-form h3 {
    color: var(--primary-maroon);
    font-size: 1.4em;
    margin-top: 0;
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-weight: bold;
    margin-bottom: 8px;
    color: var(--text-dark);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 2px solid var(--border-gray);
    border-radius: 6px;
    font-size: 15px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    transition: border-color 0.3s;
    box-sizing: border-box;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-maroon);
    box-shadow: 0 0 0 3px rgba(92, 0, 17, 0.1);
}

.clover-loading {
    text-align: center;
    padding: 40px;
    color: #666;
}

.spinner {
    border: 4px solid var(--light-gray);
    border-top: 4px solid var(--primary-maroon);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    animation: spin 1s linear infinite;
    margin: 20px auto;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.clover-field-group {
    margin-bottom: 20px;
}

.clover-field-group label {
    display: block;
    font-weight: bold;
    margin-bottom: 8px;
    color: var(--text-dark);
}

.clover-field {
    border: 2px solid var(--border-gray);
    border-radius: 6px;
    padding: 12px;
    background: white;
    min-height: 45px;
}

.clover-fields-row {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 15px;
}

.checkout-submit-btn {
    width: 100%;
    background: linear-gradient(135deg, var(--primary-maroon) 0%, var(--dark-maroon) 100%);
    color: var(--white);
    border: none;
    padding: 18px;
    border-radius: 8px;
    font-size: 18px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(92, 0, 17, 0.4);
    margin-top: 25px;
}

.checkout-submit-btn:hover:not(:disabled) {
    background: linear-gradient(135deg, var(--hover-maroon) 0%, var(--primary-maroon) 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(92, 0, 17, 0.5);
}

.checkout-submit-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.btn-spinner {
    display: inline-block;
    width: 16px;
    height: 16px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-top-color: white;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

/* Responsive Checkout */
@media (max-width: 968px) {
    .checkout-container {
        grid-template-columns: 1fr;
    }

    .checkout-cart {
        position: static;
    }

    .clover-fields-row {
        grid-template-columns: 1fr;
    }
}
.cart-container {
    max-width: 700px;
    margin: 0 auto;
}