/* Meraki Art - Rustic global gallery */
:root {
  --ink: #2b2218;
  --soil: #7a5b3a;
  --clay: #b07a4a;
  --sand: #f2e8d8;
  --paper: #faf6ee;
  --copper: #b36a3c;
  --jade: #2f6f5f;
  --accent: #9b3f2b;
  --shadow: rgba(43, 34, 24, 0.18);
}

* {
  box-sizing: border-box;
}

body {
  font-family: "Cormorant Garamond", "Times New Roman", serif;
  color: var(--ink);
  background: radial-gradient(1200px 800px at 10% 10%, #fff8ea 0%, var(--sand) 55%, #efe1cf 100%);
  min-height: 100vh;
}

.brand-font {
  font-family: "Bitter", Georgia, serif;
  letter-spacing: 0.02em;
}

.nav-rustic {
  background: linear-gradient(90deg, #f8f1e4 0%, #efe2cf 50%, #f6ede0 100%);
  border-bottom: 2px solid #d6c2a7;
}

.nav-link {
  color: var(--ink);
  font-weight: 600;
}

.nav-link:hover,
.nav-link:focus {
  color: var(--accent);
}

.hero {
  position: relative;
  padding: 90px 0 70px;
}

.hero-card {
  background: var(--paper);
  border: 2px solid #e0d0b6;
  box-shadow: 0 18px 40px var(--shadow);
  padding: 40px;
}

.hero-mark {
  text-transform: uppercase;
  font-weight: 700;
  color: var(--soil);
  letter-spacing: 0.25em;
  font-size: 0.8rem;
}

.subtitle {
  font-size: 1.2rem;
  color: #5a4a36;
}

.rustic-divider {
  height: 6px;
  background: repeating-linear-gradient(
    45deg,
    #c6a782,
    #c6a782 8px,
    #b9916b 8px,
    #b9916b 16px
  );
  border-radius: 50px;
}

.section-title {
  font-family: "Bitter", Georgia, serif;
  font-size: 2rem;
  color: var(--ink);
}

.card-rustic {
  border: 2px solid #e1cfb6;
  background: #fffdf8;
  box-shadow: 0 10px 24px var(--shadow);
}

.card-rustic .card-title {
  font-family: "Bitter", Georgia, serif;
}

.tag {
  display: inline-block;
  padding: 4px 10px;
  border-radius: 16px;
  background: #efe1cf;
  font-size: 0.85rem;
  font-weight: 600;
  color: #6b4b2b;
}

.btn-meraki {
  background: var(--accent);
  color: #fff;
  border-radius: 30px;
  padding: 8px 24px;
  border: 2px solid var(--accent);
  font-weight: 600;
}

.btn-meraki:hover {
  background: #7f2f20;
  color: #fff;
}

.btn-outline-meraki {
  border: 2px solid var(--ink);
  color: var(--ink);
  border-radius: 30px;
  padding: 8px 24px;
  font-weight: 600;
}

.btn-outline-meraki:hover {
  background: var(--ink);
  color: #fff;
}

.texture {
  background: linear-gradient(135deg, rgba(122, 91, 58, 0.15) 0%, rgba(176, 122, 74, 0.12) 40%, rgba(155, 63, 43, 0.08) 100%);
  border-radius: 18px;
  padding: 24px;
}

.country-panel {
  border-left: 4px solid var(--jade);
  padding-left: 16px;
}

.product-image {
  height: 180px;
  background: linear-gradient(135deg, #d4b08a, #f0dcc0);
  border-radius: 12px;
  position: relative;
  overflow: hidden;
}

.product-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.4) 0%, transparent 55%);
}

.flag-chip {
  background: #fff;
  border: 1px solid #dbc5a5;
  border-radius: 20px;
  padding: 6px 14px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.cart-item {
  border-bottom: 1px dashed #d4c0a5;
  padding: 16px 0;
}

.cart-total {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--accent);
}

.footer {
  background: #2b2218;
  color: #f8f1e4;
  padding: 30px 0;
}

.footer a {
  color: #f8f1e4;
}

.badge-cart {
  background: var(--accent);
  color: #fff;
  border-radius: 50%;
  padding: 2px 7px;
  font-size: 0.75rem;
  margin-left: 4px;
}

@media (max-width: 768px) {
  .hero {
    padding: 60px 0 50px;
  }

  .hero-card {
    padding: 24px;
  }
}
