.menu-section {
    background: var(--light3);
    padding: 3rem 1rem;
    text-align: center;
}

.section-title {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
  color: #222;
}

.section-subtitle {
  font-size: 1.1rem;
  color: #666;
  margin-bottom: 2rem;
}

.slider-wrapper {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  overflow: hidden;
  padding: 0 2rem;
}

.slider-track {
  display: flex;
  gap: 1.5rem;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding-bottom: 1rem;
  cursor: grab;
}

.menu-slide {
  flex: 0 0 85%;
  max-width: 320px;
  background: var(--light);
  border-radius: 16px;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
}

.menu-slide img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-top-left-radius: 16px;
  border-top-right-radius: 16px;
}

.menu-details {
  padding: 1.2rem;
}

.menu-details h3 {
  font-size: 1.2rem;
  margin: 0.5rem 0;
  color: #222;
}

.menu-details p {
  font-size: 0.95rem;
  color: #555;
}

.price {
    color: var(--brand);
    font-size: 1rem;
    font-weight: bold;
    margin-top: 0.75rem;
    display: inline-block;
}

.slider-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: #fff;
  border: none;
  font-size: 2rem;
  padding: 0.25rem 0.75rem;
  border-radius: 50%;
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
  cursor: pointer;
  z-index: 2;
  color: #222;
  transition: background 0.3s;
}

.slider-nav:hover {
  background: #eee;
}

.slider-nav.left {
  left: 0;
}

.slider-nav.right {
  right: 0;
}

@media (min-width: 768px) {
  .menu-slide {
    flex: 0 0 calc(33.333% - 1rem);
  }
}



.section-title {
  font-size: 2.2rem;
  color: #a52a2a;
}
.section-subtitle {
  font-size: 1.1rem;
  margin-bottom: 2rem;
  color: #444;
}
.specials-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}
.special-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
  transition: transform 0.2s ease;
}
.special-card:hover {
  transform: translateY(-5px);
}
.special-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}
.special-info {
  padding: 1rem;
}
.special-info h3 {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
  color: #222;
}
.special-info p {
  font-size: 1rem;
  color: #666;
  margin-bottom: 0.5rem;
}

@media (min-width: 768px) {
  .specials-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}


.store-section {
  /* background-color: #fffaf5; */
  background-color: var(--light3);
  padding: 3rem 1rem;
}
.store-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}
.store-image img {
  width: 100%;
  max-width: 600px;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}
.store-text {
  max-width: 700px;
  text-align: center;
}
.store-text h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: #b03e2f;
}
.store-text p {
  font-size: 1rem;
  color: #444;
  line-height: 1.6;
}

@media (min-width: 768px) {
  .store-wrapper {
    flex-direction: row;
    justify-content: center;
    text-align: left;
  }
  .store-text {
    padding-left: 2rem;
  }
}