/* ============================================
   HFN Core — Shared Page Styles
   Palette: warm cream, deep forest green, golden honey, charcoal
   ============================================ */

:root {
  --hfn-green: #2d5016;
  --hfn-green-mid: #4a7c2f;
  --hfn-honey: #c8860a;
  --hfn-cream: #f7f2e8;
  --hfn-cream-dark: #ede5d0;
  --hfn-charcoal: #1e1e1e;
  --hfn-muted: #6b6b6b;
  --hfn-white: #ffffff;
  --hfn-whatsapp: #25d366;

  --hfn-font-display: "Georgia", "Times New Roman", serif;
  --hfn-font-body: system-ui, -apple-system, sans-serif;

  --hfn-radius: 10px;
  --hfn-shadow: 0 2px 16px rgba(0, 0, 0, 0.08);
}

/* ── Reset & Base ── */
.hfn-page * {
  box-sizing: border-box;
}

.hfn-page {
  font-family: var(--hfn-font-body);
  color: var(--hfn-charcoal);
  background: var(--hfn-white);
}

/* ── Layout ── */
.hfn-container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
}

.hfn-section {
  padding: 72px 0;
}

.hfn-section--tinted {
  background: var(--hfn-cream);
}

/* ── Hero ── */
.hfn-hero {
  background: var(--hfn-green);
  color: var(--hfn-white);
  padding: 96px 0 80px;
  text-align: center;
}

.hfn-hero--short {
  padding: 64px 0 56px;
}

.hfn-eyebrow {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--hfn-honey);
  margin-bottom: 16px;
}

.hfn-hero h1 {
  font-family: var(--hfn-font-display);
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 700;
  line-height: 1.15;
  margin: 0 0 16px;
  color: var(--hfn-white);
}

.hfn-hero p {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.82);
  max-width: 560px;
  margin: 0 auto 32px;
  line-height: 1.65;
}

/* ── Hero Banner Image ── */
.hfn-hero-banner {
  width: 100%;
  line-height: 0;
}

.hfn-hero-banner-img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

/* ── Hero Action Bar (short, below banner) ── */
.hfn-hero-actions-bar {
  background: var(--hfn-cream);
  padding: 32px 0;
  text-align: center;
  border-bottom: 5px solid var(--hfn-cream-dark);
}

.hfn-hero-actions-bar h1 {
  font-family: var(--hfn-font-display);
  font-size: clamp(1.4rem, 3vw, 1.9rem);
  color: var(--hfn-green);
  margin: 0;
}

/* ── Buttons ── */
.hfn-hero-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

.hfn-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  border-radius: var(--hfn-radius);
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition:
    opacity 0.18s,
    transform 0.18s;
}

.hfn-btn:hover {
  opacity: 0.88;
  transform: translateY(-1px);
}

.hfn-btn--primary {
  background: var(--hfn-honey);
  color: var(--hfn-white);
}

.hfn-btn--whatsapp {
  background: var(--hfn-whatsapp);
  color: var(--hfn-white);
}

.hfn-btn--large {
  padding: 16px 36px;
  font-size: 1.05rem;
}

.hfn-btn--outline {
  background: transparent;
  color: var(--hfn-green);
  border: 2px solid var(--hfn-green);
}

.hfn-btn--outline:hover {
  background: var(--hfn-green);
  color: var(--hfn-white);
  opacity: 1;
}

.hfn-section-footer {
  text-align: center;
  margin-top: 32px;
}

/* ── Section Headings ── */
.hfn-section h2,
.hfn-about h2,
.hfn-contact h2 {
  font-family: var(--hfn-font-display);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  color: var(--hfn-green);
  margin: 0 0 40px;
  text-align: center;
}

/* ── 3-Column Grid ── */
.hfn-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

/* ── Cards ── */
.hfn-card {
  background: var(--hfn-white);
  border: 1px solid var(--hfn-cream-dark);
  border-radius: var(--hfn-radius);
  padding: 32px 24px;
  text-align: center;
  box-shadow: var(--hfn-shadow);
}

.hfn-card h3 {
  font-family: var(--hfn-font-display);
  font-size: 1.1rem;
  color: var(--hfn-green);
  margin: 12px 0 8px;
}

.hfn-card p {
  font-size: 0.9rem;
  color: var(--hfn-muted);
  line-height: 1.6;
  margin: 0;
}

.hfn-icon {
  font-size: 2rem;
  display: block;
}

/* ── Two Column (About) ── */
.hfn-two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}

.hfn-text-block h2 {
  text-align: left;
  margin-bottom: 20px;
}

.hfn-text-block p {
  color: var(--hfn-muted);
  line-height: 1.75;
  margin-bottom: 16px;
}

.hfn-image-placeholder {
  background: var(--hfn-cream);
  border-radius: var(--hfn-radius);
  min-height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--hfn-muted);
  font-size: 0.9rem;
  border: 2px dashed var(--hfn-cream-dark);
}

/* ── Contact Page ── */
.hfn-contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}

.hfn-contact-card--main {
  background: var(--hfn-cream);
  border-radius: var(--hfn-radius);
  padding: 48px 36px;
  text-align: center;
  border: 1px solid var(--hfn-cream-dark);
}

.hfn-contact-card--main h2 {
  text-align: center;
  margin-bottom: 12px;
}

.hfn-contact-card--main p {
  color: var(--hfn-muted);
  margin-bottom: 28px;
  line-height: 1.65;
}

.hfn-contact-info {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding-top: 16px;
}

.hfn-info-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.hfn-info-item .hfn-icon {
  font-size: 1.4rem;
  flex-shrink: 0;
}

.hfn-info-item strong {
  display: block;
  color: var(--hfn-green);
  font-size: 0.9rem;
  margin-bottom: 2px;
}
.hfn-info-item p {
  margin: 0;
  color: var(--hfn-muted);
  font-size: 0.95rem;
}

/* ── WooCommerce Product Grid ── */
.woocommerce ul.products {
  text-align: center;
}
.woocommerce ul.products li.product img {
  border: 1px solid var(--hfn-cream-dark);
  border-radius: var(--hfn-radius);
  padding: 6px;
  background: var(--hfn-white);
  display: inline-block;
  box-sizing: border-box;
}

.woocommerce ul.products li.product .price {
  color: var(--hfn-charcoal);
  font-family: var(--hfn-font-body);
  font-weight: 700;
  font-size: 1.05rem;
  margin: 8px 0 16px;
}

.woocommerce ul.products li.product .price del {
  color: var(--hfn-muted);
  text-decoration: line-through;
}

.woocommerce ul.products li.product .price ins,
.woocommerce ul.products li.product .price ins .amount {
  color: var(--hfn-green);
  font-weight: 700;
  text-decoration: none;
}

.woocommerce ul.products li.product .button,
.woocommerce ul.products li.product a.add_to_cart_button {
  background: var(--hfn-green);
  color: var(--hfn-white);
  border-radius: var(--hfn-radius);
  font-weight: 600;
  font-size: 0.9rem;
  padding: 10px 20px;
  border: none;
  transition:
    opacity 0.18s,
    transform 0.18s;
}

.woocommerce ul.products li.product .button:hover,
.woocommerce ul.products li.product a.add_to_cart_button:hover {
  background: var(--hfn-honey);
  color: var(--hfn-white);
  opacity: 0.92;
  transform: translateY(-1px);
}

/* ── Responsive ── */
@media (max-width: 768px) {
  .hfn-grid-3,
  .hfn-two-col,
  .hfn-contact-grid {
    grid-template-columns: 1fr;
  }

  .hfn-section {
    padding: 48px 0;
  }

  .hfn-hero-actions-bar {
    padding: 16px 0;
  }

  .hfn-text-block h2 {
    text-align: center;
  }
  ul.products.columns-4 {
    display: grid;
    grid-template-columns: repeat(2, 1fr) !important;
  }
  ul.products.columns-4::before {
    display: none !important;
  }
  /* menu */
  .site-header .inside-header {
    padding-right: 20px;
    padding-left: 20px;
  }
}
