/*
Theme Name: Magee Meadow Apiary
Theme URI: https://mageemeadowapiary.com
Author: Magee Meadow Apiary
Author URI: https://mageemeadowapiary.com
Description: A warm, honey-toned theme for Magee Meadow Apiary — East Texas raw honey and bees.
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: magee-meadow
Tags: agriculture, nature, bees, honey, warm, custom-colors
*/

/* ============================================================
   CSS CUSTOM PROPERTIES (overridden by Customizer via inline CSS)
   ============================================================ */
:root {
  --color-primary:     #C8860A;
  --color-secondary:   #8B5E3C;
  --color-accent:      #E8C97A;
  --color-bg:          #FDF8F0;
  --color-text:        #3D2B1F;
  --color-heading:     #6B4226;
  --color-nav-bg:      #2C1F12;
  --color-nav-text:    #FDF8F0;
  --color-footer-bg:   #2C1F12;
  --color-footer-text: #E8C97A;
  --color-btn:         #C8860A;
  --color-btn-text:    #FFFFFF;
  --color-sage:        #7A8C5E;
  --color-cream:       #FAF3E0;
  --color-border:      #E0C88A;

  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body:    'Lato', 'Helvetica Neue', sans-serif;

  --shadow-soft: 0 4px 24px rgba(60,30,10,0.10);
  --shadow-card: 0 2px 12px rgba(60,30,10,0.12);
  --radius:      12px;
  --radius-sm:   6px;
  --transition:  all 0.28s ease;
}

/* ============================================================
   RESET & BASE
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.7;
  color: var(--color-text);
  background-color: var(--color-bg);
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }

a { color: var(--color-primary); text-decoration: none; transition: var(--transition); }
a:hover { color: var(--color-secondary); }

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--color-heading);
  line-height: 1.25;
  font-weight: 600;
}

h1 { font-size: clamp(2rem, 5vw, 3.2rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.4rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.7rem); }
h4 { font-size: 1.2rem; }
h5 { font-size: 1rem; }

p { margin-bottom: 1.2em; }
p:last-child { margin-bottom: 0; }

ul, ol { padding-left: 1.5em; }
ul li, ol li { margin-bottom: 0.4em; }

/* ============================================================
   LAYOUT UTILITIES
   ============================================================ */
.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

.section { padding: 80px 0; }
.section-sm { padding: 50px 0; }
.section-lg { padding: 110px 0; }

.text-center { text-align: center; }
.text-left   { text-align: left; }

.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }

.flex-center { display: flex; align-items: center; justify-content: center; }
.flex-between { display: flex; align-items: center; justify-content: space-between; }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-block;
  padding: 14px 32px;
  background: var(--color-btn);
  color: var(--color-btn-text);
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border-radius: 50px;
  border: 2px solid var(--color-btn);
  cursor: pointer;
  transition: var(--transition);
}
.btn:hover {
  background: transparent;
  color: var(--color-btn);
  text-decoration: none;
}

.btn-outline {
  background: transparent;
  color: var(--color-btn);
  border: 2px solid var(--color-btn);
}
.btn-outline:hover {
  background: var(--color-btn);
  color: var(--color-btn-text);
}

.btn-white {
  background: #fff;
  color: var(--color-heading);
  border-color: #fff;
}
.btn-white:hover {
  background: transparent;
  color: #fff;
  border-color: #fff;
}

/* ============================================================
   NAVIGATION
   ============================================================ */
#site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--color-nav-bg);
  box-shadow: 0 2px 16px rgba(0,0,0,0.18);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 24px;
  max-width: 1180px;
  margin: 0 auto;
  height: 72px;
}

/* Logo / Site Title */
.site-branding {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
}
.site-branding img.custom-logo {
  height: 52px;
  width: auto;
}
.site-title-text {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  color: var(--color-nav-text);
  font-weight: 700;
  letter-spacing: 0.01em;
  line-height: 1.2;
}
.site-title-text small {
  display: block;
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-top: 2px;
}

/* Primary Menu */
#primary-menu {
  display: flex;
  list-style: none;
  padding: 0;
  margin: 0;
  gap: 4px;
}
#primary-menu li a {
  display: block;
  padding: 8px 18px;
  color: var(--color-nav-text);
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 50px;
  transition: var(--transition);
  text-decoration: none;
}
#primary-menu li a:hover,
#primary-menu li.current-menu-item > a,
#primary-menu li.current_page_item > a {
  background: var(--color-primary);
  color: #fff;
}

/* Hamburger */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
}
.nav-toggle span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--color-nav-text);
  border-radius: 2px;
  transition: var(--transition);
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 560px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--color-secondary);
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('images/hives-field.jpg');
  background-size: cover;
  background-position: center 30%;
  filter: brightness(0.52);
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 680px;
  padding: 80px 24px;
  margin: 0 auto 0 80px;
}
.hero-eyebrow {
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.hero-eyebrow::before {
  content: '';
  display: block;
  width: 32px;
  height: 1px;
  background: var(--color-accent);
}
.hero h1 {
  color: #fff;
  margin-bottom: 20px;
  text-shadow: 0 2px 12px rgba(0,0,0,0.4);
}
.hero p {
  color: rgba(255,255,255,0.88);
  font-size: 1.15rem;
  margin-bottom: 32px;
  max-width: 500px;
}

/* ============================================================
   SECTION HEADERS
   ============================================================ */
.section-header {
  text-align: center;
  margin-bottom: 56px;
}
.section-header h2 { margin-bottom: 14px; }
.section-header p {
  max-width: 560px;
  margin: 0 auto;
  color: var(--color-secondary);
  font-size: 1.05rem;
}
.section-eyebrow {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-primary);
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.section-eyebrow::before,
.section-eyebrow::after {
  content: '';
  display: block;
  width: 24px;
  height: 1px;
  background: var(--color-primary);
}

/* Honeycomb divider */
.honeycomb-divider {
  text-align: center;
  margin: 16px 0 32px;
  color: var(--color-accent);
  font-size: 1.4rem;
  letter-spacing: 8px;
}

/* ============================================================
   ABOUT / INTRO STRIP (Homepage)
   ============================================================ */
.intro-strip {
  background: var(--color-cream);
  border-top: 3px solid var(--color-border);
  border-bottom: 3px solid var(--color-border);
}
.intro-strip .container {
  display: flex;
  align-items: center;
  gap: 64px;
}
.intro-strip-text { flex: 1; }
.intro-strip-text h2 { margin-bottom: 20px; }
.intro-strip-image {
  flex: 1;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  max-height: 450px;
}
.intro-strip-image img {
  width: 100%;
  height: 450px;
  object-fit: cover;
  object-position: center top;
  transition: transform 0.5s ease;
}
.intro-strip-image:hover img { transform: scale(1.03); }

/* ============================================================
   PRODUCT FEATURE (Homepage)
   ============================================================ */
.product-feature {
  background: var(--color-bg);
}
.product-feature-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.product-feature-image {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}
.product-feature-image img {
  width: 100%;
  height: 460px;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.product-feature-image:hover img { transform: scale(1.03); }
.product-feature-text h2 { margin-bottom: 18px; }
.product-feature-text p { margin-bottom: 28px; color: var(--color-secondary); }

/* ============================================================
   HONEY HIGHLIGHT STRIP
   ============================================================ */
.honey-strip {
  background: var(--color-primary);
  padding: 60px 0;
  text-align: center;
}
.honey-strip h2 {
  color: #fff;
  margin-bottom: 14px;
}
.honey-strip p {
  color: rgba(255,255,255,0.88);
  font-size: 1.1rem;
  max-width: 560px;
  margin: 0 auto 28px;
}

/* ============================================================
   BEEKEEPER PORTRAIT (Homepage)
   ============================================================ */
.beekeepers-section {
  background: var(--color-cream);
}
.beekeepers-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.beekeeper-photo {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  position: relative;
}
.beekeeper-photo img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  object-position: center top;
}
.beekeeper-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(44,31,18,0.82));
  padding: 36px 24px 24px;
  color: #fff;
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-style: italic;
}
.beekeepers-text h2 { margin-bottom: 18px; }
.beekeepers-text p { margin-bottom: 18px; }

/* ============================================================
   CARDS (Products, Blog, Bees)
   ============================================================ */
.card {
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(200,134,10,0.1);
}
.card:hover {
  box-shadow: var(--shadow-soft);
  transform: translateY(-4px);
}
.card-image {
  height: 210px;
  overflow: hidden;
  background: var(--color-accent);
}
.card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.card:hover .card-image img { transform: scale(1.06); }
.card-icon {
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--color-accent), var(--color-cream));
  font-size: 3.5rem;
}
.card-body {
  padding: 28px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.card-tag {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-primary);
  margin-bottom: 8px;
}
.card-body h3 { margin-bottom: 12px; font-size: 1.2rem; }
.card-body p { color: var(--color-secondary); font-size: 0.95rem; flex: 1; }
.card-footer {
  padding: 0 28px 28px;
}

/* ============================================================
   PRODUCTS PAGE
   ============================================================ */
.products-hero {
  background: linear-gradient(135deg, var(--color-secondary) 0%, var(--color-heading) 100%);
  padding: 80px 0;
  text-align: center;
}
.products-hero h1 { color: #fff; margin-bottom: 14px; }
.products-hero p { color: rgba(255,255,255,0.85); font-size: 1.1rem; max-width: 560px; margin: 0 auto; }

.product-card {
  display: grid;
  grid-template-columns: 1fr 3fr;
  gap: 0;
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  margin-bottom: 32px;
  border: 1px solid var(--color-border);
  transition: var(--transition);
}
.product-card:hover {
  box-shadow: var(--shadow-soft);
  transform: translateY(-3px);
}
.product-card-icon {
  background: linear-gradient(135deg, var(--color-accent), var(--color-cream));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3.5rem;
  min-height: 160px;
  padding: 32px;
}
.product-card-body { padding: 32px; }
.product-card-body h3 { color: var(--color-heading); margin-bottom: 10px; }
.product-card-body p { color: var(--color-secondary); margin-bottom: 20px; font-size: 0.98rem; }

.order-note {
  background: linear-gradient(135deg, var(--color-accent), var(--color-cream));
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 40px;
  text-align: center;
  margin-top: 60px;
}
.order-note h3 { margin-bottom: 14px; }
.order-note p { margin-bottom: 24px; color: var(--color-secondary); max-width: 560px; margin: 0 auto 24px; }

/* ============================================================
   PODCAST PAGE
   ============================================================ */
.podcast-hero {
  background: linear-gradient(135deg, var(--color-heading) 0%, var(--color-secondary) 100%);
  padding: 100px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.podcast-hero::before {
  content: '🎙️';
  position: absolute;
  font-size: 18rem;
  opacity: 0.06;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}
.podcast-hero h1 { color: #fff; margin-bottom: 16px; }
.podcast-hero .badge {
  display: inline-block;
  background: var(--color-primary);
  color: #fff;
  padding: 6px 20px;
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 24px;
}
.podcast-coming-soon {
  max-width: 680px;
  margin: 0 auto;
  padding: 80px 24px;
  text-align: center;
}
.podcast-coming-soon .bee-icon {
  font-size: 5rem;
  margin-bottom: 28px;
  display: block;
  animation: float 3s ease-in-out infinite;
}
@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-12px); }
}
.podcast-coming-soon h2 { margin-bottom: 20px; }
.podcast-coming-soon p { color: var(--color-secondary); font-size: 1.08rem; margin-bottom: 20px; }
.notify-form {
  display: flex;
  gap: 12px;
  max-width: 440px;
  margin: 32px auto 0;
}
.notify-form input[type="email"] {
  flex: 1;
  padding: 14px 20px;
  border: 2px solid var(--color-border);
  border-radius: 50px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  background: var(--color-cream);
  color: var(--color-text);
  outline: none;
  transition: var(--transition);
}
.notify-form input[type="email"]:focus {
  border-color: var(--color-primary);
}

/* ============================================================
   BEES PAGE
   ============================================================ */
.bees-hero {
  background-image: url('images/hives-field.jpg');
  background-size: cover;
  background-position: center;
  position: relative;
  padding: 120px 0;
  text-align: center;
}
.bees-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(44,31,18,0.65);
}
.bees-hero .container { position: relative; z-index: 2; }
.bees-hero h1 { color: #fff; margin-bottom: 16px; }
.bees-hero p { color: rgba(255,255,255,0.88); font-size: 1.12rem; max-width: 560px; margin: 0 auto; }

.bee-fact-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 36px 28px;
  text-align: center;
  box-shadow: var(--shadow-card);
  border-top: 4px solid var(--color-primary);
  transition: var(--transition);
}
.bee-fact-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-soft);
}
.bee-fact-card .bee-emoji { font-size: 2.8rem; margin-bottom: 16px; display: block; }
.bee-fact-card h3 { margin-bottom: 12px; font-size: 1.15rem; }
.bee-fact-card p { color: var(--color-secondary); font-size: 0.94rem; }

.bee-cta {
  background: var(--color-heading);
  padding: 70px 0;
  text-align: center;
}
.bee-cta h2 { color: var(--color-accent); margin-bottom: 16px; }
.bee-cta p { color: rgba(255,255,255,0.85); max-width: 520px; margin: 0 auto 28px; }

/* ============================================================
   BLOG
   ============================================================ */
.blog-hero {
  background: var(--color-cream);
  padding: 70px 0;
  text-align: center;
  border-bottom: 3px solid var(--color-border);
}
.blog-hero h1 { margin-bottom: 12px; }
.blog-hero p { color: var(--color-secondary); }

.blog-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 48px;
  align-items: start;
}
.post-card {
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  margin-bottom: 36px;
  border: 1px solid rgba(200,134,10,0.1);
  transition: var(--transition);
}
.post-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-soft); }
.post-card-image {
  height: 260px;
  overflow: hidden;
  background: var(--color-accent);
}
.post-card-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; }
.post-card:hover .post-card-image img { transform: scale(1.05); }
.post-card-body { padding: 32px; }
.post-meta {
  font-size: 0.8rem;
  color: var(--color-primary);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.post-card-body h2 { font-size: 1.4rem; margin-bottom: 14px; }
.post-card-body h2 a { color: var(--color-heading); }
.post-card-body h2 a:hover { color: var(--color-primary); }
.post-card-body p { color: var(--color-secondary); font-size: 0.96rem; }

/* Sidebar */
.sidebar .widget {
  background: #fff;
  border-radius: var(--radius);
  padding: 28px;
  margin-bottom: 28px;
  box-shadow: var(--shadow-card);
  border: 1px solid rgba(200,134,10,0.1);
}
.sidebar .widget-title {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  color: var(--color-heading);
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--color-border);
}
.sidebar ul { list-style: none; padding: 0; }
.sidebar ul li { padding: 6px 0; border-bottom: 1px solid var(--color-cream); font-size: 0.93rem; }
.sidebar ul li:last-child { border-bottom: none; }
.sidebar ul li a { color: var(--color-text); }
.sidebar ul li a:hover { color: var(--color-primary); }

/* Single post */
.post-content { max-width: 760px; margin: 0 auto; }
.post-content h2,
.post-content h3 { margin: 36px 0 16px; }
.post-content p { margin-bottom: 1.5em; }
.post-content ul, .post-content ol { margin-bottom: 1.5em; }
.post-content img { border-radius: var(--radius-sm); margin: 24px 0; }
.post-content blockquote {
  border-left: 4px solid var(--color-primary);
  padding: 16px 24px;
  background: var(--color-cream);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  margin: 24px 0;
  font-style: italic;
  color: var(--color-secondary);
}

/* ============================================================
   PAGE BANNER (generic pages)
   ============================================================ */
.page-banner {
  background: linear-gradient(135deg, var(--color-cream), var(--color-accent));
  padding: 64px 0;
  text-align: center;
  border-bottom: 3px solid var(--color-border);
}
.page-banner h1 { margin-bottom: 8px; }
.page-banner p { color: var(--color-secondary); }

/* ============================================================
   FOOTER
   ============================================================ */
#site-footer {
  background: var(--color-footer-bg);
  color: var(--color-footer-text);
  padding: 64px 0 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 56px;
}
.footer-brand .footer-logo-text {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  color: var(--color-accent);
  margin-bottom: 6px;
  display: block;
}
.footer-brand .footer-tagline {
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-bottom: 20px;
}
.footer-brand p {
  font-size: 0.92rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.7;
  margin-bottom: 0;
}
.footer-col h4 {
  color: var(--color-accent);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 18px;
  font-family: var(--font-body);
}
.footer-col ul { list-style: none; padding: 0; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a {
  color: rgba(255,255,255,0.65);
  font-size: 0.92rem;
  transition: var(--transition);
}
.footer-col ul li a:hover { color: var(--color-accent); padding-left: 4px; }
.footer-col p {
  color: rgba(255,255,255,0.65);
  font-size: 0.92rem;
  line-height: 1.8;
}
.footer-col p a { color: rgba(255,255,255,0.65); }
.footer-col p a:hover { color: var(--color-accent); }

/* Social icons */
.social-links {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 16px;
}
.social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: rgba(255,255,255,0.1);
  border-radius: 50%;
  color: rgba(255,255,255,0.75);
  font-size: 1rem;
  transition: var(--transition);
  text-decoration: none;
}
.social-links a:hover {
  background: var(--color-primary);
  color: #fff;
}

/* Footer bottom bar */
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom p {
  color: rgba(255,255,255,0.4);
  font-size: 0.82rem;
  margin: 0;
}
.footer-bottom a { color: var(--color-accent); }

/* ============================================================
   BREADCRUMBS
   ============================================================ */
.breadcrumb {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.6);
  margin-bottom: 12px;
}
.breadcrumb a { color: var(--color-accent); }
.breadcrumb span { margin: 0 6px; }

/* ============================================================
   PAGINATION
   ============================================================ */
.pagination {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 48px;
}
.pagination a,
.pagination span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  font-weight: 700;
  font-size: 0.92rem;
  border: 2px solid var(--color-border);
  color: var(--color-heading);
  transition: var(--transition);
}
.pagination a:hover,
.pagination .current {
  background: var(--color-primary);
  border-color: var(--color-primary);
  color: #fff;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .product-card { grid-template-columns: 1fr; }
  .product-card-icon { min-height: 100px; padding: 24px; }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .blog-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .nav-toggle { display: flex; }
  #primary-menu {
    display: none;
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    background: var(--color-nav-bg);
    flex-direction: column;
    padding: 16px;
    gap: 4px;
    border-top: 1px solid rgba(255,255,255,0.1);
  }
  #primary-menu.open { display: flex; }
  #primary-menu li a { padding: 12px 20px; border-radius: var(--radius-sm); }

  .hero-content { margin: 0 auto; text-align: center; padding: 64px 24px; }
  .hero p { margin: 0 auto 32px; }
  .hero-eyebrow { justify-content: center; }

  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .intro-strip .container { flex-direction: column; }
  .product-feature-grid { grid-template-columns: 1fr; }
  .product-feature-image { order: -1; }
  .product-feature-image img { height: 300px; }
  .beekeepers-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .notify-form { flex-direction: column; }
  .section { padding: 56px 0; }
}

@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr; }
  .hero { min-height: 460px; }
  .products-hero { padding: 60px 0; }
}
