/* Import Zeek's Theme Variables */
:root {
    /*Primary Colors*/
    --color-primary: #EAA1C1;
    --color-secondary: #A3C3CD;
    --color-tertiary: #BFD0AC;
    
    /*Background Color*/
    --color-bg: #FFFBF7;
    
    /*Secondary Color*/
    --color-light: #ffffff;
    --color-dark: #CC4782;
}
body{color: var(--color-dark) !important;}
/* Menu-specific styles */
.menu-header {
    background: linear-gradient(135deg, var(--color-primary), var(--color-dark));
    color: white;
    text-align: center;
    padding: 120px 0 80px;
    margin-top: 70px;
    font-family: "Playfair Display", serif;
}

.menu-header h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    font-weight: 700;
    font-family: "Abril Fatface", serif;
}

.menu-header p {
    font-size: 1.2rem;
    opacity: 0.9;
    line-height: 1.6;
}

/* Menu Content Layout */

.menu-layout {
    display: grid;
    grid-template-columns: 200px 1fr 280px;
    gap: 20px;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    align-items: start;
}

/* Category Sidebar - Blue Theme */
.category-sidebar {
    border-radius: 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    height: fit-content;
    position: sticky;
    top: 100px;
    overflow: hidden;
}

.category-sidebar-inner {
    padding: 0;
}

.sidebar-heading {
    display: none;
}

.category-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.category-list li {
    border-bottom: 1px solid rgba(255,255,255,0.4);
}

.category-list li:last-child {
    border-bottom: none;
}

.category-link {
    display: block;
    padding: 20px 25px;
    text-decoration: none;
    color: white;
    font-weight: 600;
    transition: all 0.3s ease;
    font-family: "Playfair Display", serif;
    font-size: 20px;
}

.category-link:hover,
.category-link.active {
    background: #5A9BC4;
    color: white;
}

.category-link .chevron {
    display: none;
}

/* Menu Center */
.menu-category {
    margin-bottom: 60px;
}

.menu-category:last-child {
    margin-bottom: 0;
}

.category-title {
    font-size: 2.5rem;
    color: #8FBC8F;
    margin-bottom: 10px;
    font-family: "Abril Fatface", serif;
    text-align: center;
    font-weight: normal;
}

.category-description {
    text-align: center;
    color: #666;
    font-style: italic;
    margin-bottom: 20px;
    font-size: 1rem;
    font-family: "Poppins", sans-serif;
}

.view-cakes-btn {
    display: block;
    margin: 20px auto 30px;
    background: #7FB3D3;
    color: white;
    border: none;
    padding: 10px 25px;
    border-radius: 20px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
    font-family: "Poppins", sans-serif;
    font-size: 14px;
    text-decoration: none;
}

.view-cakes-btn:hover {
    background: #5A9BC4;
    transform: translateY(-2px);
    color: white;
    text-decoration: none;
}

.menu-items {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-top: 20px;
    padding: 0 10px;
}

.menu-item {
    background: #FFE4E1;
    border-radius: 12px;
    padding: 0;
    transition: all 0.3s ease;
    border: 1px solid #f0f0f0;
    overflow: hidden;
    text-align: center;
}

.menu-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(234, 161, 193, 0.3);
    border-color: var(--color-primary);
}

.item-image {
    width: 100%;
    height: 160px;
    border-radius: 0;
    overflow: hidden;
    margin-bottom: 10px;
    position: relative;
}

.item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.item-image.placeholder {
    background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 3rem;
}

.menu-item:hover .item-image img {
    transform: scale(1.05);
}

.item-details {
    padding: 10px 15px 10px;
    text-align: left;
}

.item-name {
    font-size: 1.2rem;
    font-weight: 600;
    color: #D63384;
    margin-bottom: 15px;
    font-family: "Poppins", sans-serif;
    text-align: left;
    line-height: 1.2;
}

.item-description {
    display: none;
}

.item-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.item-price {
    font-size: 1.2rem;
    font-weight: 700;
    color: #D63384;
    font-family: "Poppins", sans-serif;
}

.quantity-controls {
    display: flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    border-radius: 15px;
    padding: 0;
    border: none;
}

.qty-btn {
    background: #C8D5B9;
    color: white;
    border: none;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    cursor: pointer;
    font-weight: bold;
    transition: all 0.3s ease;
    font-size: 16px;
}

.qty-btn:hover {
    background: #A8C49A;
    transform: scale(1.05);
}

.quantity {
    font-weight: 600;
    color: #333;
    min-width: 30px;
    text-align: center;
    font-size: 16px;
}


.add-to-cart:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(234, 161, 193, 0.4);
}

/* Mini Basket - Green Theme */
.mini-basket {
    background: #C8D5B9;
    border-radius: 15px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    height: fit-content;
    position: sticky;
    top: 100px;
}

.mini-basket-header {
    background: #C8D5B9;
    color: white;
    padding: 15px 20px;
    border-radius: 15px 15px 0 0;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    position: relative;
}

.mini-basket-header::before {
    content: "\f291";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    background: var(--color-dark);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
}

.mini-basket-header h3 {
    margin: 0;
    font-size: 16px;
    font-family: "Poppins", sans-serif;
    font-weight: 600;
    margin-top: 10px;
}

.mini-basket-body {
    padding: 15px 20px;
    min-height: 120px;
    max-height: 200px;
    overflow-y: auto;
    background: #C8D5B9;
}

.empty-cart {
    text-align: center;
    font-style: italic;
    padding: 20px 15px;
    font-size: 20px;
}

.mini-basket-footer {
    padding: 15px 20px;
    border-top: 1px solid rgba(255,255,255,0.3);
    background: #C8D5B9;
    border-radius: 0 0 15px 15px;
}

.mini-total {
    text-align: center;
    font-size: 1rem;
    font-weight: 600;
    color: white;
    margin-bottom: 15px;
}

.mini-checkout {
    width: 100%;
    background: #D63384;
    color: white;
    border: none;
    padding: 12px;
    border-radius: 25px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
    font-size: 16px;
    text-transform: capitalize;
}

.mini-checkout:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(234, 161, 193, 0.4);
}

.mini-checkout:disabled {
    background: #ccc;
    cursor: not-allowed;
    transform: none;
}

/* Responsive Design */
@media (max-width: 768px) {
    .menu-layout {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .category-sidebar,
    .mini-basket {
        position: static;
        order: 1;
    }
    
    .menu-center {
        order: 2;
    }
    
    .mini-basket {
        order: 3;
    }
    
    .category-sidebar {
        border-radius: 10px;
    }
    
    .category-sidebar-inner {
        border-radius: 10px;
    }
    
    .menu-items {
        grid-template-columns: 1fr;
    }
    
    .item-footer {
        flex-direction: column;
        gap: 10px;
    }
    
    .quantity-controls {
        order: 1;
    }
    
    .add-to-cart {
        order: 2;
        width: 100%;
    }
}

@media (max-width: 480px) {
    .menu-header {
        padding: 100px 0 60px;
    }
    
    .menu-header h1 {
        font-size: 2.5rem;
    }
    
    .category-title {
        font-size: 1.8rem;
    }
    
    .menu-items {
        grid-template-columns: 1fr;
    }
    
    .item-footer {
        flex-direction: column;
        gap: 15px;
    }
}

.menu-content {
    padding: 80px 0;
    background: #F3FAF6;
}

/* 3-column layout: left categories, center items, right mini basket */
.menu-layout {
    display: grid;
    grid-template-columns: 260px 1fr 320px;
    gap: 24px;
    align-items: start;
}

/* Category sidebar */
.category-sidebar {
    position: sticky;
    top: 90px;
    max-height: calc(100vh - 110px);
    overflow: hidden;
}

.sidebar-heading {
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .6px;
    padding: 10px 16px;
    border-bottom: 1px solid rgba(255,255,255,.15);
    font-family: "Playfair Display", serif;
}

.category-list {
    list-style: none;
    margin: 0;
    padding: 6px 0;
    max-height: calc(100vh - 170px);
    overflow: auto;
}

.category-link {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #fff;
    text-decoration: none;
    padding: 6px 16px;
    transition: background .2s ease;
}

.category-link:hover { background: rgba(255,255,255,.08); }

.category-link.active {
    background: var(--color-secondary);
}

.category-link .chevron { opacity: .8; transform: translateY(-1px); }

/* Center column wrapper for readability */
.menu-center { min-width: 0; }

.menu-category {
    margin-bottom: 4rem;
}

.category-title {
    font-size: 2.2rem;
    color: var(--color-dark);
    margin-bottom: 1rem;
    text-align: center;
    position: relative;
    font-family: "Abril Fatface", serif;
}

.category-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(135deg, var(--color-primary), var(--color-dark));
    border-radius: 2px;
}

.category-description {
    text-align: center;
    color: #666;
    margin-bottom: 2rem;
    font-size: 1.1rem;
    font-family: "Playfair Display", serif;
}

.menu-items {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.menu-item {
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;}

.menu-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
    border-color: var(--color-primary);
}

.item-image {
    height: 305px;
    background: #FBE1EC;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.menu-item:hover .item-image img {
    transform: scale(1.1);
}

.item-image.placeholder {
    color: white;
    font-size: 3rem;
}

/* Right mini basket */
.mini-basket {
    position: sticky;
    top: 90px;
    background: #fff;
    border: 1px solid #e9ecef;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

.mini-basket-header {
    background: var(--color-dark);
    color: #fff;
    padding: 14px 16px;
    font-weight: 700;
    text-align: center;
    font-family: "Playfair Display", serif;
}

.mini-basket-body {
    max-height: 50vh;
    overflow: auto;
    padding: 12px 14px;
}

.mini-row { 
    display: flex; 
    align-items: center; 
    justify-content: space-between; 
    gap: 10px; 
    padding: 8px 0; 
    border-bottom: 1px solid rgba(255,255,255,0.3);
}
.mini-row:last-child { border-bottom: none; }
.mini-name { 
    font-weight: 600; 
    color: white; 
    font-size: 18px;
    font-family: "Playfair Display", serif;
    flex: 1;
    text-align: left;
}
.mini-meta { color: rgba(255,255,255,0.8); font-size: 12px; }
.mini-controls { 
    display: flex; 
    align-items: center; 
    gap: 5px; 
}
.mini-controls .qty-btn { 
    width: 24px; 
    height: 24px; 
    font-size: 12px;
    background: #D63384;
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    font-weight: bold;
}
.mini-controls .qty-btn:hover {
    background: #B02A5B;
}
.mini-controls .quantity {
    color: white;
    font-weight: 600;
    min-width: 20px;
    text-align: center;
    font-size: 14px;
}
.mini-controls .remove-item { 
    background: #D63384; 
    color: white; 
    border: none; 
    border-radius: 4px; 
    padding: 4px 6px; 
    cursor: pointer;
    font-size: 12px;
}

.mini-basket-footer { border-top:1px solid #e9ecef; padding:12px 14px; }
.mini-total { text-align:center; font-weight:700; margin-bottom:10px; }
.mini-checkout { width:100%; background: var(--color-dark); color:#fff; border:none; padding:10px 12px; border-radius:8px; font-weight:600; cursor:pointer;     font-family: "Playfair Display", serif; }
.mini-checkout:disabled { background:#ccc; cursor:not-allowed; }
.item-name {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    font-family: "Playfair Display", serif;
}

.item-description {
    color: #666;
    margin-bottom: 1rem;
    line-height: 1.5;
}

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

.item-price {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--color-dark);
    font-family: "Playfair Display", serif;
}

.quantity-controls {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: white;
    border-radius: 25px;
    padding: 0.2rem;
    border: 2px solid #e9ecef;
}

.qty-btn {
    width: 30px;
    height: 30px;
    border: none;
    background: var(--color-primary);
    color: white;
    border-radius: 50%;
    cursor: pointer;
    font-weight: bold;
    transition: background 0.3s ease;
}

.qty-btn:hover {
    background: var(--color-dark);
}

.qty-btn:disabled {
    background: #ccc;
    cursor: not-allowed;
}

.quantity {
    min-width: 30px;
    text-align: center;
    font-weight: 600;
}

.add-to-cart {
    background: var(--color-dark);
    color: white;
    border: none;
    padding: 10px 30px;
    border-radius: 25px;
    cursor: pointer;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    font-family: "Playfair Display", serif;
}

.add-to-cart:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(204, 71, 130, 0.4);
}

.add-to-cart:disabled {
    background: #ccc;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

/* Shopping Cart */
.cart-toggle {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--color-primary), var(--color-dark));
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.5rem;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    transition: all 0.3s ease;
    z-index: 1000;
}

.cart-toggle:hover {
    transform: scale(1.1);
}

.cart-count {
    position: absolute;
    top: -5px;
    right: -5px;
    background: #dc3545;
    color: white;
    border-radius: 50%;
    width: 25px;
    height: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: bold;
}

.cart-sidebar {
    position: fixed;
    top: 0;
    right: -400px;
    width: 400px;
    height: 100vh;
    background: white;
    box-shadow: -5px 0 15px rgba(0,0,0,0.2);
    transition: right 0.3s ease;
    z-index: 1001;
    display: flex;
    flex-direction: column;
    z-index: 9999;
}

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

.cart-header {
    background: linear-gradient(135deg, var(--color-primary), var(--color-dark));
    color: white;
    padding: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: "Playfair Display", serif;
}

.cart-close {
    background: none;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
}

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

.empty-cart {
    text-align: center;
    margin-top: 2rem;
}

.cart-item {
    display: flex;
    align-items: center;
    padding: 1rem;
    border-bottom: 1px solid #e9ecef;
    gap: 1rem;
}

.cart-item-details {
    flex: 1;
}

.cart-item-name {
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.cart-item-price {
    color: #666;
    font-size: 0.9rem;
}

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

.cart-footer {
    padding: 1.5rem;
    border-top: 2px solid #e9ecef;
    background: #f8f9fa;
}

.cart-total {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    text-align: center;
}

.checkout-btn {
    width: 100%;
    background: linear-gradient(135deg, var(--color-primary), var(--color-dark));
    color: white;
    border: none;
    padding: 15px;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: "Gadion Demo";
}

.checkout-btn:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(204, 71, 130, 0.4);
}

.checkout-btn:disabled {
    background: #ccc;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

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

.modal-content {
    background-color: white;
    margin: 2% auto;
    padding: 0;
    border-radius: 10px;
    width: 90%;
    max-width: 600px;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.modal-header {
    padding: 20px;
    background: linear-gradient(135deg, var(--color-primary), var(--color-dark));
    color: white;
    border-radius: 10px 10px 0 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: "Playfair Display", serif;
}

.modal-close {
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
}

.modal-body {
    padding: 20px;
}

.checkout-summary {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 8px;
    margin-bottom: 2rem;
}

.checkout-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 0;
    border-bottom: 1px solid #e9ecef;
}

.checkout-item:last-child {
    border-bottom: none;
}

.checkout-total {
    font-size: 1.2rem;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 2px solid #dee2e6;
    text-align: center;
}

.checkout-form h3 {
    color: var(--color-dark);
    margin-bottom: 1.5rem;
    font-family: "Playfair Display", serif;
}

/* Checkout form inputs */
.checkout-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.checkout-form .form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 14px;
}

.checkout-form label {
    font-weight: 600;
    font-size: 0.95rem;
    color: #333;
}

.checkout-form input[type="text"],
.checkout-form input[type="email"],
.checkout-form input[type="tel"],
.checkout-form input[type="date"],
.checkout-form input[type="password"],
.checkout-form select,
.checkout-form textarea {
    width: 100%;
    padding: 12px 14px;
    border: 1.5px solid #e9ecef;
    border-radius: 10px;
    background: #fff;
    outline: none;
    font-size: 0.95rem;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.checkout-form input:focus,
.checkout-form select:focus,
.checkout-form textarea:focus {
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(234, 161, 193, 0.2);
}

.checkout-form textarea {
    min-height: 90px;
    resize: vertical;
}

.checkout-form .muted {
    color: #6c757d;
    font-size: 0.9rem;
}

/* Create account + login blocks */
.checkout-form details {
    background: #f8f9fb;
    border: 1px solid #eef1f5;
    border-radius: 10px;
    padding: 12px 14px;
}

.checkout-form details[open] {
    background: #f5f7ff;
    border-color: #e0e6ff;
}

.checkout-form summary {
    font-weight: 600;
    color: #444;
    cursor: pointer;
}

.checkout-form input[type="checkbox"] {
    accent-color: var(--color-primary);
    width: 18px;
    height: 18px;
    vertical-align: middle;
    margin-right: 6px;
}

/* Variation modal form tweaks */
.variation-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.variation-form .form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.variation-form select,
.variation-form input[type="number"],
.variation-form textarea {
    padding: 10px 12px;
    border: 1.5px solid #e9ecef;
    border-radius: 10px;
}

.variation-form select:focus,
.variation-form input[type="number"]:focus,
.variation-form textarea:focus {
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(234, 161, 193, 0.2);
    outline: none;
}

.variation-form .actions .btn {
    padding: 10px 14px;
    border-radius: 10px;
}

.btn.btn-outline {
    background: #fff;
    border: 1px solid #e9ecef;
}

@media screen and (max-width: 640px) {
    .checkout-form .form-row,
    .variation-form .form-row {
        grid-template-columns: 1fr;
    }
}

.place-order-btn {
    width: 100%;
    background: linear-gradient(135deg, var(--color-primary), var(--color-dark));
    color: white;
    border: none;
    padding: 15px;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 1rem;
    font-family: "Gadion Demo";
}

.place-order-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(204, 71, 130, 0.4);
}

.no-items {
    text-align: center;
    color: #666;
    font-style: italic;
    padding: 2rem;
}

/* Active navigation link */
.nav-link.active {
    color: #fff3cd !important;
    font-weight: 600;
}

/* Responsive Design */
@media screen and (max-width: 768px) {
    .menu-layout { grid-template-columns: 1fr; }
    .category-sidebar { position: static; max-height: none; }
    .mini-basket { position: static; }
    .menu-header h1 {
        font-size: 2.5rem;
    }
    
    .menu-items {
        grid-template-columns: 1fr;
    }
    
    .item-footer {
        flex-direction: column;
        align-items: stretch;
        gap: 0.5rem;
    }
    
    .cart-sidebar {
        width: 100%;
        right: -100%;
    }
    
    .modal-content {
        width: 95%;
        margin: 5% auto;
    }
    
    .item-footer {
        flex-direction: row;
        flex-wrap: wrap;
    }
}

@media screen and (max-width: 480px) {
    .menu-header {
        padding: 100px 0 60px;
    }
    
    .menu-header h1 {
        font-size: 2rem;
    }
    
    .category-title {
        font-size: 1.8rem;
    }
    
    .menu-category {
        padding: 1.5rem;
    }
    
    .cart-toggle {
        width: 50px;
        height: 50px;
        bottom: 20px;
        right: 20px;
    }
}
