/* FULL  */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', sans-serif;
  background: #fefaf5;
  color: #1e1a17;
  line-height: 1.5;
  margin: 0;
  padding: 0;
  width: 100%;
  overflow-x: hidden;
}

body.rtl {
  font-family: 'Cairo', 'Inter', sans-serif;
  direction: rtl;
  text-align: right;
}

#app {
  width: 100%;
  max-width: 100%;
  margin: 0;
  padding: 0;
  background: #fefaf5;
  overflow-x: hidden;
}

/*  HEADER - FULL WIDTH  */
.header {
  background: #ffffff;
  border-bottom: 1px solid #f0e6df;
  padding: 20px 0;
  position: sticky;
  top: 0;
  z-index: 100;
  width: 100%;
}

.header-container {
  max-width: 1400px;
  width: 90%;
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.logo {
  font-size: 28px;
  font-weight: 800;
  letter-spacing: -0.5px;
  background: linear-gradient(135deg, #1a1a1a, #ff6b2c);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
}

.logo span {
  color: #ff6b2c;
  background: none;
}

.language-selector {
  display: flex;
  gap: 6px;
  background: #f5f0eb;
  padding: 4px 12px;
  border-radius: 40px;
}

.lang-btn {
  background: none;
  border: none;
  color: #8a7a6a;
  font-weight: 500;
  font-size: 12px;
  padding: 6px 12px;
  border-radius: 30px;
  cursor: pointer;
  transition: all 0.2s;
}

.lang-btn.active {
  background: #ff6b2c;
  color: #ffffff;
}

.navigation {
  display: flex;
  align-items: center;
  gap: 24px;
}

.nav-links-wrapper {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-link {
  padding: 10px 18px;
  border-radius: 60px;
  color: #4a3a2a;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: all 0.3s;
}

.nav-link:hover {
  background: #fff5f0;
  color: #ff6b2c;
}

.nav-link.active {
  background: #ff6b2c;
  color: #ffffff;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.cart-trigger {
  background: #f5f0eb;
  border: 1px solid #e0d6ce;
  padding: 10px 16px;
  border-radius: 60px;
  cursor: pointer;
  position: relative;
  color: #ff6b2c;
  font-size: 18px;
  transition: all 0.3s;
}

.cart-trigger:hover {
  background: #ff6b2c;
  color: #ffffff;
}

.cart-badge {
  position: absolute;
  top: -6px;
  right: -6px;
  background: #ff6b2c;
  color: #ffffff;
  font-size: 10px;
  font-weight: 800;
  padding: 2px 7px;
  border-radius: 30px;
}

.order-trigger {
  background: #ff6b2c;
  border: none;
  padding: 10px 24px;
  border-radius: 60px;
  font-weight: 700;
  font-size: 14px;
  cursor: pointer;
  color: #ffffff;
  transition: all 0.3s;
}

.order-trigger:hover {
  background: #ff8c42;
  transform: translateY(-2px);
}

.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 22px;
  background: none;
  border: none;
  cursor: pointer;
}

.mobile-menu-toggle .bar {
  width: 100%;
  height: 2px;
  background: #4a3a2a;
  border-radius: 2px;
  transition: all 0.3s;
}

/*  HERO - FULL WIDTH  */
.hero {
  position: relative;
  min-height: 85vh;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 80px 32px;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('img/9.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(254, 250, 245, 0.85), rgba(255, 248, 243, 0.9));
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
  width: 90%;
  margin: 0 auto;
}

.hero-badge {
  display: inline-block;
  background: rgba(255, 107, 44, 0.1);
  padding: 6px 20px;
  border-radius: 40px;
  font-size: 12px;
  font-weight: 600;
  color: #ff6b2c;
  margin-bottom: 24px;
}

.hero h1 {
  font-size: 60px;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 20px;
  color: #1e1a17;
}

.hero-description {
  font-size: 18px;
  color: #5a4a3a;
  margin-bottom: 32px;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/*  BUTTONS  */
.btn-primary {
  background: #ff6b2c;
  border: none;
  padding: 14px 36px;
  border-radius: 60px;
  font-weight: 700;
  font-size: 16px;
  cursor: pointer;
  color: #ffffff;
  transition: all 0.2s;
}

.btn-primary:hover {
  background: #ff8c42;
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  border: 2px solid #ff6b2c;
  padding: 14px 36px;
  border-radius: 60px;
  font-weight: 700;
  font-size: 16px;
  cursor: pointer;
  color: #ff6b2c;
  transition: all 0.2s;
}

.btn-outline:hover {
  background: #ff6b2c;
  color: #ffffff;
}

.full-width {
  width: 100%;
}

/*  TRUST BADGES  */
.trust-badges {
  display: flex;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
  padding: 20px 32px;
  background: #ffffff;
  max-width: 1100px;
  width: 90%;
  margin: -30px auto 0;
  position: relative;
  z-index: 3;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  border-radius: 60px;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: #4a3a2a;
}

.trust-item i {
  font-size: 18px;
  color: #ff6b2c;
}

/*  FEATURES  */
.features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 32px;
  padding: 64px 32px;
  max-width: 1400px;
  width: 90%;
  margin: 0 auto;
}

.feature {
  text-align: center;
  padding: 32px;
  background: #ffffff;
  border-radius: 28px;
  border: 1px solid #f0e6df;
  transition: all 0.3s;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
}

.feature:hover {
  transform: translateY(-4px);
  border-color: #ff6b2c;
  box-shadow: 0 12px 24px rgba(255, 107, 44, 0.1);
}

.feature i {
  font-size: 48px;
  color: #ff6b2c;
  margin-bottom: 16px;
}

.feature h3 {
  font-size: 22px;
  margin-bottom: 12px;
  color: #1e1a17;
}

.feature p {
  color: #8a7a6a;
  font-size: 14px;
}

/*  PAGES & CONTAINERS  */
.page-container {
  max-width: 1400px;
  width: 90%;
  margin: 0 auto;
  padding: 48px 0;
}

.page {
  display: none;
}

.page.active {
  display: block;
  animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

.section-title {
  text-align: center;
  margin-bottom: 48px;
}

.section-title h2 {
  font-size: 40px;
  font-weight: 800;
  margin-bottom: 12px;
  color: #1e1a17;
}

.section-title p {
  color: #8a7a6a;
}

/*  MENU GRID  */
.menu-grid,
.combos-grid,
.locations-grid,
.offers-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 32px;
}

.menu-card,
.combo-card,
.location-card,
.offer-card {
  background: #ffffff;
  border-radius: 28px;
  padding: 24px;
  border: 1px solid #f0e6df;
  transition: all 0.3s;
}

.menu-card:hover,
.combo-card:hover {
  transform: translateY(-6px);
  border-color: #ff6b2c;
  box-shadow: 0 12px 24px rgba(255, 107, 44, 0.1);
}

.menu-image {
  width: 100%;
  height: 200px;
  background-size: cover;
  background-position: center;
  border-radius: 20px;
  margin-bottom: 16px;
}

.menu-title {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 8px;
  color: #1e1a17;
}

.menu-price {
  font-size: 24px;
  font-weight: 800;
  color: #ff6b2c;
  margin: 12px 0;
}

.menu-desc {
  color: #8a7a6a;
  font-size: 14px;
  margin-bottom: 16px;
}

.add-btn {
  background: none;
  border: 2px solid #ff6b2c;
  padding: 10px;
  border-radius: 40px;
  font-weight: 600;
  cursor: pointer;
  width: 100%;
  transition: all 0.2s;
  color: #ff6b2c;
}

.add-btn:hover {
  background: #ff6b2c;
  color: #ffffff;
}

/*  BUILDER PAGE  */
.builder-panel,
.deals-panel,
.about-panel,
.contact-panel {
  background: #ffffff;
  border-radius: 32px;
  padding: 48px;
  border: 1px solid #f0e6df;
}

.builder-options {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  margin-top: 32px;
}

.builder-field {
  flex: 1;
  min-width: 180px;
}

.builder-field label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
  color: #ff6b2c;
}

.builder-field select {
  width: 100%;
  padding: 12px;
  border-radius: 40px;
  background: #fefaf5;
  border: 1px solid #f0e6df;
  color: #1e1a17;
}

/*  ABOUT PAGE  */
.about-panel {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  padding: 0;
  overflow: hidden;
}

.about-story {
  padding: 48px;
}

.story-badge {
  display: inline-block;
  background: rgba(255, 107, 44, 0.1);
  padding: 6px 16px;
  border-radius: 40px;
  font-size: 12px;
  font-weight: 600;
  color: #ff6b2c;
  margin-bottom: 24px;
}

.about-story h2 {
  font-size: 42px;
  font-weight: 800;
  margin-bottom: 24px;
  background: linear-gradient(135deg, #1e1a17, #ff6b2c);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
}

.about-quote {
  background: #fef8f3;
  padding: 24px;
  border-radius: 24px;
  margin: 24px 0;
  border-left: 3px solid #ff6b2c;
}

.about-quote i {
  color: #ff6b2c;
  font-size: 24px;
  margin-bottom: 12px;
  display: block;
}

.about-stats {
  display: flex;
  gap: 32px;
  margin-top: 32px;
}

.stat {
  text-align: center;
  flex: 1;
}

.stat-number {
  font-size: 32px;
  font-weight: 800;
  color: #ff6b2c;
  display: block;
  margin-bottom: 8px;
}

.stat span:last-child {
  color: #8a7a6a;
  font-size: 12px;
}

.about-gallery {
  background: #fefaf5;
  padding: 48px;
}

.gallery-main {
  margin-bottom: 24px;
  border-radius: 24px;
  overflow: hidden;
}

.about-image {
  width: 100%;
  height: 320px;
  background-image: url('img/9.png');
  background-size: cover;
  background-position: center;
}

.gallery-thumbs {
  display: flex;
  gap: 16px;
}

.thumb {
  flex: 1;
  height: 80px;
  border-radius: 16px;
  background-size: cover;
  background-position: center;
  cursor: pointer;
  border: 2px solid transparent;
  opacity: 0.7;
  transition: all 0.3s;
}

.thumb.active {
  border-color: #ff6b2c;
  opacity: 1;
}

.thumb[data-img="burger1"] { background-image: url('img/9.png'); }
.thumb[data-img="kitchen"] { background-image: url('img/kitchen.jpg'); }
.thumb[data-img="team"] { background-image: url('img/team.jpg'); }

/*  LOCATIONS PAGE  */
.location-card {
  position: relative;
}

.coming-soon-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: #ffb347;
  color: #1e1a17;
  font-size: 10px;
  font-weight: 800;
  padding: 6px 14px;
  border-radius: 30px;
}

.main-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: #ffd700;
  color: #1e1a17;
  font-size: 10px;
  font-weight: 800;
  padding: 6px 14px;
  border-radius: 30px;
}

.location-icon {
  width: 70px;
  height: 70px;
  background: rgba(255, 107, 44, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.location-icon i {
  font-size: 32px;
  color: #ff6b2c;
}

.location-name {
  font-size: 24px;
  font-weight: 800;
  margin-bottom: 16px;
  color: #1e1a17;
}

.location-address,
.location-hours {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
  color: #6a5a4a;
  font-size: 14px;
}

.location-address i,
.location-hours i {
  width: 20px;
  color: #ff6b2c;
}

.location-features {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 20px 0;
}

.feature-tag {
  background: rgba(255, 107, 44, 0.1);
  padding: 4px 12px;
  border-radius: 30px;
  font-size: 11px;
  font-weight: 600;
  color: #ff6b2c;
}

.location-contact {
  background: #fefaf5;
  border-radius: 20px;
  padding: 16px;
  margin: 20px 0;
}

.contact-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
  font-size: 13px;
  color: #6a5a4a;
}

.contact-row i {
  width: 20px;
  color: #ff6b2c;
}

.location-actions {
  display: flex;
  gap: 12px;
  margin-top: 20px;
}

.location-btn {
  flex: 1;
  background: none;
  border: 1px solid #f0e6df;
  padding: 12px;
  border-radius: 40px;
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
  color: #ff6b2c;
  transition: all 0.2s;
}

.location-btn:hover {
  background: #ff6b2c;
  color: #ffffff;
  border-color: #ff6b2c;
}

/*  OFFERS PAGE  */
.offer-card {
  text-align: center;
  position: relative;
}

.offer-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  background: #ff6b2c;
  color: #ffffff;
  font-size: 10px;
  font-weight: 800;
  padding: 4px 10px;
  border-radius: 20px;
}

.offer-icon {
  width: 80px;
  height: 80px;
  background: rgba(255, 107, 44, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.offer-icon i {
  font-size: 36px;
  color: #ff6b2c;
}

.offer-discount {
  font-size: 48px;
  font-weight: 900;
  color: #ff6b2c;
  margin-bottom: 12px;
}

.offer-title {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 12px;
  color: #1e1a17;
}

.offer-desc {
  color: #8a7a6a;
  font-size: 14px;
  margin-bottom: 24px;
}

.offer-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding-top: 16px;
  border-top: 1px solid #f0e6df;
}

.offer-code {
  background: #f5f0eb;
  padding: 8px 16px;
  border-radius: 40px;
  font-size: 13px;
  font-weight: 700;
  color: #ff6b2c;
  font-family: monospace;
}

.offer-btn {
  background: none;
  border: 1px solid #ff6b2c;
  padding: 8px 16px;
  border-radius: 40px;
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
  color: #ff6b2c;
  transition: all 0.2s;
}

.offer-btn:hover {
  background: #ff6b2c;
  color: #ffffff;
}

/*  CONTACT PAGE  */
.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  margin-top: 32px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 14px;
  margin-bottom: 16px;
  border-radius: 40px;
  background: #fefaf5;
  border: 1px solid #f0e6df;
  color: #1e1a17;
}

.contact-form textarea {
  border-radius: 24px;
  resize: vertical;
}

.contact-info p {
  margin: 16px 0;
  display: flex;
  align-items: center;
  gap: 12px;
  color: #6a5a4a;
}

.contact-info i {
  width: 24px;
  color: #ff6b2c;
}

.contact-success {
  background: #e8f5e9;
  padding: 16px 24px;
  border-radius: 20px;
  margin-top: 32px;
  display: none;
  color: #2b9348;
}

.contact-success.show {
  display: block;
}

/*  CART SIDEBAR  */
.cart-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 200;
  display: none;
}

.cart-sidebar {
  position: fixed;
  top: 0;
  right: 0;
  width: 450px;
  max-width: 90%;
  height: 100%;
  background: #ffffff;
  z-index: 201;
  padding: 24px;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.3s;
  border-left: 2px solid #ff6b2c;
}

.cart-sidebar.open {
  transform: translateX(0);
}

.cart-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 24px;
  color: #1e1a17;
}

.close-btn {
  background: none;
  border: none;
  font-size: 32px;
  cursor: pointer;
  color: #8a7a6a;
}

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

.cart-item {
  display: flex;
  justify-content: space-between;
  padding: 12px 0;
  border-bottom: 1px solid #f0e6df;
  color: #4a3a2a;
}

.cart-total {
  font-size: 24px;
  font-weight: 800;
  margin: 20px 0;
  padding-top: 16px;
  border-top: 2px solid #ff6b2c;
  color: #ff6b2c;
}

/*  FOOTER - PROFESSIONAL FULL WIDTH  */
.footer {
  background: #1e1a17;
  padding: 60px 32px 0;
  margin-top: 60px;
  width: 100%;
  position: relative;
}

.footer-container {
  max-width: 1400px;
  width: 90%;
  margin: 0 auto;
}

.footer-main {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand {
  max-width: 280px;
}

.footer-logo {
  font-size: 26px;
  font-weight: 800;
  margin-bottom: 12px;
  color: #ffffff;
  letter-spacing: -0.5px;
}

.footer-logo span {
  color: #ff6b2c;
  background: none;
}

.footer-brand p {
  color: #aaa;
  font-size: 13px;
  line-height: 1.6;
  margin-bottom: 20px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
}

.footer-links-column {
  min-width: 120px;
}

.footer-links-column h4 {
  color: #ffffff;
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 20px;
  letter-spacing: 0.5px;
}

.footer-links-column a {
  display: block;
  color: #aaa;
  text-decoration: none;
  font-size: 13px;
  margin-bottom: 12px;
  transition: all 0.2s;
}

.footer-links-column a:hover {
  color: #ff6b2c;
  transform: translateX(5px);
}

body.rtl .footer-links-column a:hover {
  transform: translateX(-5px);
}

.footer-contact {
  max-width: 280px;
}

.footer-contact h4 {
  color: #ffffff;
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 20px;
  letter-spacing: 0.5px;
}

.footer-contact p {
  color: #aaa;
  font-size: 13px;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-contact i {
  width: 24px;
  color: #ff6b2c;
  font-size: 14px;
}

.footer-social {
  margin-top: 20px;
  display: flex;
  gap: 16px;
}

.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  color: #aaa;
  font-size: 18px;
  transition: all 0.3s;
}

.footer-social a:hover {
  background: #ff6b2c;
  color: #ffffff;
  transform: translateY(-3px);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  padding: 25px 0 30px;
}

.footer-bottom p {
  color: #888;
  font-size: 12px;
}

.footer-legal {
  display: flex;
  gap: 24px;
}

.footer-legal a {
  color: #888;
  text-decoration: none;
  font-size: 12px;
  transition: color 0.2s;
}

.footer-legal a:hover {
  color: #ff6b2c;
}

/* Remove white space below footer */
html, body {
  min-height: 100vh;
}

#app {
  width: 100%;
  max-width: 100%;
  margin: 0;
  padding: 0;
  background: #fefaf5;
  overflow-x: hidden;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

/* Push footer to bottom */
main {
  flex: 1;
}

/* Responsive Footer */
@media (max-width: 1024px) {
  .footer-main {
    gap: 30px;
  }
  
  .footer-links {
    gap: 30px;
  }
}

@media (max-width: 768px) {
  .footer {
    padding: 40px 24px 0;
    margin-top: 40px;
  }
  
  .footer-main {
    flex-direction: column;
    gap: 30px;
    text-align: center;
  }
  
  .footer-brand {
    max-width: 100%;
    text-align: center;
  }
  
  .footer-links {
    justify-content: center;
    text-align: center;
    gap: 30px;
  }
  
  .footer-contact {
    max-width: 100%;
    text-align: center;
  }
  
  .footer-contact p {
    justify-content: center;
  }
  
  .footer-social {
    justify-content: center;
  }
  
  .footer-bottom {
    flex-direction: column;
    text-align: center;
    padding: 20px 0 25px;
  }
  
  .footer-legal {
    justify-content: center;
  }
}

/*  RESPONSIVE - FULL WIDTH ON ALL DEVICES  */
@media (max-width: 1024px) {
  .header-container {
    width: 95%;
    padding: 0 16px;
  }
  
  .features,
  .page-container {
    width: 95%;
    padding: 40px 0;
  }
  
  .trust-badges {
    width: 95%;
    margin: -30px auto 0;
    padding: 15px 20px;
    gap: 20px;
  }
  
  .hero-content {
    width: 95%;
    padding: 0 20px;
  }
  
  .nav-links-wrapper {
    position: fixed;
    top: 0;
    left: -100%;
    width: 280px;
    height: 100vh;
    background: #ffffff;
    flex-direction: column;
    align-items: flex-start;
    padding: 80px 24px;
    transition: left 0.3s;
    z-index: 999;
    box-shadow: 2px 0 20px rgba(0, 0, 0, 0.1);
  }
  
  .nav-links-wrapper.open {
    left: 0;
  }
  
  .mobile-menu-toggle {
    display: flex;
  }
  
  .hero h1 {
    font-size: 44px;
  }
}

@media (max-width: 768px) {
  .header-container {
    width: 100%;
    padding: 0 16px;
  }
  
  .hero {
    padding: 60px 16px;
  }
  
  .hero h1 {
    font-size: 36px;
  }
  
  .hero-description {
    font-size: 16px;
  }
  
  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .btn-primary,
  .btn-outline {
    padding: 12px 28px;
    font-size: 14px;
    width: 100%;
    max-width: 250px;
  }
  
  .trust-badges {
    flex-direction: column;
    align-items: center;
    text-align: center;
    border-radius: 30px;
    width: 90%;
    margin: -20px auto 0;
  }
  
  .features {
    grid-template-columns: 1fr;
    width: 90%;
    padding: 40px 0;
  }
  
  .menu-grid,
  .combos-grid,
  .locations-grid,
  .offers-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .about-panel {
    grid-template-columns: 1fr;
  }
  
  .about-story {
    order: 2;
    padding: 32px;
  }
  
  .about-gallery {
    order: 1;
    padding: 32px;
  }
  
  .about-story h2 {
    font-size: 32px;
  }
  
  .about-stats {
    flex-direction: column;
    gap: 20px;
  }
  
  .contact-wrapper {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  
  .footer {
    padding: 40px 24px 20px;
  }
  
  .footer-container {
    width: 100%;
  }
  
  .footer-main {
    flex-direction: column;
    text-align: center;
    gap: 30px;
  }
  
  .footer-links {
    justify-content: center;
  }
  
  .footer-social {
    justify-content: center;
  }
  
  .builder-panel,
  .deals-panel,
  .about-panel,
  .contact-panel {
    padding: 32px 24px;
  }
  
  .builder-options {
    flex-direction: column;
  }
  
  .page-container {
    width: 90%;
    padding: 32px 0;
  }
}

/* RTL Support */
body.rtl .nav-links-wrapper {
  left: auto;
  right: -100%;
}

body.rtl .nav-links-wrapper.open {
  left: auto;
  right: 0;
}

body.rtl .cart-sidebar {
  right: auto;
  left: 0;
  border-left: none;
  border-right: 2px solid #ff6b2c;
  transform: translateX(-100%);
}

body.rtl .cart-sidebar.open {
  transform: translateX(0);
}

/* For very large screens */
@media (min-width: 1920px) {
  .header-container,
  .features,
  .page-container,
  .footer-container {
    max-width: 1600px;
  }
}

/* Mobile Menu Styles */
@media (max-width: 1024px) {
  .nav-links-wrapper {
    position: fixed;
    top: 0;
    left: -100%;
    width: 280px;
    height: 100vh;
    background: #ffffff;
    flex-direction: column;
    align-items: flex-start;
    padding: 80px 24px 24px;
    gap: 12px;
    transition: left 0.3s ease;
    z-index: 999;
    box-shadow: 2px 0 20px rgba(0, 0, 0, 0.1);
  }
  
  .nav-links-wrapper.open {
    left: 0;
  }
  
  .mobile-menu-toggle {
    display: flex;
    z-index: 1000;
    position: relative;
  }
  
  .nav-link {
    width: 100%;
    padding: 12px 20px;
    font-size: 16px;
  }
  
  .nav-actions {
    margin-left: auto;
  }
}

/* RTL Support for mobile menu */
body.rtl .nav-links-wrapper {
  left: auto;
  right: -100%;
}

body.rtl .nav-links-wrapper.open {
  left: auto;
  right: 0;
}

/*  COOKIE CONSENT BANNER  */
.cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #1e1a17;
  color: #ffffff;
  padding: 20px 32px;
  z-index: 1000;
  transform: translateY(100%);
  transition: transform 0.4s ease;
  box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.2);
  border-top: 2px solid #ff6b2c;
}

.cookie-consent.show {
  transform: translateY(0);
}

.cookie-content {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.cookie-text {
  display: flex;
  align-items: center;
  gap: 15px;
  flex: 2;
}

.cookie-text i {
  font-size: 32px;
  color: #ffb347;
}

.cookie-text strong {
  font-size: 16px;
  color: #ffb347;
}

.cookie-text p {
  font-size: 13px;
  color: #ccc;
  margin-top: 4px;
  line-height: 1.4;
}

.cookie-buttons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.cookie-btn {
  padding: 10px 24px;
  border-radius: 40px;
  font-weight: 600;
  font-size: 13px;
  cursor: pointer;
  transition: all 0.2s;
  border: none;
}

.cookie-btn.accept {
  background: #ff6b2c;
  color: #ffffff;
}

.cookie-btn.accept:hover {
  background: #ff8c42;
  transform: translateY(-2px);
}

.cookie-btn.decline {
  background: transparent;
  border: 1px solid #ff6b2c;
  color: #ffb347;
}

.cookie-btn.decline:hover {
  background: rgba(255, 107, 44, 0.2);
}

.cookie-btn.customize {
  background: transparent;
  border: 1px solid #666;
  color: #aaa;
}

.cookie-btn.customize:hover {
  border-color: #ffb347;
  color: #ffb347;
}

/* Cookie Modal */
.cookie-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  z-index: 1001;
  justify-content: center;
  align-items: center;
}

.cookie-modal.show {
  display: flex;
}

.cookie-modal-content {
  background: #ffffff;
  border-radius: 28px;
  max-width: 550px;
  width: 90%;
  max-height: 80vh;
  overflow: hidden;
  animation: modalFadeIn 0.3s ease;
}

@keyframes modalFadeIn {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.cookie-modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 24px;
  border-bottom: 1px solid #f0e6df;
  background: #ffffff;
}

.cookie-modal-header h3 {
  font-size: 20px;
  font-weight: 700;
  color: #1e1a17;
}

.close-modal {
  background: none;
  border: none;
  font-size: 28px;
  cursor: pointer;
  color: #8a7a6a;
  transition: color 0.2s;
}

.close-modal:hover {
  color: #ff6b2c;
}

.cookie-modal-body {
  padding: 24px;
  max-height: 400px;
  overflow-y: auto;
}

.cookie-option {
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 1px solid #f0e6df;
}

.cookie-option:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.cookie-option label {
  display: block;
  cursor: pointer;
}

.cookie-option input[type="checkbox"] {
  width: 18px;
  height: 18px;
  margin-right: 12px;
  cursor: pointer;
  accent-color: #ff6b2c;
}

.cookie-option strong {
  font-size: 15px;
  color: #1e1a17;
}

.cookie-option p {
  font-size: 12px;
  color: #8a7a6a;
  margin-top: 6px;
  margin-left: 30px;
}

.cookie-modal-footer {
  padding: 20px 24px;
  border-top: 1px solid #f0e6df;
  display: flex;
  gap: 12px;
  justify-content: flex-end;
  background: #fefaf5;
}

/* Responsive Cookie Banner */
@media (max-width: 768px) {
  .cookie-consent {
    padding: 16px 20px;
  }
  
  .cookie-content {
    flex-direction: column;
    text-align: center;
  }
  
  .cookie-text {
    flex-direction: column;
    text-align: center;
  }
  
  .cookie-buttons {
    justify-content: center;
  }
  
  .cookie-btn {
    padding: 8px 18px;
    font-size: 12px;
  }
}

/*  FLOATING WHATSAPP BUTTON  */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background: #25D366;
  color: white;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  z-index: 999;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
  transition: all 0.3s ease;
  text-decoration: none;
  animation: whatsapp-pulse 2s infinite;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  background: #20b859;
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}

/* Tooltip on hover */
.whatsapp-tooltip {
  position: absolute;
  right: 70px;
  background: #1e1a17;
  color: #fff;
  padding: 8px 15px;
  border-radius: 40px;
  font-size: 12px;
  font-weight: 500;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.whatsapp-tooltip::after {
  content: '';
  position: absolute;
  right: -8px;
  top: 50%;
  transform: translateY(-50%);
  border-width: 5px;
  border-style: solid;
  border-color: transparent transparent transparent #1e1a17;
}

.whatsapp-float:hover .whatsapp-tooltip {
  opacity: 1;
  visibility: visible;
  right: 75px;
}

/* Pulse animation */
@keyframes whatsapp-pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5);
  }
  70% {
    box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}

/* For mobile devices */
@media (max-width: 768px) {
  .whatsapp-float {
    bottom: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    font-size: 28px;
  }
  
  .whatsapp-tooltip {
    display: none;
  }
}

/* RTL Support for Arabic */
body.rtl .whatsapp-float {
  right: auto;
  left: 30px;
}

body.rtl .whatsapp-tooltip {
  right: auto;
  left: 70px;
}

body.rtl .whatsapp-tooltip::after {
  right: auto;
  left: -8px;
  border-color: transparent #1e1a17 transparent transparent;
}

body.rtl .whatsapp-float:hover .whatsapp-tooltip {
  right: auto;
  left: 75px;
}

@media (max-width: 768px) {
  body.rtl .whatsapp-float {
    right: auto;
    left: 20px;
  }
}
/*  STORE STATUS BADGE  */
.store-status-container {
  display: flex;
  justify-content: center;
  margin-bottom: 20px;
}

.store-status {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 20px;
  border-radius: 40px;
  font-size: 13px;
  font-weight: 600;
  background: #ffffff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.store-status i {
  font-size: 14px;
}

.store-status.open {
  background: #e8f5e9;
  color: #2b9348;
  border: 1px solid rgba(43, 147, 72, 0.3);
}

.store-status.closed {
  background: #ffebee;
  color: #c62828;
  border: 1px solid rgba(198, 40, 40, 0.3);
}

.store-status.closing-soon {
  background: #fff8e1;
  color: #f57c00;
  border: 1px solid rgba(245, 124, 0, 0.3);
}

.store-status.loading {
  background: #f5f0eb;
  color: #8a7a6a;
}

@keyframes pulse-green {
  0% { opacity: 0.6; }
  50% { opacity: 1; }
  100% { opacity: 0.6; }
}

@media (max-width: 768px) {
  .store-status {
    font-size: 11px;
    padding: 6px 14px;
  }
}
/*  CATEGORY FILTERS  */
.category-filters {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 40px;
}

.category-btn {
  background: #f5f0eb;
  border: none;
  padding: 10px 24px;
  border-radius: 40px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
  color: #4a3a2a;
}

.category-btn:hover {
  background: #ff6b2c;
  color: #ffffff;
  transform: translateY(-2px);
}

.category-btn.active {
  background: #ff6b2c;
  color: #ffffff;
  box-shadow: 0 4px 12px rgba(255, 107, 44, 0.3);
}

/* Category badge on menu cards */
.menu-category-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background: rgba(255, 107, 44, 0.9);
  color: #ffffff;
  font-size: 10px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 20px;
  letter-spacing: 0.5px;
  z-index: 1;
}

.menu-card {
  position: relative;
  overflow: hidden;
}

.no-items {
  text-align: center;
  padding: 60px;
  color: #aaa;
  font-size: 16px;
}

/* Responsive */
@media (max-width: 768px) {
  .category-filters {
    gap: 8px;
  }
  
  .category-btn {
    padding: 8px 16px;
    font-size: 12px;
  }
}

/*  MENU CARD -- LIGHTER BLACK */
.menu-card {
  background: #2a2420;  /* Lighter black / dark gray */
  border-radius: 28px;
  overflow: hidden;
  border: 1px solid rgba(255, 107, 44, 0.2);
  transition: all 0.3s;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.menu-card:hover {
  transform: translateY(-6px);
  border-color: #ff6b2c;
  box-shadow: 0 12px 24px rgba(255, 107, 44, 0.15);
}

/* Also update other card types to match */
.combo-card,
.location-card,
.offer-card,
.feature {
  background: #2a2420;  /* Same lighter black for consistency */
}

/* Adjust text colors for better contrast on lighter black */
.menu-title,
.combo-card h3,
.location-name,
.offer-title {
  color: #ffffff;
}

.menu-desc,
.combo-card p,
.location-address,
.offer-desc {
  color: #c0b8b0;
}

.menu-price {
  color: #ffb347;
}
/*  FEATURES SECTION - LIGHT BACKGROUND */
.features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
  padding: 64px 32px;
  max-width: 1280px;
  margin: 0 auto;
}

.feature {
  text-align: center;
  padding: 32px;
  background: #bab4b4;  /* White background */
  border-radius: 28px;
  border: 1px solid #f0e6df;
  transition: all 0.3s;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.feature:hover {
  transform: translateY(-4px);
  border-color: #ff6b2c;
  box-shadow: 0 12px 24px rgba(255, 107, 44, 0.1);
}

.feature i {
  font-size: 48px;
  color: #ff6b2c;
  margin-bottom: 16px;
}

.feature h3 {
  font-size: 22px;
  margin-bottom: 12px;
  color: #1e1a17;  /* Dark text for light background */
}

.feature p {
  color: #6a5a4a;  /* Medium dark text for light background */
  font-size: 14px;
}

/*  ABOUT PAGE - PROFESSIONAL ENHANCED  */

/* Main About Panel */
.about-panel {
  background: linear-gradient(135deg, #ffffff 0%, #fefaf5 100%);
  border-radius: 48px;
  padding: 0;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border: 1px solid #f0e6df;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
}

/* Story Section - Left Side */
.about-story {
  padding: 56px 48px;
  background: #ffffff;
}

/* Story Badge */
.story-badge {
  display: inline-block;
  background: linear-gradient(135deg, rgba(255, 107, 44, 0.12), rgba(255, 179, 71, 0.08));
  padding: 8px 20px;
  border-radius: 60px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
  color: #ff6b2c;
  margin-bottom: 24px;
  text-transform: uppercase;
  backdrop-filter: blur(4px);
  border: 1px solid rgba(255, 107, 44, 0.2);
}

/* About Title */
.about-title {
  font-size: 48px;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 28px;
  background: linear-gradient(135deg, #1e1a17, #ff6b2c);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
}

/* Quote Section */
.about-quote {
  background: linear-gradient(135deg, #fef8f3, #fff5ed);
  padding: 28px 32px;
  border-radius: 28px;
  margin: 28px 0;
  border-left: 4px solid #ff6b2c;
  position: relative;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
}

.about-quote:hover {
  transform: translateX(6px);
  box-shadow: 0 8px 25px rgba(255, 107, 44, 0.08);
}

.about-quote i {
  color: #ff6b2c;
  font-size: 28px;
  opacity: 0.6;
  margin-bottom: 16px;
  display: block;
}

.about-quote p {
  font-size: 18px;
  line-height: 1.6;
  color: #4a3a2a;
  font-style: italic;
  font-weight: 500;
}

/* About Text */
.about-text {
  color: #6a5a4a;
  line-height: 1.7;
  margin-bottom: 36px;
  font-size: 16px;
}

/* Statistics Section */
.about-stats {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
  margin-top: 40px;
  padding-top: 16px;
  border-top: 2px solid #f0e6df;
}

.stat {
  text-align: center;
  flex: 1;
  padding: 8px;
  transition: all 0.3s ease;
}

.stat:hover {
  transform: translateY(-5px);
}

.stat-number {
  font-size: 38px;
  font-weight: 800;
  color: #ff6b2c;
  margin-bottom: 10px;
  display: block;
  position: relative;
  display: inline-block;
}

.stat-number::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, #ff6b2c, #ffb347);
  transform: scaleX(0);
  transition: transform 0.3s ease;
  border-radius: 2px;
}

.stat:hover .stat-number::after {
  transform: scaleX(1);
}

.stat-label {
  display: block;
  color: #8a7a6a;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 12px;
}

/* Gallery Section - Right Side */
.about-gallery {
  background: linear-gradient(135deg, #fefaf5, #f5ede5);
  padding: 56px 48px;
  display: flex;
  flex-direction: column;
}

.gallery-main {
  margin-bottom: 24px;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 20px 35px -10px rgba(0, 0, 0, 0.15);
}

.about-image {
  width: 100%;
  height: 340px;
  background-size: cover;
  background-position: center;
  transition: transform 0.5s ease;
}

.about-image:hover {
  transform: scale(1.03);
}

.gallery-thumbs {
  display: flex;
  gap: 16px;
  margin-top: 8px;
}

.thumb {
  flex: 1;
  height: 85px;
  border-radius: 20px;
  background-size: cover;
  background-position: center;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  opacity: 0.75;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.thumb:hover {
  transform: translateY(-4px);
  opacity: 1;
}

.thumb.active {
  border-color: #ff6b2c;
  opacity: 1;
  transform: scale(1.02);
  box-shadow: 0 8px 20px rgba(255, 107, 44, 0.2);
}

/* Thumbnail Images */
.thumb[data-img="burger1"] {
  background-image: url('img/9.png');
}

.thumb[data-img="kitchen"] {
  background-image: url('img/kitchen.jpg');
}

.thumb[data-img="team"] {
  background-image: url('img/team.jpg');
}

/* Responsive Adjustments */
@media (max-width: 1024px) {
  .about-panel {
    grid-template-columns: 1fr;
  }
  
  .about-story {
    order: 2;
    padding: 40px 32px;
  }
  
  .about-gallery {
    order: 1;
    padding: 40px 32px;
  }
  
  .about-title {
    font-size: 36px;
  }
}

@media (max-width: 768px) {
  .about-story {
    padding: 32px 24px;
  }
  
  .about-gallery {
    padding: 32px 24px;
  }
  
  .about-title {
    font-size: 30px;
  }
  
  .about-quote p {
    font-size: 16px;
  }
  
  .about-stats {
    flex-direction: column;
    gap: 24px;
  }
  
  .stat-number {
    font-size: 32px;
  }
  
  .gallery-thumbs {
    gap: 12px;
  }
  
  .thumb {
    height: 65px;
  }
}

/* RTL Support */
body.rtl .about-quote {
  border-left: none;
  border-right: 4px solid #ff6b2c;
}

body.rtl .about-quote:hover {
  transform: translateX(-6px);
}

.stat-icon {
  font-size: 28px;
  margin-bottom: 8px;
  display: block;
}