/* Reset dan Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: #323131;
  background-color: #fff;
  font-size: 16px;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Header Styles */
.header {
  background: #fff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
}

.header-top {
  background: #a91d47;
  color: white;
  padding: 8px 0;
  font-size: 16px;
  width: 100%;
}

.contact-info {
  display: flex;
  justify-content: space-between;
  padding: 0 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.contact-info span {
  display: flex;
  align-items: center;
  gap: 8px;
}

.header-main {
  padding: 15px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.logo img {
  height: 60px;
  width: auto;
}

.search-container {
  flex: 1;
  max-width: 400px;
  position: relative;
}

.search-container input {
  width: 100%;
  padding: 12px 50px 12px 20px;
  border: 2px solid #e0e0e0;
  border-radius: 25px;
  font-size: 16px;
  outline: none;
  transition: border-color 0.3s;
}

.search-container input:focus {
  border-color: #a91d47;
}

.search-container button {
  position: absolute;
  right: 5px;
  top: 50%;
  transform: translateY(-50%);
  background: #a91d47;
  color: white;
  border: none;
  padding: 8px 15px;
  border-radius: 20px;
  cursor: pointer;
  transition: background 0.3s;
}

.search-container button:hover {
  background: #8b1538;
}

/* Search Autocomplete Styles - DITAMBAHKAN */
.search-suggestions {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: white;
  border: 1px solid #e0e0e0;
  border-top: none;
  border-radius: 0 0 15px 15px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  max-height: 300px;
  overflow-y: auto;
  z-index: 1001;
  display: none;
}

.suggestion-item {
  padding: 12px 20px;
  cursor: pointer;
  border-bottom: 1px solid #f0f0f0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background-color 0.2s;
}

.suggestion-item:hover,
.suggestion-item.highlighted {
  background-color: #f8f9fa;
}

.suggestion-item:last-child {
  border-bottom: none;
}

.suggestion-content {
  flex: 1;
}

.suggestion-name {
  font-weight: 500;
  color: #333;
  margin-bottom: 2px;
}

.suggestion-name mark {
  background-color: #fff3cd;
  color: #856404;
  padding: 1px 2px;
  border-radius: 2px;
}

.suggestion-category {
  font-size: 12px;
  color: #666;
  background: #e9ecef;
  padding: 2px 8px;
  border-radius: 10px;
  display: inline-block;
}

.suggestion-icon {
  color: #a91d47;
  font-size: 14px;
  opacity: 0.7;
}

.no-suggestions {
  padding: 15px 20px;
  text-align: center;
  color: #666;
  font-style: italic;
}

/* Loading Animation - DITAMBAHKAN */
.loading-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 60px 20px;
  text-align: center;
}

.loading {
  width: 50px;
  height: 50px;
  border: 4px solid #f3f3f3;
  border-top: 4px solid #a91d47;
  border-radius: 50%;
  animation: spin 1s linear infinite;
  margin-bottom: 20px;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.navigation ul {
  display: flex;
  list-style: none;
  gap: 30px;
}

.nav-link {
  text-decoration: none;
  color: #333;
  font-weight: 500;
  padding: 10px 0;
  position: relative;
  transition: color 0.3s;
  font-size: 18px;
}

.nav-link:hover,
.nav-link.active {
  color: #a91d47;
}

.nav-link.active::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: #a91d47;
}

/* Page Header */
.page-header {
  background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)),
    url("https://hebbkx1anhila5yf.public.blob.vercel-storage.com/makanan-eDzkSSfWehzXxcyKeZUu0HsN5pgyta.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: white;
  padding: 150px 0 80px;
  text-align: center;
  margin-top: 120px;
  position: relative;
}

.page-header .container {
  position: relative;
  z-index: 2;
}

.page-header h1 {
  font-size: 3.5rem;
  margin-bottom: 20px;
  font-weight: 700;
}

.page-header p {
  font-size: 1.5rem;
  opacity: 0.9;
}

/* Hero Section (for homepage) */
.hero {
  margin-top: 120px;
  background: linear-gradient(135deg, #f8f9fa, #e9ecef);
  padding: 60px 0;
}

.hero-image {
  text-align: center;
  margin-bottom: 40px;
}

.hero-image img {
  max-width: 100%;
  height: auto;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.hero-content {
  text-align: center;
}

.hero-content h1 {
  font-size: 3.5rem;
  color: #85193c;
  margin-bottom: 30px;
  font-weight: bold;
}

.hero-description {
  font-size: 1.25rem;
  color: #555;
  max-width: 800px;
  margin: 0 auto 40px;
  line-height: 1.8;
}

.motto h2 {
  font-size: 2.2rem;
  color: #d4a574;
  font-style: italic;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

/* About Hero */
.about-hero {
  padding: 80px 0;
  background: #f8f9fa;
}

.about-hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-hero-text h2 {
  font-size: 3rem;
  color: #85193c;
  margin-bottom: 30px;
  font-weight: 700;
}

.about-hero-text p {
  font-size: 1.25rem;
  line-height: 1.8;
  margin-bottom: 30px;
  color: #555;
}

.motto-highlight {
  background: linear-gradient(135deg, #85193c, #a91d47);
  color: white;
  padding: 25px;
  border-radius: 10px;
  text-align: center;
  font-size: 1.5rem;
  font-weight: 600;
  font-style: italic;
}

.motto-highlight i {
  color: #d4a574;
  margin: 0 10px;
}

.about-hero-image {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.about-hero-image img {
  width: 100%;
  max-width: 400px;
  height: auto;
  object-fit: contain;
  margin-left: auto;
  display: block;
}

/* Section Title */
.section-title {
  text-align: center;
  font-size: 3rem;
  color: #85193c;
  margin-bottom: 70px;
  font-weight: 700;
  position: relative;
}

.section-title::after {
  content: "";
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 4px;
  background: #d4a574;
  border-radius: 2px;
}

/* Products Section */
.products {
  padding: 80px 0;
  background: white;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-bottom: 50px;
}

.product-card {
  background: white;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s, box-shadow 0.3s;
}

.product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.product-image {
  height: 200px;
  overflow: hidden;
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-info {
  padding: 20px;
}

.product-category {
  color: #85193c;
  font-size: 1rem;
  font-weight: 500;
  margin-bottom: 5px;
}

.product-name {
  font-size: 1.3rem;
  font-weight: bold;
  color: #333;
  margin-bottom: 10px;
}

.product-price {
  font-size: 1.4rem;
  font-weight: bold;
  color: #85193c;
  margin-bottom: 15px;
}

.btn-read-more {
  background: #85193c;
  color: white;
  border: none;
  padding: 12px 24px;
  border-radius: 20px;
  cursor: pointer;
  font-size: 1rem;
  transition: background 0.3s;
  width: 100%;
}

.btn-read-more:hover {
  background: #6d1430;
}

.view-all {
  text-align: center;
}

.btn-view-all {
  background: #d4a574;
  color: white;
  border: none;
  padding: 15px 40px;
  border-radius: 30px;
  font-size: 1.2rem;
  cursor: pointer;
  transition: background 0.3s;
}

.btn-view-all:hover {
  background: #c19660;
}

/* Menu Content Styles */
.menu-content {
  background: white;
  min-height: 100vh;
  padding: 40px 0;
}

.menu-section {
  margin-bottom: 80px;
}

.menu-section-title {
  font-size: 2.8rem;
  color: #a91d47;
  text-align: center;
  margin-bottom: 50px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  position: relative;
}

.menu-section-title::after {
  content: "";
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, #ffd700, #a91d47);
  border-radius: 2px;
}

.menu-section-title i {
  color: #ffd700;
  font-size: 2.2rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

.menu-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  padding: 0;
}

.menu-card {
  background: white;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.menu-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
  border-color: #a91d47;
}

.menu-card-link {
  text-decoration: none;
  color: inherit;
  display: block;
}

.menu-image {
  height: 250px;
  overflow: hidden;
  position: relative;
}

.menu-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.menu-card:hover .menu-image img {
  transform: scale(1.05);
}

.menu-info {
  padding: 30px 25px;
  text-align: center;
}

.menu-info h4 {
  font-size: 1.4rem;
  color: #333;
  margin-bottom: 15px;
  font-weight: 600;
  line-height: 1.3;
}

.menu-price {
  font-size: 1.3rem;
  color: #a91d47;
  font-weight: 700;
  margin: 0;
}

/* Vision Mission */
.vision-mission {
  padding: 80px 0;
  background: white;
}

.vm-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}

.vm-item {
  text-align: center;
  padding: 40px;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s;
}

.vm-item:hover {
  transform: translateY(-5px);
}

.vm-item:first-child {
  background: linear-gradient(135deg, #85193c, #a91d47);
  color: white;
}

.vm-item:last-child {
  background: linear-gradient(135deg, #d4a574, #c19660);
  color: #333;
}

.vm-icon {
  font-size: 3.5rem;
  margin-bottom: 20px;
}

.vm-item h3 {
  font-size: 2.2rem;
  margin-bottom: 20px;
  font-weight: 700;
}

.vm-item p {
  font-size: 1.25rem;
  line-height: 1.7;
}

/* Our Values */
.our-values {
  padding: 80px 0;
  background: #f8f9fa;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
}

.value-item {
  background: white;
  padding: 40px 30px;
  border-radius: 15px;
  text-align: center;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s, box-shadow 0.3s;
}

.value-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.value-icon {
  width: 90px;
  height: 90px;
  background: linear-gradient(135deg, #85193c, #a91d47);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
  font-size: 2.5rem;
  color: white;
}

.value-item h3 {
  font-size: 1.8rem;
  color: #85193c;
  margin-bottom: 15px;
  font-weight: 600;
}

.value-item p {
  font-size: 1.2rem;
  color: #666;
  line-height: 1.6;
}

/* Timeline */
.our-story {
  padding: 80px 0;
  background: white;
}

.timeline {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
}

.timeline::before {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 100%;
  background: #85193c;
  border-radius: 2px;
}

.timeline-item {
  position: relative;
  margin-bottom: 50px;
  display: flex;
  align-items: center;
}

.timeline-item:nth-child(odd) {
  flex-direction: row;
}

.timeline-item:nth-child(even) {
  flex-direction: row-reverse;
}

.timeline-year {
  background: #85193c;
  color: white;
  padding: 15px 25px;
  border-radius: 25px;
  font-weight: 700;
  font-size: 1.4rem;
  position: relative;
  z-index: 2;
}

.timeline-content {
  flex: 1;
  padding: 30px;
  background: #f8f9fa;
  border-radius: 15px;
  margin: 0 30px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.timeline-content h3 {
  color: #85193c;
  font-size: 1.6rem;
  margin-bottom: 10px;
  font-weight: 600;
}

.timeline-content p {
  color: #666;
  line-height: 1.6;
  font-size: 1.2rem;
}

/* Why Choose Us */
.why-choose-us {
  padding: 80px 0;
  background: #f8f9fa;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 40px;
}

.feature-item {
  background: white;
  padding: 40px 30px;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s;
  position: relative;
  overflow: hidden;
}

.feature-item:hover {
  transform: translateY(-5px);
}

.feature-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #85193c, #d4a574);
}

.feature-number {
  font-size: 3.5rem;
  font-weight: 700;
  color: #85193c;
  opacity: 0.3;
  position: absolute;
  top: 20px;
  right: 30px;
}

.feature-item h3 {
  font-size: 1.6rem;
  color: #85193c;
  margin-bottom: 15px;
  font-weight: 600;
}

.feature-item p {
  color: #666;
  line-height: 1.6;
  font-size: 1.2rem;
}

/* Our Team */
.our-team {
  padding: 80px 0;
  background: white;
}

.team-content {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 60px;
  align-items: center;
}

.team-text p {
  font-size: 1.25rem;
  line-height: 1.8;
  color: #555;
  margin-bottom: 25px;
}

.team-stats {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.stat-item {
  text-align: center;
  padding: 30px;
  background: linear-gradient(135deg, #85193c, #a91d47);
  color: white;
  border-radius: 15px;
}

.stat-number {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.stat-label {
  font-size: 1.3rem;
  opacity: 0.9;
}

/* About Section (for homepage) */
.about {
  padding: 80px 0;
  background: linear-gradient(135deg, #f8f9fa, #e9ecef);
}

.about-content {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 50px;
  align-items: center;
}

.about-text p {
  font-size: 1.25rem;
  color: #555;
  margin-bottom: 20px;
  line-height: 1.8;
}

.about-image {
  text-align: center;
}

.about-image img {
  max-width: 200px;
  height: auto;
}

/* Contact Section */
.contact {
  padding: 80px 0;
  background: white;
}

.contact-content {
  max-width: 800px;
  margin: 0 auto;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 30px;
  padding: 25px;
  background: #f8f9fa;
  border-radius: 15px;
}

.contact-item i {
  font-size: 1.8rem;
  color: #85193c;
  margin-top: 5px;
}

.contact-item h3 {
  color: #85193c;
  margin-bottom: 5px;
  font-size: 1.4rem;
}

.contact-item p {
  color: #555;
  line-height: 1.6;
  font-size: 1.2rem;
}

/* CTA Section */
.cta-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #85193c 0%, #a91d47 100%);
  color: white;
  text-align: center;
}

.cta-content h2 {
  font-size: 3rem;
  margin-bottom: 20px;
  font-weight: 700;
}

.cta-content p {
  font-size: 1.4rem;
  margin-bottom: 40px;
  opacity: 0.9;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.btn-primary,
.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 30px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.3rem;
  transition: all 0.3s;
}

.btn-primary {
  background: #25d366;
  color: white;
}

.btn-primary:hover {
  background: #128c7e;
  transform: translateY(-2px);
}

.btn-secondary {
  background: transparent;
  color: white;
  border: 2px solid white;
}

.btn-secondary:hover {
  background: white;
  color: #85193c;
}

/* Button */
.button {
  background-color: #d4a574;
  color: white;
  padding: 15px 30px;
  border-radius: 30px;
  text-decoration: none;
  font-size: 1.2rem;
  display: inline-block;
  transition: background-color 0.3s;
  font-weight: 600;
}

.button:hover {
  background-color: #c19660;
}

/* Footer */
.footer {
  background: #a91d47;
  color: white;
  padding: 60px 0 20px;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  margin-bottom: 40px;
}

.footer-logo img {
  height: 60px;
  margin-bottom: 15px;
}

.footer-logo p {
  font-style: italic;
  color: #ffd700;
  font-weight: 600;
  font-size: 1.2rem;
}

.footer h3 {
  margin-bottom: 20px;
  color: #ffd700;
  font-size: 1.5rem;
}

.footer p {
  margin-bottom: 10px;
  line-height: 1.6;
  font-size: 1.1rem;
}

.social-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.social-links a {
  color: white;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: color 0.3s;
  font-size: 1.1rem;
  padding: 8px 0;
}

.social-links a:hover {
  color: #ffd700;
}

.social-links i {
  font-size: 1.2rem;
  width: 20px;
}

.footer-bottom {
  border-top: 1px solid #c92a5a;
  padding-top: 20px;
  text-align: center;
  color: #ccc;
  font-size: 1.1rem;
}

/* Utility Classes */
.loading {
  display: inline-block;
  width: 20px;
  height: 20px;
  border: 3px solid #f3f3f3;
  border-top: 3px solid #85193c;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

/* Search Results */
.search-results {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: white;
  border-radius: 0 0 10px 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  max-height: 300px;
  overflow-y: auto;
  z-index: 1000;
}

.search-result-item {
  padding: 15px 20px;
  border-bottom: 1px solid #eee;
  cursor: pointer;
  transition: background 0.3s;
  font-size: 1.1rem;
}

.search-result-item:hover {
  background: #f8f9fa;
}

.search-result-item:last-child {
  border-bottom: none;
}

/* WhatsApp Button Section */
.whatsapp-section {
    padding: 40px 0 80px;
    background-color: #f8f9fa;
    margin-top: 20px;
}

.whatsapp-container {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    padding: 40px;
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-top: 5px solid #a91d47;
}

.whatsapp-container h2 {
    font-size: 2.5rem;
    color: #a91d47;
    margin-bottom: 20px;
    font-weight: 700;
}

.whatsapp-container p {
    font-size: 1.2rem;
    color: #555;
    margin-bottom: 30px;
    line-height: 1.6;
}

.whatsapp-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #25d366;
    color: white;
    padding: 15px 40px;
    border-radius: 30px;
    font-size: 1.3rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.3);
}

.whatsapp-button:hover {
    background: #128c7e;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(37, 211, 102, 0.4);
}

.whatsapp-button i {
    font-size: 1.5rem;
}

/* Responsive styles for WhatsApp button */
@media (max-width: 768px) {
    .whatsapp-container {
        padding: 30px 20px;
    }
    
    .whatsapp-container h2 {
        font-size: 2rem;
    }
    
    .whatsapp-button {
        padding: 12px 30px;
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .whatsapp-section {
        padding: 30px 0 60px;
    }
    
    .whatsapp-container h2 {
        font-size: 1.8rem;
    }
    
    .whatsapp-container p {
        font-size: 1.1rem;
    }
    
    .whatsapp-button {
        width: 100%;
        justify-content: center;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
  .container {
    padding: 0 15px;
  }

  .header-main {
    flex-direction: column;
    gap: 20px;
  }

  .navigation ul {
    gap: 20px;
  }

  .contact-info {
    flex-direction: column;
    gap: 10px;
    text-align: center;
    padding: 0 15px;
  }

  .page-header h1,
  .hero-content h1 {
    font-size: 2.5rem;
  }

  .motto h2 {
    font-size: 1.8rem;
  }

  .about-hero-content,
  .about-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .vm-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .timeline::before {
    left: 30px;
  }

  .timeline-item {
    flex-direction: row !important;
    padding-left: 70px;
  }

  .timeline-year {
    position: absolute;
    left: 0;
  }

  .timeline-content {
    margin: 0;
  }

  .team-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }

  .features-grid {
    grid-template-columns: 1fr;
  }

  .menu-list {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }
  
  /* Search suggestions responsive - DITAMBAHKAN */
  .search-suggestions {
    max-height: 250px;
  }

  .suggestion-item {
    padding: 10px 15px;
  }
}

@media (max-width: 480px) {
  .page-header {
    padding: 120px 0 60px;
  }

  .hero {
    padding: 40px 0;
  }

  .page-header h1,
  .hero-content h1 {
    font-size: 2.2rem;
  }

  .section-title {
    font-size: 2.4rem;
  }

  .about-hero-text h2 {
    font-size: 2.4rem;
  }

  .search-container {
    max-width: 100%;
  }

  .products,
  .about,
  .contact,
  .menu-section {
    padding: 60px 0;
  }

  .menu-list {
    grid-template-columns: 1fr;
  }
  
  /* Mobile search adjustments - DITAMBAHKAN */
  .search-suggestions {
    border-radius: 0 0 10px 10px;
    max-height: 200px;
  }

  .suggestion-item {
    padding: 8px 12px;
  }

  .suggestion-name {
    font-size: 14px;
  }

  .suggestion-category {
    font-size: 11px;
  }
}

/* Smooth scrolling */
html {
  scroll-behavior: smooth;
}

/* Responsive Design for Menu */
@media (max-width: 768px) {
  .menu-section-title {
    font-size: 2.2rem;
    flex-direction: column;
    gap: 10px;
  }

  .menu-section-title i {
    font-size: 2rem;
  }

  .menu-list {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
  }
}

@media (max-width: 480px) {
  .menu-section-title {
    font-size: 2rem;
  }

  .menu-list {
    grid-template-columns: 1fr;
  }
}

/* Additional Search Enhancements - DITAMBAHKAN */
.search-container input:focus + button {
  background: #8b1538;
}

.suggestion-item:active {
  background-color: #e9ecef;
}

/* Animation for suggestions - DITAMBAHKAN */
.search-suggestions {
  animation: slideDown 0.2s ease-out;
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Loading Screen Styles */
#loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.5s ease;
    visibility: visible;
    opacity: 1;
}

.loading-spinner {
    width: 80px;
    height: 80px;
    border: 8px solid #f3f3f3;
    border-top: 8px solid #a91d47;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin-bottom: 20px;
}

.loading-logo {
    max-width: 150px;
    margin-bottom: 20px;
    animation: pulse 1.5s infinite alternate;
}

.loading-text {
    font-size: 1.5rem;
    color: #a91d47;
    font-weight: 600;
    animation: fadeInOut 1.5s infinite alternate;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes pulse {
    0% { transform: scale(0.95); opacity: 0.8; }
    100% { transform: scale(1); opacity: 1; }
}

@keyframes fadeInOut {
    0% { opacity: 0.5; }
    100% { opacity: 1; }
}