*,
*::before,
*::after {
  box-sizing: border-box;
}

:root {
  --bg-body: #fff6e9;
  --bg-elevated: #ffffff;
  --bg-hero: #ffe7bf;
  --text-main: #25160f;
  --text-muted: #8c6f54;
  --accent: #ffc857;
  --accent-soft: #ffedc2;
  --chip-bg: #f4dfc4;
  --chip-active-bg: #25160f;
  --chip-active-text: #ffe7bf;
  --border-subtle: rgba(0, 0, 0, 0.06);
  --shadow-soft: 0 18px 45px rgba(0, 0, 0, 0.12);
}

html, body {
  margin: 0;
  padding: 0;
  font-family: "Poppins", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: radial-gradient(circle at top left, #ffe8c4 0, var(--bg-body) 52%, #f8e6d4 100%);
  color: var(--text-main);
}

body {
  min-height: 100vh;
}

/* NAVBAR */

.bn-navbar {
  position: sticky;
  top: 0;
  z-index: 50;
  padding: 14px 20px;
}

.bn-navbar-inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 10px 18px;
  background: rgba(37, 22, 15, 0.96);
  border-radius: 999px;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.35);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.bn-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.bn-logo-circle {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: #24130c;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.35);
}

.bn-brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.bn-brand-name {
  font-size: 17px;
  font-weight: 600;
  color: #fff7e8;
}

.bn-brand-tag {
  font-size: 11px;
  color: #f1d7b8;
}

.bn-nav-links {
  display: flex;
  align-items: center;
  gap: 16px;
}

.bn-nav-link {
  font-size: 14px;
  color: #f5e0c8;
  text-decoration: none;
  padding: 8px 14px;
  border-radius: 999px;
  transition: background 0.18s ease, color 0.18s ease, transform 0.18s ease;
}

.bn-nav-link:hover {
  background: rgba(255, 232, 189, 0.14);
  transform: translateY(-1px);
}

@media (max-width: 720px) {
  .bn-navbar-inner {
    padding-inline: 14px;
  }
  .bn-brand-text {
    display: none;
  }
  .bn-nav-links {
    gap: 6px;
  }
  .bn-nav-link {
    font-size: 12px;
    padding-inline: 10px;
  }
}

/* LAYOUT HELPERS */

.section-inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 60px 20px;
}

.section-label {
  display: inline-flex;
  padding: 4px 10px;
  border-radius: 999px;
  background: var(--accent-soft);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #a46723;
  margin-bottom: 10px;
}

.section-title {
  font-size: clamp(26px, 3vw, 32px);
  margin: 0 0 16px;
}

.section-intro {
  margin: 0 0 28px;
  max-width: 620px;
  font-size: 14px;
  color: var(--text-muted);
}

/* HERO */

.hero-section {
  max-width: 1120px;
  margin: 40px auto 20px;
  padding: 40px 24px 64px;
  border-radius: 40px;
  background: linear-gradient(135deg, #ffe1af, #fff5e6);
  box-shadow: var(--shadow-soft);
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  gap: 32px;
  align-items: center;
}

.hero-media {
  position: relative;
}

.hero-photo-frame {
  border-radius: 32px;
  overflow: hidden;
  background: #1c120d;
  box-shadow: 0 20px 50px rgba(99, 50, 16, 0.55);
}

.hero-photo {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-character {
  position: absolute;
  right: -34px;
  bottom: -26px;
  width: 160px;
  animation: heroFloat 4s ease-in-out infinite;
  filter: drop-shadow(0 15px 22px rgba(0, 0, 0, 0.45));
}

@keyframes heroFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

.hero-content {
  align-self: stretch;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.9);
  color: var(--text-muted);
  font-size: 11px;
  margin-bottom: 14px;
  box-shadow: 0 8px 20px rgba(122, 77, 29, 0.3);
}

.hero-heading-main {
  display: block;
  font-size: clamp(30px, 3vw, 36px);
  font-weight: 700;
}

.hero-heading-sub {
  display: block;
  font-size: clamp(30px, 3vw, 36px);
  font-weight: 700;
  color: #d8811d;
}

.hero-subtitle {
  margin: 14px 0 22px;
  max-width: 460px;
  font-size: 14px;
  color: var(--text-muted);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 14px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 11px 22px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.16s ease, box-shadow 0.16s ease, background 0.16s ease, color 0.16s ease;
}

.btn-primary {
  background: #25160f;
  color: #ffedc9;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.35);
}

.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.45);
}

.btn-ghost {
  background: rgba(255, 248, 233, 0.8);
  color: #5e3b22;
  border-color: rgba(118, 79, 46, 0.35);
}

.btn-ghost:hover {
  background: #fff1d8;
}

.btn-outline {
  background: transparent;
  color: #5e3b22;
  border-color: rgba(118, 79, 46, 0.45);
}

.btn-outline:hover {
  background: #fff0d5;
}

.hero-footnote {
  font-size: 12px;
  color: var(--text-muted);
}

@media (max-width: 880px) {
  .hero-section {
    grid-template-columns: minmax(0, 1fr);
    padding-inline: 20px;
  }
  .hero-media {
    order: -1;
  }
  .hero-character {
    right: 10px;
    bottom: -14px;
    width: 132px;
  }
}

/* ABOUT */

.about-section {
  padding-top: 10px;
}

.about-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(0, 0.9fr);
  gap: 32px;
  align-items: center;
}

.about-text p {
  font-size: 14px;
  color: var(--text-muted);
  margin: 0 0 10px;
}

.about-list {
  padding-left: 20px;
  margin: 10px 0 0;
  font-size: 14px;
  color: var(--text-main);
}

.about-card {
  background: #2b170f;
  color: #ffe7c4;
  border-radius: 26px;
  padding: 24px 20px 20px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.5);
  position: relative;
  overflow: hidden;
}

.about-photo-ring {
  width: 150px;
  height: 150px;
  border-radius: 999px;
  border: 6px solid #ffc857;
  overflow: hidden;
  margin-bottom: 16px;
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.6);
}

.about-photo-ring img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-caption {
  font-size: 13px;
  line-height: 1.5;
}

@media (max-width: 880px) {
  .about-layout {
    grid-template-columns: minmax(0, 1fr);
  }
}

/* AFFILIATE */

.affiliate-section {
  padding-bottom: 40px;
}

.affiliate-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 22px;
}

.chip {
  border: none;
  padding: 7px 14px;
  border-radius: 999px;
  background: var(--chip-bg);
  font-size: 12px;
  cursor: pointer;
  color: #5b3517;
  transition: background 0.16s ease, color 0.16s ease, transform 0.16s ease;
}

.chip-active {
  background: var(--chip-active-bg);
  color: var(--chip-active-text);
}

.chip:hover {
  transform: translateY(-1px);
}

.products-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.product-card {
  background: var(--bg-elevated);
  border-radius: 22px;
  padding: 16px 16px 14px;
  border: 1px solid var(--border-subtle);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.product-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 10px;
}

.product-title {
  font-size: 14px;
  font-weight: 600;
}

.product-category {
  font-size: 11px;
  padding: 3px 9px;
  border-radius: 999px;
  background: #ffe0b8;
  color: #74451d;
}

.product-meta {
  font-size: 13px;
  color: var(--text-muted);
}

.product-price {
  font-weight: 600;
  font-size: 15px;
  margin-right: 4px;
}

.product-actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 6px;
}

.product-link {
  font-size: 12px;
  color: #8f4a10;
  text-decoration: none;
  font-weight: 500;
}

.product-link:hover {
  text-decoration: underline;
}

.empty-state {
  margin-top: 14px;
  font-size: 14px;
  color: var(--text-muted);
}

.affiliate-more {
  margin-top: 24px;
}

/* FOOTER */

.bn-footer {
  border-top: 1px solid rgba(0, 0, 0, 0.06);
  padding: 24px 20px 32px;
  background: #fbe7cf;
  margin-top: 24px;
}

.footer-inner {
  max-width: 1120px;
  margin: 0 auto 10px;
  display: flex;
  gap: 40px;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
}

.footer-brand {
  font-size: 18px;
  font-weight: 600;
  margin: 0 0 6px;
}

.footer-text {
  margin: 0 0 6px;
  font-size: 13px;
  color: var(--text-muted);
}

.footer-text-note {
  font-size: 12px;
}

.footer-connect-title {
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 6px;
}

.footer-connect-icons {
  display: flex;
  gap: 10px;
}

.footer-connect-icons a {
  font-size: 12px;
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid rgba(0, 0, 0, 0.14);
  text-decoration: none;
  color: #5e3b22;
  background: rgba(255, 255, 255, 0.7);
}

.footer-bottom {
  max-width: 1120px;
  margin: 0 auto;
  font-size: 11px;
  color: var(--text-muted);
}

/* SMALL */

@media (max-width: 540px) {
  .hero-section {
    margin-inline: 12px;
    padding-inline: 16px;
  }
  .section-inner {
    padding-inline: 16px;
  }
}
