.shop-body {
  min-height: 100vh;
  background:
    radial-gradient(ellipse 80% 50% at 10% -10%, rgba(201, 162, 39, 0.22) 0%, transparent 55%),
    radial-gradient(ellipse 50% 40% at 100% 0%, rgba(139, 26, 26, 0.1) 0%, transparent 50%),
    linear-gradient(180deg, #fff8ef 0%, #f3eee6 42%, #e8e0d4 100%);
  color: #1c1410;
  font-family: var(--font, "Nunito Sans", sans-serif);
}
.shop-header {
  background: linear-gradient(90deg, #3d1f0a 0%, #6b1212 55%, #3d1f0a 100%);
  color: #f5efe6;
  position: sticky;
  top: 0;
  z-index: 20;
  box-shadow: 0 4px 18px rgba(61, 31, 10, 0.28);
}
.shop-header-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0.9rem 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}
.shop-brand { color: #fff; text-decoration: none; }
.shop-brand:hover { text-decoration: none; }
.shop-brand strong {
  display: block;
  font-family: var(--font-display, Fraunces, Georgia, serif);
  font-size: 1.2rem;
  letter-spacing: -0.02em;
}
.shop-brand span { font-size: 0.75rem; color: #e8c547; }
.shop-nav { display: flex; flex-wrap: wrap; gap: 0.75rem 1.05rem; }
.shop-nav a {
  color: #f0d98a;
  font-weight: 700;
  font-size: 0.9rem;
  text-decoration: none;
}
.shop-nav a:hover { color: #fff; text-decoration: none; }
.shop-closed {
  background: #8b1a1a;
  color: #fff8ef;
  text-align: center;
  padding: 0.45rem 1rem;
  font-size: 0.88rem;
  font-weight: 700;
}
.shop-main { max-width: 1100px; margin: 0 auto; padding: 1.35rem 1rem 2.5rem; }
.shop-hero { margin-bottom: 1.35rem; }
.shop-hero h1 {
  margin: 0;
  font-family: var(--font-display, Fraunces, Georgia, serif);
  font-size: clamp(1.85rem, 4.5vw, 2.55rem);
  letter-spacing: -0.03em;
  font-weight: 700;
  color: #6b1212;
}
.shop-hero p { margin: 0.4rem 0 0; color: #6b5b4f; }
.shop-grid {
  display: grid;
  grid-template-columns: 1fr min(320px, 100%);
  gap: 1rem;
  align-items: start;
}
.shop-cat h2 {
  margin: 0 0 0.75rem;
  font-size: 1.15rem;
  font-family: var(--font-display, Fraunces, Georgia, serif);
  color: #6b1212;
}
.shop-item {
  display: flex;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 0.8rem 0;
  border-top: 1px solid #e6ddd2;
  align-items: center;
  transition: background .15s ease;
}
.shop-item:first-of-type { border-top: 0; }
.shop-item:hover {
  background: #f8ecec;
  margin: 0 -0.55rem;
  padding-left: 0.55rem;
  padding-right: 0.55rem;
  border-radius: 10px;
}
.shop-item-thumb {
  width: 64px;
  height: 64px;
  object-fit: cover;
  border-radius: 12px;
  border: 1px solid #e6ddd2;
  flex-shrink: 0;
  background: #f7f1e8;
}
.shop-item p { margin: 0.2rem 0; font-size: 0.85rem; color: #6b5b4f; }
.shop-price { color: #8b1a1a; font-weight: 800; }
.shop-add { display: flex; gap: 0.35rem; align-items: center; }
.shop-add input {
  width: 3.2rem;
  padding: 0.35rem;
  border: 1px solid #e6ddd2;
  border-radius: 8px;
}
.shop-cart {
  position: sticky;
  top: 5rem;
  border-color: #e0b85a !important;
  box-shadow: 0 12px 28px rgba(139, 26, 26, 0.08);
}
.btn:disabled { opacity: 0.65; cursor: wait; }
.geo-box {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  align-items: center;
  background: #fff8ef;
  border: 1px solid #e0b85a;
  border-radius: 12px;
  padding: 0.75rem 0.9rem;
  margin: 0.75rem 0 1rem;
}
.geo-box .subtitle { flex: 1 1 100%; }
.shop-cart h2 { margin-top: 0; font-family: var(--font-display, Fraunces, Georgia, serif); color: #6b1212; }
.shop-cart-list { list-style: none; margin: 0 0 0.75rem; padding: 0; }
.shop-cart-list li {
  display: flex;
  justify-content: space-between;
  gap: 0.5rem;
  padding: 0.45rem 0;
  border-bottom: 1px solid #f1ebe3;
  font-size: 0.9rem;
}
.shop-cart-list input { width: 3rem; }
.shop-totals { margin: 0.75rem 0; }
.shop-cart-actions { display: flex; flex-wrap: wrap; gap: 0.5rem; align-items: center; }
.shop-footer {
  text-align: center;
  padding: 1.75rem 1rem 2.25rem;
  color: #6b5b4f;
  font-size: 0.85rem;
  border-top: 1px solid #e6ddd2;
  background: rgba(255, 253, 249, 0.7);
}
.shop-footer a { color: #8b1a1a; font-weight: 600; }
.shop-copy { margin: 0.75rem 0 0; font-size: 0.72rem; color: #9a8b7c; line-height: 1.4; }
.shop-pix {
  background: #fff8ef;
  border: 1px solid #e0b85a;
  border-radius: 12px;
  padding: 1rem;
  margin: 1rem 0;
}
@media (max-width: 860px) {
  .shop-grid { grid-template-columns: 1fr; }
  .shop-cart { position: static; }
}
@media (prefers-reduced-motion: reduce) {
  * { transition: none !important; animation: none !important; }
}
