    /* Global Colors - Matching the franchise page */
    :root { 
        --background-color: #eb0043; 
        --default-color: #ffffff; 
        --heading-color: #ffffff; 
        --accent-color: #ffffff; 
        --surface-color: #eb0043; 
        --contrast-color: #ffffff; 
        --footer-color: #2b2e34;
        --card-bg: rgba(255, 255, 255, 0.05);
        --light-text: #adb5bd;
    }

    * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
        font-family: 'Lato', sans-serif;
    }

    body {
        background-color: var(--background-color);
        color: var(--default-color);
        line-height: 1.6;
    }

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

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

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

    .logo {
        font-size: 24px;
        font-weight: bold;
        color: var(--heading-color);
        text-decoration: none;
    }

    .nav-links {
        display: flex;
        list-style: none;
    }

    .nav-links li {
        margin-left: 30px;
    }

    .nav-links a {
        color: var(--default-color);
        text-decoration: none;
        font-weight: 500;
        transition: opacity 0.3s;
    }

    .nav-links a:hover {
        opacity: 0.8;
    }

    /* Hero Section */
    .hero {
        padding: 80px 0;
        text-align: center;
        background-image: url('/api/placeholder/1200/600');
        background-size: cover;
        background-position: center;
        position: relative;
    }

    .hero::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(235, 0, 67, 0.7);
    }

    .hero-content {
        position: relative;
        z-index: 1;
    }

    .hero h1 {
        font-size: 5rem;
        margin-bottom: 20px;
        color: var(--heading-color);
    }

    .hero p {
        font-size: 18px;
        max-width: 800px;
        margin: 0 auto 40px;
        
    }

    /* Menu Categories */
    .menu-category {
        padding: 40px 0;
    }

    .category-title {
        position: relative;
        display: inline-block;
        margin-bottom: 40px;
        font-size: 36px;
        color: var(--heading-color);
    }

    .category-title::after {
        content: '';
        position: absolute;
        bottom: -10px;
        left: 0;
        width: 60px;
        height: 3px;
        background-color: var(--default-color);
    }

    .menu-grid {
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
        gap: 30px;
        margin-bottom: 60px;
    }

    .menu-item {
        background-color: var(--card-bg);
        border-radius: 15px;
        overflow: hidden;
        transition: transform 0.3s, box-shadow 0.3s;
        position: relative;
        box-shadow: 0 1px 2px var(--default-color);
    }

    .menu-item:hover {
        transform: translateY(-10px);
        box-shadow: 0 10px 20px var(--footer-color);
    }

    .menu-item img {
        width: 100%;
        height: 200px;
        object-fit: cover;
        transition: transform 0.5s;
    }

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

    .popular-tag {
        position: absolute;
        top: 15px;
        right: 15px;
        background-color: var(--background-color);
        color: white;
        padding: 5px 12px;
        border-radius: 20px;
        font-size: 12px;
        font-weight: bold;
        z-index: 2;
    }

    .menu-item-content {
        padding: 20px;
    }

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

    .menu-item h3 {
        margin: 0;
        color: var(--heading-color);
        font-size: 18px;
    }

    .menu-item-components {
        color: #666;
        font-size: 0.9rem;
        margin-bottom: 15px;
        align-items: center;
    }

    .price {
        font-weight: bold;
        font-size: 18px;
        color: var(--default-color);
    }

    .menu-item p {
        color: var(--default-color);
        margin-bottom: 15px;
        font-size: 14px;
        
    }

    .menu-item-footer {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .order-btn {
        display: inline-block;
        background-color: var(--default-color);
        color: var(--background-color);
        padding: 8px 15px;
        border-radius: 5px;
        text-decoration: none;
        font-weight: 600;
        font-size: 14px;
        transition: all 0.3s;
    }

    .order-btn:hover {
        background-color: #f0f0f0;
        transform: translateY(-2px);
    }

    .ratings {
        display: flex;
        align-items: center;
    }

    .ratings span {
        margin-left: 5px;
        font-size: 13px;
        color: var(--light-text);
    }

    /* Meat Options Styling */
    .meat-options {
        display: flex;
        justify-content: space-between;
        margin-bottom: 15px;
        flex-wrap: wrap;
        gap: 10px;
    }

    .meat-option {
        flex: 1;
        min-width: 80px;
        background-color: var(--footer-color);
        border-radius: 8px;
        padding: 10px;
        cursor: pointer;
        transition: all 0.3s;
        text-align: center;
        border: 1px solid var(--footer-color);
    }

    .meat-option.active {
        background-color: var(--footer-color);
        border-color: var(--default-color);
    }

    .meat-option:hover {
        background-color: var(--background-color);
        transform: translateY(-3px);
    }

    .meat-option-header {
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 8px;
    }

    .icon-meat {
        width: 20px;
        height: 20px;
        margin-right: 8px;
        background-size: contain;
        background-repeat: no-repeat;
        background-position: center;
        display: inline-block;
    }

    /* Using SVG directly embedded as background */
    .icon-chicken {
        background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23ffffff'%3E%3Cpath d='M11.5,4C10.1,4,9,5.1,9,6.5c0,0.9,0.5,1.7,1.2,2.1C9.5,9,9,9.8,9,10.8c0,1,0.5,1.9,1.3,2.4C9.5,13.7,9,14.6,9,15.5 C9,17.4,10.6,19,12.5,19h4c2.2,0,4-1.8,4-4c0-1.4-0.8-2.7-1.9-3.4c0-0.1,0-0.1,0-0.2c0-1.4-0.8-2.7-1.9-3.4c0-0.1,0-0.1,0-0.2 c0-2.2-1.8-4-4-4H11.5z'/%3E%3C/svg%3E");
    }

    .icon-beef {
        background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23ffffff'%3E%3Cpath d='M18.06,3H5.94C4.87,3,4,3.87,4,4.94v14.12C4,20.13,4.87,21,5.94,21h12.12c1.07,0,1.94-0.87,1.94-1.94V4.94 C20,3.87,19.13,3,18.06,3z M12,10.75c-1.52,0-2.75-1.23-2.75-2.75S10.48,5.25,12,5.25s2.75,1.23,2.75,2.75S13.52,10.75,12,10.75z M8.5,18.5h-1c-0.83,0-1.5-0.67-1.5-1.5v-1c0-0.83,0.67-1.5,1.5-1.5h1c0.83,0,1.5,0.67,1.5,1.5v1C10,17.83,9.33,18.5,8.5,18.5z M16.5,18.5h-1c-0.83,0-1.5-0.67-1.5-1.5v-1c0-0.83,0.67-1.5,1.5-1.5h1c0.83,0,1.5,0.67,1.5,1.5v1 C18,17.83,17.33,18.5,16.5,18.5z'/%3E%3C/svg%3E");
    }

    .icon-mixed {
        background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23ffffff'%3E%3Cpath d='M16,3H8C5.79,3,4,4.79,4,7v10c0,2.21,1.79,4,4,4h8c2.21,0,4-1.79,4-4V7C20,4.79,18.21,3,16,3z M8,7h4v4H8V7z M16,17H8v-4h8V17z M16,11h-4V7h4V11z'/%3E%3C/svg%3E");
    }

    .meat-option-name {
        font-weight: 600;
        font-size: 14px;
    }

    .meat-option-details {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .meat-option-price {
        font-weight: 700;
        font-size: 16px;
        color: var(--default-color);
    }

    .meat-option-kcal {
        font-size: 12px;
        color: var(--light-text);
        margin-top: 2px;
    }

    /* Add some responsiveness */
    @media (max-width: 768px) {
        .hero h1 {
            font-size: 36px;
        }
        
        .category-title {
            font-size: 28px;
        }
        
        .menu-grid {
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
        }
        
        .meat-option {
            min-width: 70px;
            padding: 8px;
        }
        
        .meat-option-name {
            font-size: 12px;
        }
        
        .meat-option-price {
            font-size: 14px;
        }
        .menu-item-components {
            font-size: 0.75rem;
            margin-bottom: 10px;
            align-items: center;
        }
    }
/*--------------------------------------------------------------
# Footer Section (Rewritten for iPhone Compatibility)
--------------------------------------------------------------*/
footer {
    background-color: var(--footer-color, #2b2e34); /* Fallback color */
    color: var(--default-color, #adb5bd); /* Fallback color */
    width: 100%;
    /* Define base padding: Top, Horizontal (LR), Bottom */
    /* Using clamp for flexible horizontal padding */
    /* Setting a base bottom padding (e.g., 25px) which will be augmented by safe-area */
    padding: clamp(40px, 6vw, 60px) clamp(15px, 4vw, 25px) 25px;
    box-sizing: border-box; /* Crucial for correct padding calculation */
  }
  
  /* Ensure container within footer doesn't add extra conflicting padding */
  footer .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0; /* Padding is handled by the footer element itself */
  }
  
  .footer-grid {
    display: grid;
    /* Adjust minmax for better small screen fit, e.g., 200px */
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: clamp(25px, 4vw, 40px); /* Flexible gap */
    margin-bottom: clamp(30px, 5vw, 40px); /* Spacing above copyright */
  }
  
  .footer-section h3 {
    color: var(--heading-color, #ffffff); /* Fallback color */
    font-size: clamp(18px, 3vw, 20px); /* Responsive font size */
    margin-bottom: 15px;
    font-weight: 700;
    padding-bottom: 8px;
    /* Using border-bottom for the underline effect - simpler than ::after */
    border-bottom: 2px solid var(--accent-color, #cb2e40); /* Fallback color */
    display: inline-block; /* Border only spans the text width */
  }
  
  .footer-section p,
  .footer-section a {
    color: #adb5bd; /* Specific color for readability */
    margin-bottom: 10px;
    display: block;
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: clamp(14px, 2.5vw, 15px); /* Responsive font size */
    line-height: 1.6;
    /* Help prevent long words from breaking layout */
    word-wrap: break-word;
    overflow-wrap: break-word;
  }
  
  .footer-section a:hover {
    color: var(--accent-color, #cb2e40); /* Use accent color for hover */
  }
  
  .footer-section .location {
    margin-bottom: 18px;
  }
  
  .location strong {
    display: block;
    color: #e9ecef; /* Slightly brighter than default text */
    word-wrap: break-word;
    overflow-wrap: break-word;
    line-height: 1.5;
    margin-bottom: 6px;
    font-weight: 600; /* Slightly bolder */
  }
  
  .location p {
    margin-bottom: 5px;
  }
  
  .social-links {
    display: flex;
    flex-wrap: wrap; /* Allow wrapping on small screens */
    gap: 12px; /* Spacing between icons */
    margin-top: 15px;
  }
  
  .social-links a.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px; /* Decent touch target size */
    height: 38px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--default-color, #adb5bd);
    font-size: 16px; /* Icon size */
    transition: all 0.3s ease;
    flex-shrink: 0; /* Prevent icons from shrinking unevenly */
  }
  
  .social-links a.social-link img {
    width: 20px; /* SVG/image size */
    height: 20px;
    object-fit: contain;
  }
  
  .social-links a.social-link:hover {
    background-color: var(--accent-color, #cb2e40);
    color: var(--contrast-color, #ffffff); /* Ensure icon is visible on hover */
    transform: translateY(-3px); /* Subtle lift effect */
  }
  
  .copyright {
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 25px; /* Match base bottom padding */
    margin-top: clamp(25px, 4vw, 35px); /* Space above copyright, separate from padding */
    color: #adb5bd;
    font-size: clamp(13px, 2.2vw, 14px); /* Responsive font size */
    line-height: 1.5;
  }
  
  /* --- Refined iOS Safe Area Support --- */
  /* Applies padding adjustments ONLY if the browser supports env() variables */
  @supports (padding-bottom: env(safe-area-inset-bottom)) {
    footer {
      /* Add safe area insets to the base padding */
      /* Use max() to ensure minimum padding even if inset is 0 */
      padding-left: max(clamp(15px, 4vw, 25px), env(safe-area-inset-left));
      padding-right: max(clamp(15px, 4vw, 25px), env(safe-area-inset-right));
      padding-bottom: calc(25px + env(safe-area-inset-bottom)); /* Base padding + bottom inset */
    }
  }
  
  /* --- Responsive Adjustments --- */
  
  /* Tablet and smaller - Adjust grid and center content */
  @media (max-width: 768px) {
    .footer-grid {
      grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); /* Ensure columns don't get too squished */
      gap: 30px;
    }
    /* Optionally center content within sections on smaller screens */
    .footer-section {
       text-align: center;
    }
     .footer-section h3 {
       display: inline-block; /* Required for centering border */
       border-bottom-width: 2px; /* Ensure border is visible */
    }
    .social-links {
       justify-content: center; /* Center social icons */
    }
  }
  
  /* Mobile general - Stack columns */
  @media (max-width: 576px) {
    .footer-grid {
      grid-template-columns: 1fr; /* Stack into a single column */
      gap: 30px; /* Adjust vertical gap when stacked */
    }
    .footer-section {
      padding-bottom: 10px; /* Add a bit of spacing below each section when stacked */
      text-align: center; /* Ensure centering persists */
    }
  }
  
  /* Very Small Mobile adjustments (e.g., iPhone SE 1st gen width) */
  @media (max-width: 375px) {
     .footer-section h3 {
        font-size: clamp(17px, 4.5vw, 19px);
     }
     .location strong,
     .footer-section p,
     .footer-section a {
        font-size: clamp(13px, 3.8vw, 14px); /* Slightly smaller text */
     }
     .social-links a.social-link {
        width: 36px; /* Can slightly reduce if space is very tight */
        height: 36px;
        font-size: 15px;
     }
     .social-links a.social-link img {
        width: 18px;
        height: 18px;
     }
  }