    :root {
      --primary: #FF6B00;
      --primary-light: #FF8C33;
      --secondary: #4A4A4A;
      --light: #F8F8F8;
      --dark: #333;
      --success: #28A745;
      --border: #E0E0E0;
      --cart-bg: #FFF;
      --accent: #FF9500;
      --cash: #4CAF50;
      --bank: #2196F3;
      --pickup: #2196F3;
      --delivery: #4CAF50;
      --mild: #4CAF50;
      --medium: #FF9800;
      --hot: #F44336;
    }

    * {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
      font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    }

    body {
      background-color: var(--light);
      color: var(--dark);
      line-height: 1.6;
      padding-bottom: 20px;
    }

    .container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 15px;
    }

    header {
      background: linear-gradient(135deg, #ff6b00, #ff8c33);
      padding: 15px 0;
      position: sticky;
      top: 0;
      z-index: 100;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    }

    .header-content {
      display: flex;
      justify-content: space-between;
      align-items: center;
      flex-wrap: wrap;
    }

    .logo {
      display: flex;
      align-items: center;
    }

    .logo-text {
      color: white;
      font-size: 24px;
      font-weight: 700;
    }

    .tagline {
      font-size: 14px;
      color: rgba(255, 255, 255, 0.9);
      margin-top: 3px;
    }

    .nav-buttons {
      display: flex;
      gap: 10px;
    }

    .nav-btn {
      background: rgba(255, 255, 255, 0.2);
      color: white;
      border: none;
      border-radius: 50px;
      padding: 8px 15px;
      font-weight: 500;
      cursor: pointer;
      transition: all 0.3s;
      display: flex;
      align-items: center;
    }

    .nav-btn i {
      margin-right: 5px;
    }

    .nav-btn:hover {
      background: rgba(255, 255, 255, 0.3);
    }

    .hero {
      background: url('https://images.unsplash.com/photo-1606491956689-2ea866880c84?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80') no-repeat center center;
      background-size: cover;
      height: 400px;
      display: flex;
      align-items: center;
      justify-content: center;
      position: relative;
      margin-bottom: 30px;
    }

    .hero::after {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: rgba(0, 0, 0, 0.5);
    }

    .hero-content {
      text-align: center;
      color: white;
      z-index: 1;
      max-width: 800px;
      padding: 0 20px;
    }

    .hero h1 {
      font-size: 48px;
      margin-bottom: 20px;
      text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
    }

    .hero p {
      font-size: 20px;
      margin-bottom: 30px;
      text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
    }

    .order-btn {
      background: var(--primary);
      color: white;
      border: none;
      padding: 15px 40px;
      font-size: 18px;
      font-weight: 600;
      border-radius: 50px;
      cursor: pointer;
      transition: all 0.3s;
      box-shadow: 0 4px 15px rgba(255, 107, 0, 0.4);
    }

    .order-btn:hover {
      background: var(--primary-light);
      transform: translateY(-3px);
      box-shadow: 0 6px 20px rgba(255, 107, 0, 0.5);
    }

    .section-title {
      text-align: center;
      margin: 40px 0 30px;
      color: var(--dark);
      position: relative;
      padding-bottom: 15px;
    }

    .section-title::after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 50%;
      transform: translateX(-50%);
      width: 80px;
      height: 4px;
      background: var(--primary);
      border-radius: 2px;
    }

    .order-container {
      display: flex;
      flex-wrap: wrap;
      gap: 30px;
      position: relative;
    }

    .customer-info {
      flex: 1;
      min-width: 300px;
      background: white;
      padding: 30px;
      border-radius: 15px;
      box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
      order: 3;
      display: none;
      /* Initially hidden */
    }

    .menu-section {
      flex: 2;
      min-width: 300px;
      background: white;
      padding: 30px;
      border-radius: 15px;
      box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
      order: 1;
    }

    .cart-summary {
      position: sticky;
      top: 100px;
      height: fit-content;
      background: var(--cart-bg);
      padding: 25px;
      border-radius: 15px;
      box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
      width: 100%;
      max-width: 400px;
      margin-top: 20px;
      order: 2;
    }

    .form-group {
      margin-bottom: 25px;
    }

    label {
      display: block;
      margin-bottom: 10px;
      font-weight: 500;
      color: var(--secondary);
      font-size: 16px;
    }

    input,
    select,
    textarea {
      width: 100%;
      padding: 14px 18px;
      font-size: 16px;
      border: 2px solid var(--border);
      border-radius: 10px;
      transition: all 0.3s;
    }

    input:focus,
    select:focus,
    textarea:focus {
      outline: none;
      border-color: var(--primary);
      box-shadow: 0 0 0 3px rgba(255, 107, 0, 0.2);
    }

    .delivery-address {
      margin-top: 20px;
      display: none;
      animation: fadeIn 0.5s ease;
    }

    @keyframes fadeIn {
      from {
        opacity: 0;
        transform: translateY(-10px);
      }

      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    .menu-category {
      margin-bottom: 35px;
    }

    .category-title {
      font-size: 22px;
      color: var(--primary);
      margin-bottom: 20px;
      padding-bottom: 10px;
      border-bottom: 2px solid var(--primary);
      font-weight: 700;
      display: flex;
      align-items: center;
    }

    .category-title i {
      margin-right: 12px;
      font-size: 24px;
    }

    /* Smaller menu items */
    .menu-items-container {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
      gap: 12px;
    }

    .menu-item {
      display: flex;
      flex-direction: column;
      padding: 12px;
      border: 1px solid var(--border);
      border-radius: 12px;
      transition: all 0.3s;
      height: 100%;
    }

    .menu-item:hover {
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
      transform: translateY(-3px);
    }

    .item-image {
      width: 100%;
      height: 100px;
      border-radius: 8px;
      overflow: hidden;
      margin-bottom: 12px;
    }

    .item-image img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .item-info {
      flex: 1;
    }

    .item-name {
      font-weight: 600;
      margin-bottom: 5px;
      font-size: 15px;
    }

    .item-desc {
      color: var(--secondary);
      font-size: 12px;
      margin-bottom: 6px;
      min-height: 36px;
    }

    .item-price {
      color: var(--primary);
      font-weight: 700;
      font-size: 16px;
      margin-bottom: 8px;
    }

    .item-actions {
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin-top: 8px;
    }

    .add-btn {
      background: var(--primary);
      color: white;
      border: none;
      padding: 8px 16px;
      border-radius: 6px;
      font-weight: 600;
      cursor: pointer;
      transition: all 0.3s;
      flex: 1;
      font-size: 14px;
    }

    .add-btn:hover {
      background: var(--primary-light);
    }

    .quantity-selector {
      display: none;
      align-items: center;
      gap: 8px;
      margin-left: auto;
    }

    .quantity-selector.show {
      display: flex;
    }

    .quantity-btn {
      width: 30px;
      height: 30px;
      background: var(--primary);
      color: white;
      border: none;
      border-radius: 50%;
      font-size: 16px;
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      transition: background 0.3s;
    }

    .quantity-btn:hover {
      background: var(--primary-light);
    }

    .quantity-input {
      width: 40px;
      text-align: center;
      border: 2px solid var(--border);
      border-radius: 6px;
      padding: 6px;
      font-size: 14px;
      font-weight: 600;
    }

    .payment-section {
      width: 100%;
      background: white;
      padding: 25px;
      border-radius: 15px;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
      margin-top: 20px;
    }

    .option-section {
      margin-bottom: 30px;
    }

    .option-title {
      display: flex;
      align-items: center;
      margin-bottom: 18px;
      font-weight: 600;
      font-size: 18px;
    }

    .option-title i {
      margin-right: 12px;
      font-size: 22px;
      color: var(--primary);
    }

    .option-buttons {
      display: flex;
      gap: 15px;
      margin-top: 15px;
      flex-wrap: wrap;
    }

    .option-btn {
      flex: 1;
      min-width: 160px;
      padding: 18px;
      border-radius: 12px;
      font-weight: 600;
      cursor: pointer;
      text-align: center;
      transition: all 0.3s;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
    }

    .option-btn i {
      font-size: 28px;
      margin-bottom: 12px;
    }

    .option-btn.selected {
      background: white;
      color: var(--dark);
      border-color: var(--primary);
      box-shadow: 0 8px 20px rgba(255, 107, 0, 0.15);
      transform: translateY(-5px);
    }

    .option-btn.selected.pickup {
      border-color: var(--pickup);
      color: var(--pickup);
    }

    .option-btn.selected.delivery {
      border-color: var(--delivery);
      color: var(--delivery);
    }

    .option-btn.selected.cash {
      border-color: var(--cash);
      color: var(--cash);
    }

    .option-btn.selected.bank {
      border-color: var(--bank);
      color: var(--bank);
    }

    .btn-subtext {
      font-size: 14px;
      color: var(--secondary);
      margin-top: 8px;
    }

    .payment-info {
      background: #f8f9fa;
      border-left: 4px solid var(--primary);
      padding: 20px;
      margin-top: 20px;
      display: none;
      animation: fadeIn 0.3s ease-in-out;
    }

    .payment-info p {
      margin-bottom: 10px;
      line-height: 1.5;
    }

    .order-summary {
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin-top: 30px;
      padding-top: 20px;
      border-top: 2px solid var(--border);
    }

    .total-amount {
      font-size: 24px;
      font-weight: 700;
    }

    .total-price {
      color: var(--primary);
      font-size: 26px;
    }

    .submit-btn {
      background: var(--primary);
      color: white;
      border: none;
      padding: 18px 30px;
      font-size: 20px;
      font-weight: 700;
      border-radius: 12px;
      cursor: pointer;
      transition: all 0.3s;
      width: 100%;
      box-shadow: 0 6px 15px rgba(255, 107, 0, 0.4);
      text-transform: uppercase;
      letter-spacing: 1px;
    }

    .submit-btn:hover {
      background: var(--primary-light);
      transform: translateY(-3px);
      box-shadow: 0 8px 20px rgba(255, 107, 0, 0.5);
    }

    .submit-btn:disabled {
      background: #cccccc;
      cursor: not-allowed;
      transform: none;
      box-shadow: none;
    }

    .order-confirmation {
      display: none;
      background: white;
      padding: 40px;
      border-radius: 15px;
      box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
      text-align: center;
      margin: 30px auto;
      max-width: 700px;
      animation: fadeIn 0.5s ease-in-out;
    }

    .confirmation-icon {
      font-size: 80px;
      color: var(--success);
      margin-bottom: 25px;
      animation: bounce 1s ease;
    }

    @keyframes bounce {

      0%,
      20%,
      50%,
      80%,
      100% {
        transform: translateY(0);
      }

      40% {
        transform: translateY(-30px);
      }

      60% {
        transform: translateY(-15px);
      }
    }

    .confirmation-title {
      font-size: 32px;
      font-weight: 700;
      margin-bottom: 20px;
      color: var(--success);
    }

    .order-number {
      background: var(--light);
      padding: 15px 30px;
      border-radius: 10px;
      display: inline-block;
      margin: 20px 0;
      font-weight: 700;
      font-size: 22px;
      color: var(--primary);
      box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    }

    .confirmation-message {
      margin-bottom: 25px;
      color: var(--secondary);
      font-size: 18px;
      line-height: 1.6;
    }

    .confirmation-btn {
      background: var(--primary);
      color: white;
      border: none;
      padding: 15px 35px;
      font-size: 18px;
      border-radius: 50px;
      cursor: pointer;
      transition: all 0.3s;
      box-shadow: 0 4px 15px rgba(255, 107, 0, 0.4);
      font-weight: 600;
    }

    .confirmation-btn:hover {
      background: var(--primary-light);
      transform: translateY(-3px);
      box-shadow: 0 6px 20px rgba(255, 107, 0, 0.5);
    }

    .cart-header {
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin-bottom: 20px;
      padding-bottom: 15px;
      border-bottom: 2px solid var(--border);
    }

    .cart-title {
      font-size: 22px;
      font-weight: 700;
      color: var(--primary);
    }

    .cart-items {
      max-height: 300px;
      overflow-y: auto;
      margin-bottom: 20px;
      padding-right: 10px;
    }

    .cart-item {
      display: flex;
      justify-content: space-between;
      padding: 12px 0;
      border-bottom: 1px solid var(--border);
      align-items: center;
    }

    .cart-item-name {
      flex: 1;
      font-weight: 500;
    }

    .cart-item-details {
      display: flex;
      align-items: center;
    }

    .cart-item-qty {
      margin: 0 8px;
      font-weight: 600;
    }

    .cart-item-price {
      width: 80px;
      text-align: right;
      font-weight: 600;
      color: var(--primary);
    }

    .cart-totals {
      margin: 20px 0;
    }

    .cart-row {
      display: flex;
      justify-content: space-between;
      margin-bottom: 12px;
      font-size: 17px;
    }

    .cart-total-row {
      font-weight: 700;
      margin-top: 15px;
      padding-top: 15px;
      border-top: 2px solid var(--border);
      font-size: 20px;
    }

    .promo-section {
      display: flex;
      gap: 10px;
      margin: 20px 0;
    }

    .promo-input {
      flex: 1;
      padding: 14px;
      border: 2px solid var(--border);
      border-radius: 10px;
      font-size: 16px;
    }

    .promo-btn {
      background: var(--accent);
      color: white;
      border: none;
      border-radius: 10px;
      padding: 0 25px;
      cursor: pointer;
      font-weight: 600;
      font-size: 16px;
      transition: all 0.3s;
    }

    .promo-btn:hover {
      background: #e68600;
      transform: translateY(-2px);
    }

    .free-delivery-badge {
      background: rgba(76, 175, 80, 0.1);
      color: #28a745;
      padding: 4px 10px;
      border-radius: 20px;
      font-size: 14px;
      margin-left: 8px;
      font-weight: 600;
    }

    .delivery-info {
      background: rgba(255, 107, 0, 0.05);
      border-left: 4px solid var(--primary);
      padding: 15px;
      margin: 15px 0;
      border-radius: 8px;
      font-size: 16px;
    }

    .empty-cart {
      text-align: center;
      padding: 30px;
      color: var(--secondary);
      font-size: 18px;
    }

    .address-label {
      display: flex;
      align-items: center;
      margin-bottom: 12px;
    }

    .address-label i {
      margin-right: 10px;
      color: var(--primary);
      font-size: 20px;
    }

    .address-note {
      font-size: 15px;
      color: red;
      margin-top: 10px;
      font-style: italic;
    }

    #deliveryAddress {
      min-height: 140px;
      padding: 15px;
      font-size: 16px;
      width: 100%;
      border: 2px solid var(--border);
      border-radius: 10px;
      transition: all 0.3s;
      resize: vertical;
    }

    #deliveryAddress:focus {
      border-color: var(--primary);
      outline: none;
      box-shadow: 0 0 0 4px rgba(255, 107, 0, 0.2);
    }

    footer {
      background: var(--dark);
      color: white;
      padding: 40px 0 20px;
      margin-top: 50px;
    }

    .footer-content {
      display: flex;
      flex-wrap: wrap;
      justify-content: space-between;
      gap: 30px;
    }

    .footer-section {
      flex: 1;
      min-width: 250px;
    }

    .footer-title {
      font-size: 20px;
      margin-bottom: 20px;
      color: var(--primary);
      position: relative;
      padding-bottom: 10px;
    }

    .footer-title::after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 0;
      width: 50px;
      height: 3px;
      background: var(--primary);
    }

    .footer-links {
      list-style: none;
    }

    .footer-links li {
      margin-bottom: 12px;
    }

    .footer-links a {
      color: #ddd;
      text-decoration: none;
      transition: color 0.3s;
      display: flex;
      align-items: center;
    }

    .footer-links a i {
      margin-right: 10px;
      width: 20px;
      text-align: center;
    }

    .footer-links a:hover {
      color: var(--primary);
    }

    .contact-info p {
      margin-bottom: 12px;
      display: flex;
      align-items: center;
    }

    .contact-info i {
      margin-right: 10px;
      width: 20px;
      color: var(--primary);
    }

    .copyright {
      text-align: center;
      padding-top: 30px;
      margin-top: 30px;
      border-top: 1px solid rgba(255, 255, 255, 0.1);
      color: #aaa;
      font-size: 14px;
    }

    /* Spice Level Modal */
    .modal {
      display: none;
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(0, 0, 0, 0.7);
      z-index: 1000;
      justify-content: center;
      align-items: center;
      overflow-y: auto;
    }

    .modal-content {
      background: white;
      padding: 30px;
      border-radius: 15px;
      width: 90%;
      max-width: 500px;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
      text-align: center;
      animation: popIn 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
      margin: 20px;
    }

    @keyframes popIn {
      0% {
        transform: scale(0.8);
        opacity: 0;
      }

      100% {
        transform: scale(1);
        opacity: 1;
      }
    }

    .modal-title {
      font-size: 24px;
      margin-bottom: 20px;
      color: var(--dark);
    }

    .spice-options {
      display: flex;
      justify-content: center;
      gap: 15px;
      margin: 25px 0;
      flex-wrap: wrap;
    }

    .spice-btn {
      padding: 15px 25px;
      border: none;
      border-radius: 10px;
      font-weight: 600;
      font-size: 16px;
      cursor: pointer;
      transition: all 0.3s;
      min-width: 100px;
    }

    .spice-mild {
      background-color: var(--mild);
      color: white;
    }

    .spice-medium {
      background-color: var(--medium);
      color: white;
    }

    .spice-hot {
      background-color: var(--hot);
      color: white;
    }

    .spice-btn:hover {
      transform: translateY(-3px);
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    }

    .spice-btn:active {
      transform: translateY(1px);
    }

    .instructions-btn {
      background: var(--primary);
      color: white;
      border: none;
      padding: 12px 25px;
      border-radius: 8px;
      font-weight: 600;
      cursor: pointer;
      margin-top: 15px;
      transition: all 0.3s;
    }

    .instructions-btn:hover {
      background: var(--primary-light);
    }

    .special-instructions {
      margin-top: 20px;
      display: none;
    }

    .special-instructions textarea {
      width: 100%;
      min-height: 100px;
      padding: 15px;
      border: 2px solid var(--border);
      border-radius: 10px;
      font-size: 16px;
      margin-top: 10px;
      resize: vertical;
    }

    .special-instructions textarea:focus {
      border-color: var(--primary);
      outline: none;
      box-shadow: 0 0 0 3px rgba(255, 107, 0, 0.2);
    }

    .special-instructions-label {
      display: block;
      font-weight: 600;
      margin-bottom: 10px;
      color: var(--dark);
    }

    .instructions-display {
      background: #f9f9f9;
      border-left: 4px solid var(--primary);
      padding: 15px;
      margin-top: 15px;
      border-radius: 8px;
      font-size: 15px;
      display: none;
    }

    /* Delivery and Payment Modals */
    .delivery-modal .modal-content,
    .payment-modal .modal-content {
      max-width: 400px;
      padding: 25px;
    }

    .option-btn-modal {
      flex: 1;
      min-width: 140px;
      padding: 15px;
      border-radius: 12px;
      font-weight: 600;
      cursor: pointer;
      text-align: center;
      transition: all 0.3s;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      margin: 5px;
      border: 2px solid var(--border);
    }

    .option-btn-modal.selected {
      border-color: var(--primary);
      box-shadow: 0 4px 10px rgba(255, 107, 0, 0.15);
      transform: translateY(-3px);
    }

    .option-btn-modal.pickup.selected {
      border-color: var(--pickup);
      color: var(--pickup);
    }

    .option-btn-modal.delivery.selected {
      border-color: var(--delivery);
      color: var(--delivery);
    }

    .option-btn-modal.cash.selected {
      border-color: var(--cash);
      color: var(--cash);
    }

    .option-btn-modal.bank.selected {
      border-color: var(--bank);
      color: var(--bank);
    }

    .option-btn-modal i {
      font-size: 24px;
      margin-bottom: 10px;
    }

    .modal-actions {
      margin-top: 20px;
      display: flex;
      justify-content: center;
    }

    .modal-confirm-btn {
      background: var(--primary);
      color: white;
      border: none;
      padding: 12px 25px;
      border-radius: 8px;
      font-weight: 600;
      cursor: pointer;
      transition: all 0.3s;
    }

    .modal-confirm-btn:hover {
      background: var(--primary-light);
    }

    .editable-option {
      cursor: pointer;
      color: var(--primary);
      font-weight: 600;
      padding: 4px 8px;
      border-radius: 6px;
      background: rgba(255, 107, 0, 0.1);
      transition: all 0.2s;
    }

    .editable-option:hover {
      background: rgba(255, 107, 0, 0.2);
    }

    .checkout-btn {
      background: var(--primary);
      color: white;
      border: none;
      padding: 15px;
      border-radius: 10px;
      font-weight: 600;
      cursor: pointer;
      margin-top: 15px;
      width: 100%;
      transition: all 0.3s;
      display: none;
      /* Initially hidden */
    }

    .checkout-btn:hover {
      background: var(--primary-light);
      transform: translateY(-2px);
    }

    /* Customer Info Modal */
    .customer-modal {
      display: none;
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(0, 0, 0, 0.7);
      z-index: 1000;
      justify-content: center;
      align-items: center;
      overflow-y: auto;
    }

    .customer-modal-content {
      background: white;
      padding: 30px;
      border-radius: 15px;
      width: 90%;
      max-width: 500px;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
      animation: popIn 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
      margin: 20px;
    }

    .customer-modal h2 {
      text-align: center;
      margin-bottom: 20px;
      color: var(--dark);
      position: relative;
      padding-bottom: 10px;
    }

    .customer-modal h2::after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 50%;
      transform: translateX(-50%);
      width: 80px;
      height: 4px;
      background: var(--primary);
      border-radius: 2px;
    }

    .customer-modal .form-group {
      margin-bottom: 20px;
    }

    .customer-modal label {
      display: block;
      margin-bottom: 8px;
      font-weight: 500;
      color: var(--secondary);
    }

    .customer-modal input,
    .customer-modal textarea {
      width: 100%;
      padding: 12px 15px;
      font-size: 16px;
      border: 2px solid var(--border);
      border-radius: 10px;
      transition: all 0.3s;
    }

    .customer-modal input:focus,
    .customer-modal textarea:focus {
      outline: none;
      border-color: var(--primary);
      box-shadow: 0 0 0 3px rgba(255, 107, 0, 0.2);
    }

    .customer-modal-actions {
      display: flex;
      justify-content: space-between;
      margin-top: 20px;
    }

    .customer-modal-btn {
      flex: 1;
      margin: 0 5px;
      padding: 12px;
      border-radius: 8px;
      font-weight: 600;
      cursor: pointer;
      transition: all 0.3s;
    }

    .customer-modal-cancel {
      background: #e0e0e0;
      border: 2px solid #e0e0e0;
    }

    .customer-modal-cancel:hover {
      background: #d0d0d0;
    }

    .customer-modal-submit {
      background: var(--primary);
      color: white;
      border: 2px solid var(--primary);
    }

    .customer-modal-submit:hover {
      background: var(--primary-light);
    }

    @media (max-width: 992px) {
      .hero {
        height: 350px;
      }

      .hero h1 {
        font-size: 40px;
      }

      .hero p {
        font-size: 18px;
      }
    }

    @media (max-width: 768px) {
      .order-container {
        flex-direction: column;
      }

      .cart-summary {
        position: relative;
        top: 0;
        max-width: 100%;
      }

      .hero {
        height: 300px;
      }

      .hero h1 {
        font-size: 32px;
      }

      .hero p {
        font-size: 16px;
      }

      .option-btn {
        min-width: calc(50% - 10px);
      }

      .header-content {
        flex-direction: column;
        gap: 15px;
      }

      .nav-buttons {
        width: 100%;
        justify-content: center;
      }

      .menu-items-container {
        grid-template-columns: repeat(3, 1fr);
      }

      .menu-item {
        padding: 10px;
      }

      .item-image {
        height: 100px;
      }
    }

    @media (max-width: 576px) {
      .hero {
        height: 250px;
      }

      .hero h1 {
        font-size: 28px;
      }

      .option-btn {
        min-width: 100%;
      }

      .promo-section {
        flex-direction: column;
      }

      .promo-btn {
        padding: 14px;
      }

      .menu-items-container {
        grid-template-columns: repeat(2, 1fr);
      }

      .spice-options {
        flex-direction: column;
      }
    }