/* HoneyMe v3 — warm illustrated-paper homepage direction (bee doodles,
   arched category cards, torn-note tags, membership card). Independent of
   style-v2.css (used by cakes.html) so the two directions don't collide
   while we're still deciding between them. Scoped under .v3-body. */

:root {
  --v3-paper: #efe3cd;
  --v3-card: #f6eeda;
  --v3-ink: #3b2a1a;
  --v3-ink-soft: #7d6a52;
  --v3-line: #d9c6a1;
  --v3-dark: #2a2015;
  --v3-cream: #f3e8d2;
  --v3-accent: #a9782f;
}

.v3-body {
  margin: 0; color: var(--v3-ink);
  font-family: "Poppins", -apple-system, BlinkMacSystemFont, "PingFang SC", sans-serif;
  /* subtle brown gingham/plaid, matching the logo's warm brown-on-tan palette —
     kept faint so it reads as paper texture, not a loud pattern */
  background-color: var(--v3-paper);
  background-image:
    repeating-linear-gradient(0deg, rgba(169,120,47,0.07) 0 2px, transparent 2px 34px),
    repeating-linear-gradient(90deg, rgba(169,120,47,0.07) 0 2px, transparent 2px 34px);
}
.v3-logo-badge { border-radius: 50%; }
.v3-brand img { height: 46px; width: auto; display: block; }
.v3-body img { max-width: 100%; display: block; }
.v3-body h1, .v3-body h2, .v3-body h3 { font-family: "Fraunces", serif; margin: 0; text-wrap: balance; }
.v3-script { font-family: "Caveat", cursive; font-weight: 600; }
.v3-wrap { max-width: 1220px; margin: 0 auto; padding: 0 28px; }
.v3-placeholder {
  background: repeating-linear-gradient(45deg, #e4d6b8, #e4d6b8 10px, #ddccA6 10px, #ddccA6 20px);
  border: 1.5px dashed var(--v3-accent); color: var(--v3-ink-soft);
  display: flex; align-items: center; justify-content: center; text-align: center;
  font-size: 0.78rem; padding: 10px; line-height: 1.4;
}

/* ---------- nav ---------- */
.v3-nav { padding: 18px 0 8px; position: relative; }
.v3-nav-row { display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.v3-brand { display: flex; align-items: center; gap: 8px; text-decoration: none; color: var(--v3-ink); }
.v3-brand .word { font-family: "Fraunces", serif; font-style: italic; font-weight: 600; font-size: 1.5rem; }
.v3-brand small { display: block; font-size: 0.62rem; letter-spacing: 0.16em; color: var(--v3-ink-soft); font-style: normal; }
.v3-links { display: flex; gap: 20px; list-style: none; margin: 0; padding: 0; }
.v3-links a { text-decoration: none; color: var(--v3-ink); font-size: 0.85rem; font-weight: 500; border-bottom: 1.5px solid transparent; padding-bottom: 4px; }
.v3-links a.active, .v3-links a:hover { border-color: var(--v3-accent); }
.v3-nav-icons { display: flex; gap: 16px; align-items: center; }
.v3-nav-icons button, .v3-nav-icons a { background: none; border: none; font-size: 1.05rem; cursor: pointer; color: var(--v3-ink); text-decoration: none; }
.v3-menu-toggle { display: none; background: none; border: none; font-size: 1.3rem; cursor: pointer; color: var(--v3-ink); }
/* Below 940px the inline nav links would overflow the header, so they move
   into a dropdown panel toggled by a hamburger button instead of just
   disappearing — losing top navigation entirely on mobile (with only the
   footer's link list left) was the actual bug here. */
@media (max-width: 940px) {
  .v3-menu-toggle { display: block; }
  .v3-links {
    display: none; flex-direction: column; gap: 4px; position: absolute; left: 0; right: 0; top: 100%;
    background: var(--v3-paper); border-bottom: 1px solid var(--v3-line); padding: 10px 28px 18px; z-index: 40;
  }
  .v3-links.open { display: flex; }
  .v3-links a { padding: 10px 0; border-bottom: 1px solid var(--v3-line); }
}

/* ---------- buttons ---------- */
.v3-btn {
  display: inline-flex; align-items: center; gap: 8px; font: inherit; font-weight: 600; font-size: 0.82rem;
  padding: 12px 22px; border-radius: 3px; border: 1.5px solid var(--v3-ink); cursor: pointer; text-decoration: none;
  background: var(--v3-ink); color: var(--v3-cream);
}
.v3-btn-outline { background: transparent; color: var(--v3-ink); }
.v3-btn.on-dark { background: var(--v3-cream); color: var(--v3-dark); border-color: var(--v3-cream); }
.v3-btn-outline.on-dark { background: transparent; color: var(--v3-cream); border-color: var(--v3-cream); }

/* ---------- hero ---------- */
.v3-hero { padding: 26px 0 50px; position: relative; }
.v3-hero-grid { display: grid; grid-template-columns: 0.85fr 1.4fr; gap: 44px; align-items: center; }
.v3-hero h1 { font-style: italic; font-size: 3.1rem; line-height: 1.08; margin-bottom: 14px; }
.v3-hero .sub { font-size: 1rem; margin-bottom: 10px; }
.v3-hero .fine { color: var(--v3-ink-soft); font-size: 0.9rem; margin-bottom: 22px; }
.v3-hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.v3-hero-photo { position: relative; }
.v3-hero-photo .v3-placeholder { aspect-ratio: 16/9; border-radius: 6px; }
.v3-hero-note {
  position: absolute; left: 24px; bottom: -18px; background: var(--v3-card); border: 1px solid var(--v3-line);
  padding: 10px 16px; box-shadow: 0 8px 16px rgba(40,28,10,0.18); font-family: "Caveat", cursive; font-weight: 600;
  font-size: 1.15rem; transform: rotate(-2deg);
}
.v3-hero-stamp {
  position: absolute; right: -18px; bottom: -34px; width: 110px; height: 110px; border-radius: 50%;
  background: var(--v3-card); border: 1.5px dashed var(--v3-accent); display: flex; align-items: center; justify-content: center;
  text-align: center; font-size: 0.68rem; font-weight: 600; letter-spacing: 0.03em; padding: 10px; color: var(--v3-ink-soft);
  transform: rotate(8deg);
}
.v3-hero-tag {
  position: absolute; top: -14px; right: 40px; background: var(--v3-card); border: 1px solid var(--v3-line);
  padding: 8px 14px; font-family: "Caveat", cursive; font-weight: 600; font-size: 1.05rem; transform: rotate(4deg);
  box-shadow: 0 6px 14px rgba(40,28,10,0.16);
}
@media (max-width: 860px) {
  .v3-hero-grid { grid-template-columns: 1fr; }
  .v3-hero h1 { font-size: 2.3rem; }
}

/* ---------- arched category cards ---------- */
/* ---------- signature feature (Salt Bread gets top billing) ---------- */
.v3-signature { padding: 46px 0 10px; }
.v3-signature-card {
  background: var(--v3-card); border: 1px solid var(--v3-line); border-radius: 16px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 0; overflow: hidden;
}
.v3-signature-card .v3-placeholder { aspect-ratio: 1; border-radius: 0; border-width: 0 0 0 1px; }
.v3-signature-text { padding: 40px; display: flex; flex-direction: column; justify-content: center; }
.v3-signature-eyebrow { font-family: "Caveat", cursive; font-size: 1.3rem; color: var(--v3-accent); margin-bottom: 4px; }
.v3-signature-text h2 { font-size: 2rem; font-style: italic; margin-bottom: 10px; }
.v3-signature-text p { color: var(--v3-ink-soft); font-size: 0.92rem; margin: 0 0 20px; max-width: 42ch; }
@media (max-width: 780px) { .v3-signature-card { grid-template-columns: 1fr; } .v3-signature-card .v3-placeholder { border-width: 1px 0 0; } }

.v3-categories { padding: 30px 0 20px; }
.v3-cat-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.v3-cat-row.secondary { grid-template-columns: repeat(2, 1fr); max-width: 720px; margin: 18px auto 0; }
.v3-cat-row.secondary .v3-cat-card { padding: 16px 14px 14px; border-radius: 90px 90px 8px 8px; }
.v3-cat-row.secondary h3 { font-size: 0.95rem; }
.v3-cat-row.secondary .v3-placeholder { aspect-ratio: 16/10; }
.v3-cat-card {
  background: var(--v3-card); border: 1px solid var(--v3-line); border-radius: 120px 120px 10px 10px;
  padding: 26px 20px 20px; text-align: center; text-decoration: none; color: var(--v3-ink);
  display: flex; flex-direction: column; align-items: center; gap: 8px;
}
.v3-cat-card .icon { font-size: 1.6rem; margin-bottom: 4px; }
.v3-cat-card h3 { font-size: 1.15rem; }
.v3-cat-card .desc { font-size: 0.78rem; color: var(--v3-ink-soft); line-height: 1.4; min-height: 2.6em; }
.v3-cat-card .v3-placeholder { width: 100%; aspect-ratio: 4/3; border-radius: 6px; margin: 6px 0 4px; }
.v3-cat-card .shop { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.05em; margin-top: 4px; }
@media (max-width: 900px) { .v3-cat-row { grid-template-columns: repeat(2, 1fr); } }

/* ---------- two-up bands ---------- */
.v3-band { padding: 20px 0; }
.v3-band-row { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.v3-band-card {
  border-radius: 10px; padding: 30px; display: grid; grid-template-columns: 1fr 1fr; gap: 18px; align-items: center;
  border: 1px solid var(--v3-line); position: relative; overflow: hidden;
}
.v3-band-card.dark { background: var(--v3-dark); color: var(--v3-cream); border-color: var(--v3-dark); }
.v3-band-card.light { background: var(--v3-card); }
.v3-band-card h2 { font-size: 1.4rem; margin-bottom: 6px; }
.v3-band-card p { font-size: 0.86rem; margin: 0 0 16px; }
.v3-band-card.dark p { color: var(--v3-cream); opacity: 0.85; }
.v3-band-card.light p { color: var(--v3-ink-soft); }
.v3-band-card .v3-placeholder { aspect-ratio: 4/3; border-radius: 6px; }
.v3-band-row.solo { grid-template-columns: 1fr; max-width: 760px; margin: 0 auto; }
.v3-perk-row { display: flex; gap: 14px; margin-bottom: 16px; flex-wrap: wrap; }
.v3-perk { font-size: 0.72rem; text-align: center; opacity: 0.9; }
.v3-perk .icn { font-size: 1.1rem; display: block; margin-bottom: 2px; }
@media (max-width: 860px) {
  .v3-band-row { grid-template-columns: 1fr; }
  .v3-band-card { grid-template-columns: 1fr; }
}

/* ---------- partners / collaborate ---------- */
.v3-partners { padding: 36px 0; }
.v3-partners-card {
  background: var(--v3-card); border: 1px solid var(--v3-line); border-radius: 10px; padding: 34px 36px;
  display: flex; justify-content: space-between; align-items: center; gap: 24px; flex-wrap: wrap;
}
.v3-partners-card h2 { font-size: 1.4rem; margin-bottom: 6px; }
.v3-partners-card p { color: var(--v3-ink-soft); font-size: 0.88rem; margin: 0; max-width: 46ch; }
.v3-partner-logos { display: flex; gap: 14px; margin: 18px 0; flex-wrap: wrap; }
.v3-partner-logos .v3-placeholder { width: 110px; height: 64px; border-radius: 6px; font-size: 0.66rem; }
@media (max-width: 700px) { .v3-partners-card { flex-direction: column; align-items: flex-start; } }

/* ---------- community quote ---------- */
.v3-quote { padding: 50px 0; }
.v3-quote-grid { display: grid; grid-template-columns: 0.9fr 1.3fr; gap: 40px; align-items: center; }
.v3-quote .v3-placeholder { aspect-ratio: 4/3; border-radius: 6px; }
.v3-quote h2 { font-size: 1.7rem; margin-bottom: 10px; }
.v3-quote blockquote { font-family: "Fraunces", serif; font-style: italic; font-size: 1.2rem; margin: 0 0 20px; color: var(--v3-ink-soft); }
.v3-quote-trio { display: flex; gap: 26px; flex-wrap: wrap; }
.v3-quote-trio div { font-size: 0.78rem; text-align: center; color: var(--v3-ink-soft); max-width: 120px; }
.v3-quote-trio .icn { font-size: 1.3rem; display: block; margin-bottom: 6px; }
@media (max-width: 860px) { .v3-quote-grid { grid-template-columns: 1fr; } }

/* ---------- footer ---------- */
.v3-footer { background: var(--v3-dark); color: var(--v3-cream); padding: 56px 0 24px; margin-top: 40px; }
.v3-footer-grid { display: flex; justify-content: space-between; gap: 32px; flex-wrap: wrap; }
.v3-footer-brand .word { font-family: "Fraunces", serif; font-style: italic; font-size: 1.3rem; }
.v3-footer-brand small { display: block; font-size: 0.7rem; opacity: 0.75; margin-bottom: 14px; }
.v3-footer-addr { font-size: 0.84rem; opacity: 0.9; line-height: 1.6; margin-bottom: 14px; }
.v3-hours { font-size: 0.8rem; opacity: 0.85; border-collapse: collapse; }
.v3-hours td { padding: 1px 12px 1px 0; }
.v3-footer-links { display: flex; gap: 48px; }
.v3-footer-links ul { list-style: none; margin: 0; padding: 0; }
.v3-footer-links li { margin-bottom: 8px; }
.v3-footer-links a { color: var(--v3-cream); text-decoration: none; font-size: 0.86rem; opacity: 0.85; }
.v3-footer-links a:hover { opacity: 1; text-decoration: underline; }
.v3-footer-social { display: flex; gap: 14px; margin-top: 10px; }
.v3-footer-social a { color: var(--v3-cream); opacity: 0.85; text-decoration: none; font-size: 0.9rem; }
.v3-footer-bottom { margin-top: 40px; padding-top: 18px; border-top: 1px solid rgba(243,232,210,0.2); display: flex; justify-content: space-between; flex-wrap: wrap; gap: 10px; font-size: 0.76rem; opacity: 0.7; }
@media (max-width: 760px) { .v3-footer-grid { flex-direction: column; } .v3-footer-links { gap: 24px; } }

/* ---------- section head (reused by several sections below) ---------- */
.v3-section-head { padding: 46px 0 24px; text-align: center; }
.v3-section-head .eyebrow { font-family: "Caveat", cursive; font-size: 1.2rem; color: var(--v3-accent); margin-bottom: 2px; }
.v3-section-head h2 { font-size: 1.8rem; font-style: italic; }
.v3-section-head p { color: var(--v3-ink-soft); font-size: 0.9rem; margin-top: 6px; }

/* ---------- popular flavors product grid ---------- */
.v3-flavor-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 16px; }
.v3-flavor-card { background: var(--v3-card); border: 1px solid var(--v3-line); border-radius: 10px; overflow: hidden; text-decoration: none; color: var(--v3-ink); position: relative; }
.v3-flavor-card img { width: 100%; aspect-ratio: 1; object-fit: cover; }
.v3-flavor-card .body { padding: 10px 12px 12px; }
.v3-flavor-card .name { font-weight: 600; font-size: 0.82rem; margin-bottom: 3px; line-height: 1.25; }
.v3-flavor-card .price { font-size: 0.8rem; color: var(--v3-accent); font-weight: 700; }
.v3-flavor-tag {
  position: absolute; top: 8px; left: 8px; background: var(--v3-ink); color: var(--v3-cream);
  font-size: 0.62rem; font-weight: 700; letter-spacing: 0.03em; padding: 3px 8px; border-radius: 999px;
}
.v3-flavor-more { text-align: center; margin-top: 24px; }
@media (max-width: 900px) { .v3-flavor-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 560px) { .v3-flavor-grid { grid-template-columns: repeat(2, 1fr); } }

/* ---------- box / bundle entry cards ---------- */
.v3-box-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.v3-box-card { background: var(--v3-card); border: 1px solid var(--v3-line); border-radius: 10px; padding: 26px 22px; text-decoration: none; color: var(--v3-ink); }
.v3-box-card .icon { font-size: 1.6rem; margin-bottom: 8px; }
.v3-box-card h3 { font-size: 1.1rem; margin-bottom: 6px; }
.v3-box-card p { font-size: 0.82rem; color: var(--v3-ink-soft); margin: 0 0 14px; }
.v3-box-card .go { font-size: 0.74rem; font-weight: 700; }
@media (max-width: 780px) { .v3-box-row { grid-template-columns: 1fr; } }

/* ---------- compact "other desserts" links band ---------- */
.v3-compact { background: var(--v3-card); border: 1px solid var(--v3-line); border-radius: 10px; padding: 26px 30px; display: flex; align-items: center; justify-content: space-between; gap: 20px; flex-wrap: wrap; }
.v3-compact h3 { font-size: 1.1rem; margin-bottom: 4px; }
.v3-compact p { color: var(--v3-ink-soft); font-size: 0.84rem; margin: 0; }
.v3-compact-links { display: flex; gap: 22px; flex-wrap: wrap; }
.v3-compact-links a { text-decoration: none; color: var(--v3-ink); font-size: 0.86rem; font-weight: 600; border-bottom: 1.5px solid var(--v3-accent); padding-bottom: 2px; }

/* ---------- pop-up & collaboration grid ---------- */
.v3-popup-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.v3-popup-card { background: var(--v3-card); border: 1px solid var(--v3-line); border-radius: 10px; padding: 22px 18px; text-align: center; }
.v3-popup-card .icon { font-size: 1.5rem; margin-bottom: 8px; }
.v3-popup-card h4 { font-family: "Fraunces", serif; font-size: 0.95rem; margin-bottom: 6px; }
.v3-popup-card p { font-size: 0.78rem; color: var(--v3-ink-soft); margin: 0 0 12px; line-height: 1.4; }
.v3-popup-card a { font-size: 0.72rem; font-weight: 700; text-decoration: none; color: var(--v3-ink); border-bottom: 1.5px solid var(--v3-accent); }
@media (max-width: 900px) { .v3-popup-grid { grid-template-columns: repeat(2, 1fr); } }
