@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;1,300;1,400&family=Pinyon+Script&family=Montserrat:wght@300;400;500&display=swap');

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

.menu-wrap {
  background: #0a0a0a;
  color: #e8d5a3;
  font-family: 'Montserrat', sans-serif;
  min-height: 100vh;
  overflow-x: hidden;
}

.gold { color: #c9952a; }
.gold-light { color: #e8d5a3; }

.ornament {
  text-align: center;
  color: #c9952a;
  font-size: 22px;
  letter-spacing: 12px;
  opacity: 0.7;
  margin: 8px 0;
  font-weight: 300;
}

.divider {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 12px auto;
  max-width: 320px;
}
.divider-line { flex: 1; height: 0.5px; background: linear-gradient(90deg, transparent, #c9952a, transparent); }
.divider-diamond {
  width: 6px; height: 6px;
  background: #c9952a;
  transform: rotate(45deg);
  flex-shrink: 0;
}

.hero {
  background: #0a0a0a;
  text-align: center;
  padding: 48px 24px 36px;
  border-bottom: 0.5px solid #2a1f0a;
  position: relative;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(201,149,42,0.08) 0%, transparent 65%);
  pointer-events: none;
}

.logo-circle {
  width: 90px; height: 90px;
  border-radius: 50%;
  border: 1.5px solid #c9952a;
  margin: 0 auto 20px;
  display: flex; align-items: center; justify-content: center;
  background: #111;
  position: relative;
}
.logo-circle::before {
  content: '';
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 0.5px solid rgba(201,149,42,0.3);
}
.logo-img {
  width: 95%;
  height: 95%;
  object-fit: contain;
  display: block;
}
.cupcake-icon { font-size: 38px; }

.shop-name {
  font-family: 'Pinyon Script', cursive;
  font-size: 52px;
  color: #c9952a;
  line-height: 1.1;
  margin-bottom: 6px;
  text-shadow: 0 0 40px rgba(201,149,42,0.15);
}
.shop-subtitle {
  font-family: 'Cormorant Garamond', serif;
  font-size: 11px;
  letter-spacing: 5px;
  color: #7a6035;
  text-transform: uppercase;
  margin-bottom: 6px;
}
.shop-address {
  font-size: 11px;
  color: #5a4a28;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-top: 4px;
}

.tagline {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 15px;
  color: #8a7040;
  margin-top: 16px;
}

.nav-bar {
  background: #0d0d0d;
  border-bottom: 0.5px solid #1e1608;
  border-top: 0.5px solid #1e1608;
  padding: 0 12px;
  display: flex;
  overflow-x: auto;
  gap: 0;
  scrollbar-width: none;
  justify-content: center;
  flex-wrap: wrap;
}
.nav-bar::-webkit-scrollbar { display: none; }
.nav-item {
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #5a4a28;
  padding: 14px 14px;
  cursor: pointer;
  white-space: nowrap;
  border-bottom: 1.5px solid transparent;
  transition: color 0.2s, border-color 0.2s;
  font-family: 'Montserrat', sans-serif;
  font-weight: 400;
  background: none; border-left: none; border-right: none; border-top: none;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
}
.nav-item:hover, .nav-item.active {
  color: #c9952a;
  border-bottom-color: #c9952a;
}

.back-to-top {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 50px;
  height: 50px;
  font-size: 20px;
  color: #5a4a28;
  cursor: pointer;
  background: rgba(10, 10, 10, 0.9);
  border: 1.5px solid transparent;
  transition: color 0.2s, border-color 0.2s, background-color 0.2s, transform 0.2s;
  font-family: 'Montserrat', sans-serif;
  font-weight: 400;
  border-radius: 50%;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px) scale(0.8);
}

.back-to-top:hover {
  color: #c9952a;
  border-color: #c9952a;
  background: rgba(10, 10, 10, 0.95);
  transform: scale(1.1);
}

.back-to-top.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}

.section {
  padding: 40px 20px 32px;
  max-width: 860px;
  margin: 0 auto;
}

.section-header {
  text-align: center;
  margin-bottom: 32px;
}
.section-title {
  font-family: 'Pinyon Script', cursive;
  font-size: 40px;
  color: #c9952a;
  display: block;
  margin-bottom: 2px;
}
.section-en {
  font-family: 'Cormorant Garamond', serif;
  font-size: 11px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: #4a3820;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 16px;
}

.product-card {
  background: #111008;
  border: 0.5px solid #2a1f0a;
  border-radius: 4px;
  overflow: hidden;
  transition: border-color 0.2s;
}
.product-card:hover { border-color: #c9952a; }

.product-img {
  width: 100%;
  aspect-ratio: 4/3;
  background: #1a1408;
  display: flex; align-items: center; justify-content: center;
  position: relative;
  overflow: hidden;
}
.img-placeholder {
  display: flex; flex-direction: column; align-items: center; gap: 8px;
}
.img-placeholder-icon { font-size: 32px; opacity: 0.25; }
.img-placeholder-text {
  font-size: 9px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #3a2e18;
  font-family: 'Montserrat', sans-serif;
}
.img-corner {
  position: absolute;
  width: 16px; height: 16px;
  border-color: #c9952a;
  border-style: solid;
  opacity: 0.4;
}
.img-corner.tl { top: 8px; left: 8px; border-width: 1px 0 0 1px; }
.img-corner.tr { top: 8px; right: 8px; border-width: 1px 1px 0 0; }
.img-corner.bl { bottom: 8px; left: 8px; border-width: 0 0 1px 1px; }
.img-corner.br { bottom: 8px; right: 8px; border-width: 0 1px 1px 0; }

.product-info { padding: 14px 14px 16px; }
.product-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 16px;
  font-weight: 600;
  color: #e8d5a3;
  margin-bottom: 4px;
  line-height: 1.3;
}
.product-desc {
  font-size: 10px;
  color: #4a3820;
  line-height: 1.6;
  margin-bottom: 10px;
  font-style: italic;
}
.product-footer {
  display: flex; align-items: center; justify-content: space-between;
}
.product-price {
  font-family: 'Cormorant Garamond', serif;
  font-size: 15px;
  color: #c9952a;
  font-weight: 600;
  letter-spacing: 1px;
}
.price-placeholder {
  font-size: 9px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #2a1f0a;
  border: 0.5px dashed #2a1f0a;
  padding: 3px 7px;
  border-radius: 2px;
}
.badge {
  font-size: 8px;
  letter-spacing: 1px;
  text-transform: uppercase;
  background: rgba(201,149,42,0.1);
  color: #c9952a;
  border: 0.5px solid rgba(201,149,42,0.25);
  padding: 3px 7px;
  border-radius: 2px;
}

.section-sep {
  border: none;
  border-top: 0.5px solid #1a1208;
  margin: 0;
}

.footer {
  background: #060604;
  border-top: 0.5px solid #1e1608;
  padding: 32px 24px;
  text-align: center;
}
.footer-name {
  font-family: 'Pinyon Script', cursive;
  font-size: 30px;
  color: #c9952a;
  margin-bottom: 10px;
  opacity: 0.8;
}
.footer-info {
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #3a2e18;
  line-height: 2;
}
.footer-social {
  display: flex; gap: 20px; justify-content: center; margin-top: 16px;
}
.social-pill {
  font-size: 9px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #5a4228;
  border: 0.5px solid #2a1f0a;
  padding: 5px 14px;
  border-radius: 2px;
}