:root {
  --gold: #c9912f;
  --gold-strong: #9f711f;
  --gold-soft: #fff3dc;
  --ink: #151412;
  --text: #302d29;
  --muted: #777069;
  --line: #ebe4d8;
  --paper: #ffffff;
  --surface: #f8f6f1;
  --radius: 20px;
  --shadow-soft: 0 12px 30px rgba(35, 29, 19, 0.09);
}

* {
  box-sizing: border-box;
}

html {
  background: var(--surface);
}

body {
  margin: 0;
  min-height: 100vh;
  background:
    radial-gradient(circle at 15% -6%, rgba(201, 145, 47, 0.16), transparent 24rem),
    linear-gradient(180deg, #fffdf9 0%, var(--surface) 40%, #fff 100%);
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
  text-decoration: none;
}

.page {
  width: min(100%, 1120px);
  margin: 0 auto;
  padding: max(12px, env(safe-area-inset-top)) 16px 40px;
}

.topbar {
  display: flex;
  align-items: center;
  padding: 6px 0 4px;
}

.brand-row {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 950;
  font-size: 1.05rem;
}

.brand-mark {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  object-fit: contain;
}

.hero {
  position: relative;
  overflow: hidden;
  margin-top: 10px;
  padding: 40px 28px;
  border-radius: 28px;
  background:
    radial-gradient(circle at 88% -10%, rgba(255, 255, 255, 0.5), transparent 55%),
    linear-gradient(135deg, #f3d9a0 0%, var(--gold) 55%, var(--gold-strong) 100%);
  box-shadow: 0 24px 50px rgba(159, 113, 31, 0.28);
}

.hero-icon {
  position: absolute;
  right: -22px;
  bottom: -34px;
  width: 190px;
  height: 190px;
  opacity: 0.16;
  pointer-events: none;
}

.hero .eyebrow {
  color: rgba(21, 14, 4, 0.65);
}

.hero h1 {
  max-width: 640px;
}

.hero .muted {
  max-width: 520px;
  color: rgba(21, 14, 4, 0.68);
  font-size: 1rem;
}

.eyebrow {
  margin: 0 0 5px;
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 950;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

h1 {
  margin: 0 0 6px;
  font-size: clamp(1.9rem, 5vw, 2.6rem);
  color: var(--ink);
}

.muted {
  color: var(--muted);
  margin: 0;
}

.filters {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 10px;
  margin: 18px 0 26px;
}

.filters label {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 0.8rem;
  font-weight: 800;
  color: var(--muted);
}

.filters select {
  min-height: 48px;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: var(--paper);
  padding: 0 12px;
  font: inherit;
  font-weight: 700;
  color: var(--ink);
}

.category-row {
  margin-bottom: 26px;
}

.category-row h2 {
  margin: 0 0 10px;
  font-size: 1.1rem;
  color: var(--ink);
}

.shop-scroll {
  display: grid;
  grid-auto-columns: 148px;
  grid-auto-flow: column;
  gap: 12px;
  overflow-x: auto;
  padding-bottom: 6px;
  scrollbar-width: none;
}

.shop-scroll::-webkit-scrollbar {
  display: none;
}

.shop-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(148px, 1fr));
  gap: 14px;
}

.shop-card {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 10px;
  border: 1px solid rgba(235, 228, 216, 0.94);
  border-radius: var(--radius);
  background: var(--paper);
  box-shadow: var(--shadow-soft);
}

.shop-card-photo {
  aspect-ratio: 1;
  border-radius: 14px;
  overflow: hidden;
  background: var(--gold-soft);
  color: var(--gold-strong);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 950;
  font-size: 1.6rem;
}

.shop-card-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.shop-card strong {
  color: var(--ink);
  font-size: 0.92rem;
  line-height: 1.25;
}

.shop-card small {
  color: var(--muted);
  font-size: 0.78rem;
}

.empty-state {
  border: 1px dashed var(--line);
  border-radius: var(--radius);
  padding: 40px 20px;
  text-align: center;
}

.empty-state h2 {
  margin: 0 0 6px;
  color: var(--ink);
}

.contact-section {
  margin-top: 36px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 16px;
}

.contact-card {
  padding: 20px;
  border: 1px solid rgba(235, 228, 216, 0.94);
  border-radius: var(--radius);
  background: var(--paper);
  box-shadow: var(--shadow-soft);
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.contact-card h2 {
  margin: 0 0 4px;
  font-size: 1.2rem;
}

.contact-card .primary-button,
.contact-card .secondary-button {
  margin-top: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 18px;
  border-radius: 14px;
  font-weight: 900;
  border: 0;
  cursor: pointer;
  text-align: center;
}

.contact-card .primary-button {
  background: linear-gradient(180deg, #d8a645, var(--gold));
  color: var(--button-text);
  box-shadow: 0 16px 30px rgba(201, 145, 47, 0.30);
}

.contact-card .secondary-button {
  border: 1px solid var(--line);
  background: white;
  color: var(--ink);
}

.affiliate-details {
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 10px 14px;
  background: var(--surface);
}

.affiliate-details summary {
  cursor: pointer;
  font-weight: 800;
  color: var(--gold-strong);
}

.affiliate-details ul {
  margin: 10px 0 2px;
  padding-left: 18px;
  color: var(--text);
  font-size: 0.88rem;
  line-height: 1.5;
}

.affiliate-details li + li {
  margin-top: 6px;
}

.contact-footer {
  margin-top: 22px;
  text-align: center;
}

.whatsapp-link {
  color: var(--gold-strong);
  font-weight: 800;
}
