/* ----------------------------------
        1. RESET & NEW GLOBAL STYLES (Swiggy/Zomato Inspired)
        ----------------------------------
        */
:root {
    --primary: #f28c28;
    /* Vibrant Orange */
    --primary-dark: #e87a17;
    --dark: #333;
    --light: #fdfdfd;
    --grey: #888;
    --light-grey: #f4f4f4;
    --border-color: #e0e0e0;
    --shadow-light: 0 4px 12px rgba(0, 0, 0, 0.05);
    --shadow-medium: 0 6px 16px rgba(0, 0, 0, 0.08);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    background: var(--light);
    color: var(--dark);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    background-color: #e6e6e6;
}

a {
    text-decoration: none;
    color: var(--primary);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Icon setup (inline SVG) */
.icon {
    width: 24px;
    height: 24px;
    stroke: currentColor;
    stroke-width: 2;
    fill: none;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* ----------------------------------
        2. UTILITY CLASSES (New Theme)
        ----------------------------------
        */
.btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.2s ease;
    text-align: center;
}

.btn-primary {
    background: var(--primary);
    color: var(--light);
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
}

.btn-secondary {
    background: var(--light);
    border: 1px solid var(--border-color);
    color: var(--dark);
}

.btn-secondary:hover {
    background: var(--light-grey);
    border-color: #aaa;
}

.btn-small {
    padding: 0.25rem 0.75rem;
    font-size: 0.8rem;
    border-radius: 6px;
}

/* New card style */
.card {
    background: #fff;
    border: 1px solid var(--border-color);
    border-radius: 12px;
    box-shadow: var(--shadow-light);
    overflow: hidden;
    transition: all 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.section-title {
    font-size: 2rem;
    font-weight: 700;
    text-align: left;
    margin-bottom: 2rem;
    color: var(--dark);
}

.page-title {
    font-size: 2.5rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 2.5rem;
    padding-top: 2rem;
}

/* Form elements (New Theme) */
.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: #555;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    background: #fff;
    color: var(--dark);
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(242, 140, 40, 0.2);
}

.error-message {
    color: #e74c3c;
    font-size: 0.875rem;
    margin-top: 0.25rem;
    display: none;
    /* Hidden by default */
}

/* Search Bar (New Theme) */
.search-bar {
    display: flex;
    align-items: center;
    background: #fff;
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 0.75rem 1rem;
    max-width: 500px;
    width: 100%;
    margin: 0 auto;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.search-bar:focus-within {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(242, 140, 40, 0.2);
}

.search-bar input {
    flex: 1;
    border: none;
    background: transparent;
    outline: none;
    color: var(--dark);
    font-size: 1rem;
    margin-left: 0.5rem;
}

.search-bar .icon {
    color: var(--grey);
}

.search-bar input::placeholder {
    color: var(--grey);
}

/* ----------------------------------
        3. HEADER & NAVIGATION (New Theme)
        ----------------------------------
        */
.header {
    position: sticky;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: #fff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    padding: 1rem 0;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--dark);
}

.logo span {
    color: var(--primary);
}

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-link {
    font-weight: 500;
    cursor: pointer;
    position: relative;
    padding: 10px 15px;
    color: var(--dark);
}

.nav-link.login-btn {
    font-weight: 600;
    color: var(--primary);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    background: var(--primary);
    border-radius: 2px;
    transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-icons {
    display: flex;
    align-items: center;
    gap: 1rem;
}

/* New AI Button */
.ai-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    background: linear-gradient(45deg, var(--primary), var(--primary-dark));
    color: white;
    font-weight: 500;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.ai-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
}

.ai-btn .icon {
    width: 18px;
    height: 18px;
    stroke-width: 2.5;
}

.cart-icon {
    position: relative;
    cursor: pointer;
    padding: 0.5rem;
}

.cart-count {
    position: absolute;
    top: -5px;
    right: -5px;
    background: var(--primary);
    color: var(--light);
    border-radius: 50%;
    width: 22px;
    height: 22px;
    font-size: 0.8rem;
    font-weight: 600;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 2px solid #fff;
}

.hamburger {
    display: none;
    cursor: pointer;
    padding: 0.5rem;
}

/* ----------------------------------
        4. MOBILE NAVIGATION (New Theme)
        ----------------------------------
        */
.mobile-nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1001;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease;
}

.mobile-nav-overlay.open {
    opacity: 1;
    visibility: visible;
}

.mobile-nav {
    position: fixed;
    top: 0;
    right: -300px;
    /* Start off-screen */
    width: 300px;
    height: 100%;
    background: #fff;
    z-index: 1002;
    padding: 2rem;
    transition: right 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
}

.mobile-nav.open {
    right: 0;
}

.mobile-nav-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    cursor: pointer;
}

.mobile-nav-links {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 4rem;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
}

.mobile-nav-link {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--dark);
}

/* ----------------------------------
        5. PAGE ROUTING SYSTEM
        ----------------------------------
        */
.page {
    display: none;
    /* All pages hidden by default */
    padding: 2rem 0;
    animation: fadeIn 0.5s ease-in-out;
}

.page.active {
    display: block;
    /* Active page is visible */
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ----------------------------------
        6. PAGE: HOME (New Theme)
        ----------------------------------
        */
#page-home .hero {
    padding: 4rem 0;
    text-align: center;
    background: var(--light-grey);
    border-radius: 12px;
    margin-bottom: 3rem;
    background-image: url(img/bakcground.png);    
}

#page-home .hero-title {
    font-size: 2.8rem;
    font-weight: 800;
    margin-bottom: 1rem;
    line-height: 1.2;
    color: white;
}

#page-home .hero-subtitle {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    color: white;
}

#page-home .hero-search {
    margin-bottom: 2.5rem;
}

/* Categories Section */
#page-home .categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 1.5rem;
    margin-bottom: 4rem;
}

#page-home .category-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    text-align: center;
    /* background-color: rgb(250,177,42);     */
}

#page-home .category-card img {
    width: 70px;
    height: 70px;
    object-fit: cover;
    border-radius: 10px;
}

#page-home .category-card h3 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--dark);
}

/* Featured Section */
#page-home .featured-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

/* ----------------------------------
        7. PAGE: MENU (Product Card - New Theme)
        ----------------------------------
        */
#page-menu .menu-header {
    text-align: center;
    margin-bottom: 3rem;
}

#page-menu .menu-search {
    max-width: 600px;
    margin: 0 auto;
}

#page-menu .menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.product-card {
    display: flex;
    flex-direction: column;
    text-align: left;
}

.product-card-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-bottom: 1px solid var(--border-color);
}

.product-card-content {
    padding: 1.25rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.product-card h3 {
    font-size: 1.15rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.product-card .category {
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--grey);
    margin-bottom: 0.75rem;
    text-transform: uppercase;
}

.product-card .description {
    font-size: 0.9rem;
    color: #555;
    margin-bottom: 1rem;
    flex-grow: 1;
}

.product-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
}

.product-card .price {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--dark);
}

.product-card .add-to-cart-btn {
    background: var(--light-grey);
    color: var(--primary);
    font-weight: 600;
    border: 1px solid var(--border-color);
}

.product-card .add-to-cart-btn:hover {
    background: var(--primary);
    color: #fff;
    border-color: var(--primary);
}

/* ----------------------------------
        8. PAGE: CART (New Theme)
        ----------------------------------
        */
#page-cart .cart-container {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 2rem;
    align-items: flex-start;
}

#page-cart .cart-items {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

#page-cart .cart-item {
    display: flex;
    gap: 1.5rem;
    padding: 1.5rem;
    align-items: center;
}

#page-cart .cart-item-image {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 8px;
}

#page-cart .cart-item-info {
    flex: 1;
}

#page-cart .cart-item-info h3 {
    font-size: 1.1rem;
    margin-bottom: 0.25rem;
}

#page-cart .cart-item-info .price {
    font-size: 1rem;
    color: var(--grey);
    font-weight: 500;
}

#page-cart .cart-item-quantity {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

#page-cart .quantity-btn {
    background: #fff;
    border: 1px solid var(--border-color);
    color: var(--primary);
    width: 32px;
    height: 32px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.2rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
}

#page-cart .quantity-btn:hover {
    background: var(--primary);
    color: #fff;
    border-color: var(--primary);
}

#page-cart .quantity-amount {
    font-weight: 600;
    font-size: 1.1rem;
    min-width: 20px;
    text-align: center;
}

#page-cart .cart-item-remove .icon {
    color: #e74c3c;
    cursor: pointer;
    transition: all 0.2s;
}

#page-cart .cart-item-remove .icon:hover {
    transform: scale(1.1);
    color: #c0392b;
}

#page-cart .cart-summary {
    padding: 1.5rem;
    position: sticky;
    top: 100px;
}

#page-cart .cart-summary h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--border-color);
}

#page-cart .summary-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1rem;
    font-size: 1rem;
    color: #555;
}

#page-cart .summary-row.total {
    font-size: 1.2rem;
    font-weight: 700;
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border-color);
    color: var(--dark);
}

#page-cart .summary-row.total .total-price {
    color: var(--primary);
}

#page-cart .checkout-btn {
    width: 100%;
    margin-top: 1.5rem;
}

#page-cart .empty-cart-message {
    padding: 3rem;
    text-align: center;
    grid-column: 1 / -1;
}

#page-cart .empty-cart-message h2 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

#page-cart .empty-cart-message p {
    color: var(--grey);
    margin-bottom: 1.5rem;
}

/* ----------------------------------
        9. PAGE: CHECKOUT (New Theme)
        ----------------------------------
        */
#page-checkout .checkout-container {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 2rem;
    align-items: flex-start;
}

#page-checkout .checkout-form {
    padding: 2rem;
}

#page-checkout .order-summary {
    padding: 2rem;
    position: sticky;
    top: 100px;
}

#page-checkout .order-summary h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--border-color);
}

#page-checkout .summary-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

#page-checkout .summary-item-info {
    flex: 1;
    padding-right: 1rem;
}

#page-checkout .summary-item-info span {
    font-size: 0.8rem;
    color: var(--grey);
}

#page-checkout .summary-total {
    display: flex;
    justify-content: space-between;
    font-size: 1.25rem;
    font-weight: 700;
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border-color);
}

/* ----------------------------------
        10. PAGE: ORDER SUCCESS (New Theme)
        ----------------------------------
        */
#page-order-success .success-container {
    max-width: 800px;
    margin: 2rem auto;
    padding: 3rem;
    text-align: center;
}

#page-order-success .success-icon {
    color: #27ae60;
    width: 80px;
    height: 80px;
    stroke-width: 1.5;
    margin: 0 auto 1.5rem;
    animation: bounceIn 0.8s;
}

@keyframes bounceIn {
    0% {
        transform: scale(0.5);
        opacity: 0;
    }

    60% {
        transform: scale(1.1);
        opacity: 1;
    }

    100% {
        transform: scale(1);
    }
}

#page-order-success h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

#page-order-success p {
    font-size: 1.1rem;
    color: var(--grey);
    margin-bottom: 2rem;
}

#page-order-success .order-details {
    text-align: left;
    padding: 2rem;
    border: 1px dashed var(--border-color);
    border-radius: 8px;
    background: var(--light-grey);
    margin-bottom: 2rem;
}

#page-order-success .order-details p {
    font-size: 1rem;
    color: var(--dark);
    margin-bottom: 0.75rem;
    display: flex;
    justify-content: space-between;
}

#page-order-success .order-details p span:first-child {
    font-weight: 600;
    color: var(--dark);
}

/* ----------------------------------
        11. OTHER PAGES (New Theme)
        ----------------------------------
        */
.static-page-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem;
}

.static-page-content h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.static-page-content p {
    margin-bottom: 1rem;
    color: #555;
    line-height: 1.7;
}

/* Login/Signup Page */
.login-container {
    max-width: 450px;
    margin: 2rem auto;
    padding: 2.5rem;
}

.login-container h2 {
    text-align: center;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 2rem;
}

.login-container .btn {
    width: 100%;
    margin-top: 1rem;
}

.login-container .toggle-form {
    text-align: center;
    margin-top: 1.5rem;
    font-size: 0.9rem;
}

.login-container .toggle-form span {
    color: var(--primary);
    cursor: pointer;
    font-weight: 600;
}

/* ----------------------------------
        12. NEW: GEMINI AI MODAL
        ----------------------------------
        */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.modal-overlay.open {
    opacity: 1;
    visibility: visible;
}

.modal-content {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    width: 90%;
    max-width: 500px;
    max-height: 80vh;
    display: flex;
    flex-direction: column;
    transform: scale(0.95);
    opacity: 0;
    transition: all 0.3s cubic-bezier(0.23, 1, 0.32, 1);
}

.modal-overlay.open .modal-content {
    transform: scale(1);
    opacity: 1;
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 1.5rem;
    border-bottom: 1px solid var(--border-color);
}

.modal-header h3 {
    font-size: 1.2rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.modal-close-btn {
    cursor: pointer;
    background: none;
    border: none;
    color: var(--grey);
}

.modal-close-btn:hover {
    color: var(--dark);
}

.ai-chat-box {
    flex: 1;
    padding: 1.5rem;
    overflow-y: auto;
    min-height: 200px;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.chat-message {
    padding: 0.75rem 1rem;
    border-radius: 12px;
    max-width: 80%;
    line-height: 1.5;
}

.chat-message.user {
    background: var(--primary);
    color: #fff;
    align-self: flex-end;
    border-bottom-right-radius: 4px;
}

.chat-message.ai {
    background: var(--light-grey);
    color: var(--dark);
    align-self: flex-start;
    border-bottom-left-radius: 4px;
}

.chat-message.ai.loading {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.spinner {
    width: 16px;
    height: 16px;
    border: 2px solid var(--grey);
    border-top-color: var(--primary);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

.modal-input {
    display: flex;
    padding: 1rem;
    border-top: 1px solid var(--border-color);
}

#ai-input {
    flex: 1;
    border: 1px solid var(--border-color);
    border-right: none;
    border-radius: 8px 0 0 8px;
    padding: 0.75rem;
    outline: none;
}

#ai-send-btn {
    border-radius: 0 8px 8px 0;
    padding: 0 1.25rem;
    background: var(--primary);
    color: #fff;
    border: none;
    cursor: pointer;
}

#ai-send-btn:hover {
    background: var(--primary-dark);
}

/* ----------------------------------
        13. FOOTER (New Theme)
        ----------------------------------
        */
.footer {
    padding: 4rem 0 2rem;
    margin-top: 4rem;
    background: #222;
    color: var(--light-grey);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.footer-column h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    font-weight: 600;
    color: #fff;
}

.footer-column p {
    color: var(--grey);
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: var(--grey);
    font-size: 0.9rem;
    transition: color 0.2s;
}

.footer-links a:hover {
    color: var(--light);
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    display: block;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #444;
    border-radius: 50%;
    transition: all 0.3s;
    color: var(--grey);
}

.social-links a:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: #fff;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #444;
    font-size: 0.9rem;
    color: var(--grey);
}

/* ----------------------------------
        14. RESPONSIVE DESIGN (New Theme)
        ----------------------------------
        */

/* Tablet (Medium devices) */
@media (max-width: 992px) {

    .nav-links,
    .login-btn {
        display: none;
        /* Hide desktop nav */
    }

    .hamburger {
        display: block;
        /* Show hamburger */
    }

    #page-cart .cart-container,
    #page-checkout .checkout-container {
        grid-template-columns: 1fr;
        /* Stack on tablet */
    }

    #page-cart .cart-summary,
    #page-checkout .order-summary {
        position: static;
        /* Un-stick summary */
        top: auto;
    }

    .footer-content {
        grid-template-columns: 1fr 1fr;
    }
}

/* Mobile (Small devices) */
@media (max-width: 576px) {
    .page-title {
        font-size: 2rem;
    }

    #page-home .hero {
        padding: 2.5rem 1.5rem;
    }

    #page-home .hero-title {
        font-size: 2.25rem;
    }

    #page-home .hero-subtitle {
        font-size: 1rem;
    }

    #page-home .categories-grid {
        grid-template-columns: 1fr 1fr;
        gap: 1rem;
    }

    #page-home .category-card {
        padding: 1rem;
    }

    #page-home .category-card img {
        width: 50px;
        height: 50px;
    }

    #page-menu .menu-grid,
    #page-home .featured-grid {
        grid-template-columns: 1fr;
        /* Single column on mobile */
        gap: 1.5rem;
    }

    #page-cart .cart-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }

    #page-cart .cart-item-image {
        width: 100%;
        height: 150px;
    }

    #page-cart .cart-item-actions {
        width: 100%;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    #page-checkout .checkout-form,
    #page-checkout .order-summary,
    .static-page-content,
    .login-container,
    .card {
        padding: 1.5rem;
    }

    .product-card-content {
        padding: 1rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .social-links {
        justify-content: center;
    }

    .ai-btn span {
        display: none;
        /* Hide text on mobile, show only icon */
    }

    .ai-btn {
        padding: 0.5rem;
    }
}

.chef {
  position: relative;
  isolation: isolate;

}

.chef__bg {
  position: absolute;
  /* isolation: isolate; */
  /* z-index: -1; */
  max-width: 275px;
  left: -4rem;
  bottom: -2rem;
}

.chef__container {
  padding-bottom: 10rem;
  display: grid;
  gap: 2rem;
}

