@keyframes gc-float { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }
@keyframes gc-pulse { 0%,100% { box-shadow: 0 8px 24px rgba(37,167,96,.35); } 50% { box-shadow: 0 8px 32px rgba(37,167,96,.6); } }

html { scroll-behavior: smooth; scroll-padding-top: 90px; }
body { margin: 0; background: #FFFDFA; font-family: Manrope, sans-serif; color: #2A1510; -webkit-font-smoothing: antialiased; }
a { color: #B4232A; text-decoration: none; }
a:hover { color: #8E1F2C; }
img { max-width: 100%; }
* { box-sizing: border-box; }

.wrap { max-width: 1180px; margin: 0 auto; }

/* Standard image frame: wrapper controls aspect-ratio + radius + clipping,
   the <img> inside just fills it (width/height:100%). Never put aspect-ratio
   directly on an <img> that also has width/height attributes — it fights the
   attribute-derived intrinsic ratio and crops incorrectly. */
.img-frame { width: 100%; overflow: hidden; display: block; }
.img-frame img { width: 100%; height: 100%; object-fit: cover; display: block; }

@media (prefers-reduced-motion: reduce) {
  .hero-float { animation: none !important; }
  #wa-float { animation: none !important; }
  html { scroll-behavior: auto; }
}

/* Promo bar */
#promo { position: relative; z-index: 51; background: #B4232A; color: #fff; }
.promo-link:hover { color: #FFE3B3 !important; }

/* Sticky nav — always one row; collapses to a hamburger below 860px */
#nav-wrap { position: sticky; top: 0; z-index: 50; background: rgba(255,253,250,.92); backdrop-filter: blur(12px); border-bottom: 1px solid rgba(42,21,16,.07); }
.nav-row { display: flex; align-items: center; flex-wrap: nowrap; gap: 14px; padding: 10px 20px; }

.brand { display: flex; align-items: center; gap: 8px; flex-shrink: 0; min-width: 0; }
.brand-logo { height: 42px; width: auto; flex-shrink: 0; display: block; }
.brand-name {
  font-family: Poppins, sans-serif; font-weight: 800; font-size: 17px; color: #B4232A;
  letter-spacing: -.02em; white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}

.nav-links {
  display: flex; align-items: center; gap: 16px; margin-left: auto;
  font-size: 13.5px; font-weight: 600; white-space: nowrap;
}
.nav-link { color: #2A1510; white-space: nowrap; }
.nav-link:hover { color: #B4232A !important; }

.btn-primary { transition: transform .15s, background-color .15s; }
.btn-primary:hover { background: #8E1B21 !important; color: #fff !important; transform: translateY(-1px); }
.order-btn {
  flex-shrink: 0; white-space: nowrap; background: #B4232A; color: #fff; padding: 10px 18px;
  border-radius: 999px; font-weight: 700; font-size: 13.5px; box-shadow: 0 6px 18px rgba(180,35,42,.3);
}

.menu-toggle {
  display: none; flex-shrink: 0; width: 38px; height: 38px; border-radius: 10px;
  border: 1px solid rgba(42,21,16,.14); background: #fff; cursor: pointer; padding: 0;
  flex-direction: column; align-items: center; justify-content: center; gap: 4px;
}
.menu-toggle:hover { border-color: #B4232A; }
.hamburger-bar { display: block; width: 18px; height: 2px; background: #2A1510; border-radius: 2px; transition: transform .2s, opacity .2s; }
.menu-toggle[aria-expanded="true"] .hamburger-bar:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] .hamburger-bar:nth-child(2) { opacity: 0; }
.menu-toggle[aria-expanded="true"] .hamburger-bar:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

.mobile-menu {
  display: none; flex-direction: column; position: absolute; top: 100%; left: 0; right: 0;
  background: #FFFDFA; border-top: 1px solid rgba(42,21,16,.07); border-bottom: 1px solid rgba(42,21,16,.08);
  box-shadow: 0 16px 28px rgba(42,21,16,.1); padding: 6px 20px 10px;
}
.mobile-menu.open { display: flex; }
.mobile-link { padding: 13px 2px; font-size: 15.5px; font-weight: 600; color: #2A1510; border-bottom: 1px solid rgba(42,21,16,.07); }
.mobile-link:last-child { border-bottom: none; }
.mobile-link:hover { color: #B4232A !important; }

@media (max-width: 860px) {
  .nav-links { display: none; }
  .menu-toggle { display: flex; }
}
@media (max-width: 400px) {
  .brand-name { display: none; }
}
.btn-outline { transition: border-color .15s, color .15s; }
.btn-outline:hover { border-color: #B4232A !important; color: #B4232A !important; }
.btn-white:hover { background: #FFE3B3 !important; color: #8E1B21 !important; }

.hero-float { animation: gc-float 6s ease-in-out infinite; }
#wa-float {
  position: fixed; bottom: 24px; right: 24px; z-index: 60; width: 60px; height: 60px;
  border-radius: 50%; background: #25A760; display: flex; align-items: center; justify-content: center;
  animation: gc-pulse 2.5s ease-in-out infinite;
}
#wa-float:hover { background: #1E8A4F; }
#back-to-top {
  position: fixed; bottom: 96px; right: 33px; z-index: 60; width: 42px; height: 42px; border-radius: 50%;
  background: #fff; border: 1px solid rgba(42,21,16,.15); box-shadow: 0 6px 18px rgba(42,21,16,.12);
  cursor: pointer; font-size: 17px; color: #B4232A; font-weight: 800; display: flex; align-items: center; justify-content: center;
}
#back-to-top:hover { background: #FDECEF; }

.hover-card { transition: transform .2s; }
.hover-card:hover { transform: translateY(-4px); }

.link-underline:hover { color: #8E1B21 !important; }
.social-btn:hover { background: #B4232A !important; }
.footer-link:hover { color: #fff !important; }

/* Menu tabs */
.cat-tab {
  background: #fff; color: #5A463D; border: 1.5px solid rgba(42,21,16,.14);
  font-family: Poppins, sans-serif; font-weight: 600; font-size: 14.5px; padding: 12px 24px;
  border-radius: 999px; cursor: pointer;
}
.cat-tab.active {
  background: #B4232A; color: #fff; border: none; font-weight: 700;
  box-shadow: 0 6px 16px rgba(180,35,42,.28);
}
.size-btn {
  background: #fff; color: #5A463D; border: 1px solid rgba(42,21,16,.16); font-weight: 700; font-size: 13px;
  padding: 8px 18px; border-radius: 999px; cursor: pointer; font-family: Manrope, sans-serif;
}
.size-btn.active { background: #2A1510; color: #fff; border: none; font-weight: 800; }
.menu-card {
  background: #fff; border: 1px solid rgba(42,21,16,.08); border-radius: 20px; padding: 24px;
  display: flex; flex-direction: column; gap: 8px; transition: box-shadow .2s, transform .2s;
}
.menu-card:hover { box-shadow: 0 14px 34px rgba(42,21,16,.1); transform: translateY(-3px); }
.item-wa:hover { background: #B4232A !important; color: #fff !important; }

/* FAQ (native details/summary — zero JS) */
.faq-item summary {
  list-style: none; cursor: pointer; display: flex; align-items: center; justify-content: space-between;
  gap: 16px; text-align: left;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item .chev { color: #B4232A; font-size: 18px; transition: transform .2s; flex-shrink: 0; }
.faq-item[open] .chev { transform: rotate(180deg); }

@media (max-width: 640px) {
  #back-to-top { bottom: 90px; right: 18px; }
  #wa-float { bottom: 18px; right: 18px; }
}
