.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--cream);
  padding: 14px 16px;
}

.header-bar {
  max-width: var(--maxw);
  margin: 0 auto;
  background: var(--cream);
  border-radius: 16px;
  box-shadow: 0 6px 18px rgba(74, 53, 32, 0.14);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 20px;
}

.brand-logo {
  height: 30px;
  width: auto;
}

.menu-toggle {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
}

.menu-toggle span {
  display: block;
  width: 27px;
  height: 3px;
  border-radius: 2px;
  background: var(--maroon);
}

.menu-backdrop {
  position: fixed;
  inset: 0;
  z-index: 60;
  background: rgba(40, 28, 16, 0.55);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.menu-backdrop.is-open {
  opacity: 1;
}

.menu-backdrop[hidden] {
  display: none;
}

.menu-sheet {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 70;
  background: var(--cream);
  border-radius: 0 0 22px 22px;
  padding: 18px 22px 0;
  overflow: hidden;
  transform: translateY(-100%);
  transition: transform 0.32s ease;
  box-shadow: 0 18px 40px rgba(40, 28, 16, 0.25);
}

.menu-sheet.is-open {
  transform: translateY(0);
}

.menu-sheet[hidden] {
  display: none;
}

.menu-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.4rem 0 0.6rem;
}

.menu-close {
  color: var(--maroon);
  display: flex;
  padding: 6px;
}

.menu-links {
  display: flex;
  flex-direction: column;
}

.menu-links a {
  color: var(--maroon);
  font-weight: 600;
  font-size: 1.02rem;
  padding: 1.15rem 4px;
  border-bottom: 1px solid var(--line);
}

.menu-cta {
  margin: 0.6rem -22px 0;
  padding: 1.1rem 22px;
  background: var(--maroon);
  color: var(--white) !important;
  display: flex;
  align-items: center;
  gap: 0.7rem;
  border-bottom: none !important;
  font-size: 1.05rem;
}

.menu-cta img {
  width: 24px;
  height: auto;
}

.site-footer {
  background: var(--cream);
}

.footer-top {
  display: block;
}

.footer-bottom {
  position: relative;
  background: var(--cream);
  padding: 2.2rem 1.6rem 6.5rem;
  text-align: center;
  overflow: hidden;
}

.footer-castle {
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 520px;
  max-width: none;
  opacity: 0.5;
  z-index: 0;
  pointer-events: none;
}

.footer-copy {
  position: relative;
  z-index: 1;
  color: var(--brown-head);
  font-weight: 600;
}

.footer-social {
  display: flex;
  gap: 1rem;
}

.footer-social a {
  display: flex;
  color: var(--maroon);
}

.footer-social svg {
  width: 24px;
  height: 24px;
}

.shop-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--cream);
  box-shadow: 0 2px 12px rgba(74, 53, 32, 0.1);
}

.shop-header-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 14px 20px;
}

.shop-menu-toggle {
  justify-self: start;
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
}

.shop-menu-toggle span {
  display: block;
  width: 26px;
  height: 3px;
  border-radius: 2px;
  background: var(--maroon);
}

.shop-brand {
  justify-self: center;
  display: flex;
}

.shop-brand .brand-logo {
  height: 30px;
}

.cart-button {
  justify-self: end;
  position: relative;
  display: flex;
  padding: 6px;
  color: var(--maroon);
}

.cart-button svg {
  width: 27px;
  height: 27px;
}

.cart-count {
  position: absolute;
  top: -2px;
  right: -4px;
  min-width: 18px;
  height: 18px;
  padding: 0 4px;
  border-radius: 9px;
  background: var(--maroon);
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

.shop-footer {
  background: var(--sand);
  padding: 2.4rem 1.6rem 5.5rem;
}

.shop-footer-inner {
  max-width: var(--maxw);
  margin: 0 auto;
}

.shop-footer-logo {
  height: 34px;
  width: auto;
  margin-bottom: 1.5rem;
}

.shop-contact {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.95rem;
  margin-bottom: 1.9rem;
}

.shop-contact li {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  color: var(--brown-text);
  font-size: 0.95rem;
}

.shop-contact svg {
  flex: 0 0 auto;
  width: 18px;
  height: 18px;
  margin-top: 2px;
  color: var(--maroon);
}

.shop-footer-block {
  margin-bottom: 1.7rem;
}

.shop-footer-h {
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--brown-head);
  margin-bottom: 0.95rem;
}

.shop-footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.shop-footer-links a {
  color: var(--brown-text);
  font-size: 0.95rem;
}

.pay-icons {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.pay-badge {
  background: var(--white);
  border: 1px solid rgba(74, 53, 32, 0.15);
  border-radius: 6px;
  padding: 0.4rem 0.6rem;
  min-width: 46px;
  text-align: center;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--brown-text);
}

.pay-badge-pix {
  color: #098a7a;
}

.shop-copy {
  margin-top: 1.7rem;
  text-align: center;
  color: var(--brown-text);
  font-size: 0.85rem;
  line-height: 1.6;
}
