/* Base — mirrors ornek_ui exactly */
body {
  font-family: 'Inter', sans-serif;
  background: #ffffff;
  color: #2b2b2b;
  margin: 0;
}

.menu-container {
  max-width: 900px;
  margin: auto;
  padding: 20px;
}

.top-info {
  position: relative;
  background: #fff;
  border-radius: 16px;
  padding: 20px;
  margin-bottom: 30px;
  box-shadow: 0 5px 20px #0000000d;
}

.top-header {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 15px;
}

.logo {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
}

.cafe-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
}

.info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  font-size: 0.9rem;
}

.info-item span {
  color: #888;
  display: block;
  font-size: 0.75rem;
}

.menu-header {
  text-align: center;
  margin-bottom: 40px;
}

.menu-header h1 {
  font-family: 'Playfair Display', serif;
}

.category {
  margin-bottom: 60px;
}

.category-title {
  font-family: 'Playfair Display', serif;
  border-bottom: 1px solid #ddd;
  padding-bottom: 8px;
  margin-bottom: 15px;
}

.image-strip {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  padding-bottom: 10px;
  margin-bottom: 15px;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.image-strip::-webkit-scrollbar {
  display: none;
}

.image-strip img {
  height: 90px;
  width: 140px;
  object-fit: cover;
  border-radius: 12px;
  flex-shrink: 0;
  scroll-snap-align: start;
  transition: 0.3s;
  cursor: pointer;
}

.image-strip img:hover {
  transform: scale(1.05);
}

.menu-item {
  display: flex;
  justify-content: space-between;
  padding: 12px 0;
  border-bottom: 1px dashed #ddd;
}

.item-name {
  font-weight: 500;
}

.item-desc {
  font-size: 0.85rem;
  color: #777;
}

.price {
  color: #6b4f3b;
  font-weight: 500;
  white-space: nowrap;
}

.item-info {
  display: flex;
  align-items: center;
  gap: 15px;
}

.item-image {
  min-width: 60px;
  width: 60px;
  height: 60px;
  border-radius: 10px;
  object-fit: cover;
  cursor: pointer;
}

/* Footer */
.menu-footer {
  text-align: center;
  padding: 24px 0 40px;
  color: #888;
  font-size: 0.8rem;
}

.menu-footer a {
  color: #6b4f3b;
  font-weight: 600;
  text-decoration: none;
}

/* Gallery overlay — mirrors ornek_ui exactly */
.gallery-overlay {
  position: fixed;
  inset: 0;
  background: #000000e6;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 999;
  visibility: hidden;
  opacity: 0;
  transition: 0.3s;
}

.gallery-overlay.active {
  visibility: visible;
  opacity: 1;
}

.gallery-img {
  max-width: 90%;
  max-height: 80%;
  border-radius: 10px;
}

.gallery-close {
  position: absolute;
  top: 20px;
  right: 25px;
  color: #fff;
  font-size: 28px;
  cursor: pointer;
}

.gallery-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 40px;
  color: #fff;
  cursor: pointer;
  padding: 10px;
  user-select: none;
}

.gallery-prev {
  left: 20px;
}

.gallery-next {
  right: 20px;
}

.gallery-content {
  text-align: center;
}

.error-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 24px;
}

/* Google Translate widget cleanup */
.goog-te-banner-frame.skiptranslate {
  display: none !important;
}

body {
  top: 0 !important;
}

.goog-logo-link,
.goog-te-gadget span,
#goog-gt-tt,
.goog-te-balloon-frame {
  display: none !important;
}

body {
  position: static !important;
}
