


/* === Click-to-Expand Lightbox === */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 12px;
}
.gallery-grid a {
  display: block;
  line-height: 0;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}
.gallery-grid img {
  width: 100%;
  height: auto;
  border-radius: 0;
  transition: transform 0.2s ease, opacity 0.2s ease;
}
.gallery-grid a:hover img,
.gallery-grid a:focus img {
  transform: scale(1.03);
  opacity: 0.95;
}

/* Lightbox overlay */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  z-index: 9999;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
}
.lightbox[aria-hidden="false"] {
  opacity: 1;
  pointer-events: auto;
}
.lightbox img.lightbox-image {
  max-width: 92vw;
  max-height: 82vh;
  border-radius: 8px;
  background: #fff;
}
.lightbox-caption {
  color: #fff;
  text-align: center;
  margin-top: 10px;
  max-width: 92vw;
  font-size: 0.95rem;
}

/* Controls */
.lightbox-close,
.lightbox-prev,
.lightbox-next {
  position: absolute;
  background: rgba(0,0,0,0.5);
  color: #fff;
  border: none;
  font-size: 26px;
  line-height: 1;
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  cursor: pointer;
  border-radius: 50%;
  transition: background 0.2s ease;
}
.lightbox-close:hover, .lightbox-prev:hover, .lightbox-next:hover {
  background: rgba(0,0,0,0.7);
}
.lightbox-close { top: 18px; right: 18px; }
.lightbox-prev { left: 18px; }
.lightbox-next { right: 18px; }


/* === Migrated from index.html inline <style> === */

    :root { --accent: #111111; --muted: #555555;
      --accent: #0f5132;
      --muted: #6c757d;
    }
    html, body {
      margin: 0;
      padding: 0;
      background: #ffffff;
      color: #111111;
      font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, "Apple Color Emoji", "Segoe UI Emoji";
      line-height: 1.6;
    }
    .wrap {
      max-width: 860px;
      margin: 0 auto;
      padding: 32px 20px 80px;
    }
    header h1 {
      font-size: 2.2rem;
      margin: 0 0 8px;
      letter-spacing: -0.02em;
    }
    .meta {
      color: var(--muted);
      font-size: 0.95rem;
      margin-bottom: 24px;
    }
    .hero {
      width: 100%;
      border-radius: 10px;
      display: block;
      margin: 8px 0 22px;
    }
    .toc {
      background: #f8f9fa;
      border: 1px solid #e9ecef;
      border-radius: 10px;
      padding: 16px;
      margin: 24px 0;
    }
    .toc h3 { margin: 0 0 8px; }
    .toc a { color: #0d6efd; text-decoration: none; }
    h2 {
      margin-top: 36px;
      border-bottom: 1px solid #eee;
      padding-bottom: 6px;
      font-size: 1.6rem;
    }
    h3 { margin-top: 22px; font-size: 1.25rem; }
    .tip {
      background: #f1f8f5;
      border-left: 4px solid var(--accent);
      padding: 12px 14px;
      border-radius: 8px;
      margin: 16px 0;
      font-size: 0.98rem;
    }
    .grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
      gap: 16px;
      margin: 16px 0 8px;
    }
    .card {
      border: 1px solid #e9ecef;
      border-radius: 10px;
      padding: 14px;
    }
    .card img {
      width: 100%;
      height: 150px;
      object-fit: cover;
      border-radius: 8px;
      background: #f3f3f3;
    }
    .price { color: var(--accent); font-weight: 600; }
    .btn {
      display: inline-block;
      padding: 10px 14px;
      border-radius: 8px;
      border: 1px solid #111;
      text-decoration: none;
      color: #111;
      font-weight: 600;
    }
    .btn:hover { background: #000; color: #fff; }
    .disclosure {
      font-size: 0.9rem;
      color: var(--muted);
      border-top: 1px dashed #e5e5e5;
      margin-top: 28px;
      padding-top: 12px;
    }
    footer {
      margin-top: 48px;
      font-size: 0.9rem;
      color: var(--muted);
    }
    figure { margin: 0; }
    figcaption { font-size: 0.9rem; color: var(--muted); margin-top: 6px; }
    .cta {
      background: #000;
      color: #fff;
      border-radius: 10px;
      padding: 18px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 10px;
      flex-wrap: wrap;
      margin: 28px 0;
    }
    .cta a.btn { border-color: #fff; color: #fff; }
    .cta a.btn:hover { background: #fff; color: #111; }
    .pin-desc {
      font-size: 0.95rem;
      color: var(--muted);
      background: #fafafa;
      border: 1px solid #eee;
      border-radius: 8px;
      padding: 10px;
      margin-top: 8px;
    }
    .faq dt { font-weight: 700; margin-top: 12px; }
    .faq dd { margin: 4px 0 12px 0; }
    @media print {
      .btn, .cta { display: none; }
    }
  nav a.active { font-weight: bold; color: var(--accent-2); text-decoration: underline; }

/* === Lightbox Gallery === */
#lightbox {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0,0,0,0.8);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 999;
}
#lightbox img {
  max-width: 90%;
  max-height: 90%;
  border-radius: 8px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.3);
}


/* --- Lightbox (click-to-enlarge) --- */
#lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.8);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}
#lightbox img {
  max-width: 90vw;
  max-height: 90vh;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0,0,0,.4);
}
.gallery img { cursor: zoom-in; }




/* === Cottagecore Theme Overrides === */
:root{
  --bg: #fffaf3;            /* cream */
  --paper: #fffdf8;         /* lighter cream */
  --ink: #2b2b2b;           /* soft black */
  --accent: #6b8f71;        /* moss green */
  --accent-2: #c27b68;      /* terracotta/rose clay */
  --muted: #6d6a5f;         /* taupe */
  --line: #e9e1d6;          /* parchment edge */
}
html, body{
  background: var(--bg);
  color: var(--ink);
  font-family: Georgia, "Times New Roman", Times, serif;
}
.wrap{
  background: var(--paper);
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 28px 22px 64px;
}
header h1{
  letter-spacing: 0;
  color: #3a3a3a;
}
.hero{
  border: 1px solid var(--line);
  background: #f8f3ea;
}
.toc{
  background: #f9f4ec;
  border: 1px solid var(--line);
}
a{ color: var(--accent-2); }
a:hover{ color: var(--accent); }
h2{
  border-bottom: 1px dashed var(--line);
  color: #36332d;
}
h3{ color: #3f3b34; }
.tip{
  background: #f4f0e7;
  border-left: 4px solid var(--accent);
}
.card{
  border: 1px solid var(--line);
  background: #fffcf6;
}
.card img{
  background: #f2ede3;
  border: 1px solid var(--line);
}
.price{ color: var(--accent-2); }
.btn{
  border: 1px solid var(--accent);
  color: #2f4236;
}
.btn:hover{
  background: var(--accent);
  color: #fff;
}
.cta{
  background: linear-gradient(180deg, #6b8f71 0%, #5d8164 100%);
  color: #fff;
  border: none;
}
.cta a.btn{
  border-color: #fff;
  color: #fff;
}
.cta a.btn:hover{
  background: #fff;
  color: #2f4236;
}
footer{
  color: var(--muted);
}
/* Header nav tweaks */
main.wrap > header:first-of-type{
  border-bottom: 1px dashed var(--line);
  padding-bottom: 12px;
  margin-bottom: 18px;
}
main.wrap > header:first-of-type nav a{
  color: #3c3a36;
}
main.wrap > header:first-of-type nav a:hover{
  color: var(--accent-2);
}



/* Force the Farm Gallery to use small, inline thumbnails */
#gallery .container { max-width: 820px; margin: 0 auto; padding: 0 1rem; }
#gallery img {
  width: 140px !important;
  height: 100px !important;
  object-fit: cover !important;
  display: inline-block !important;
  border-radius: 6px;
  margin: 0 10px 10px 0;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}
#gallery .gallery-grid, #gallery .thumb-gallery, #gallery .grid, #gallery .images, #gallery div {
  display: flex !important;
  flex-wrap: wrap !important;
  gap: 10px !important;
}


/* === Product Picks Grid === */
.product-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 16px; margin-top: 12px; }
.product.card { display:flex; flex-direction:column; text-align:left; }
.product.card img { width:100%; height:auto; border-radius:6px; display:block; }
.product.card h3 { margin:10px 0 6px; font-size:1.05rem; }
.product.card p { margin:0 0 10px; color: rgba(0,0,0,0.7); }
.product.card .btn { align-self:flex-start; text-decoration:none; padding:8px 12px; border:1px solid rgba(0,0,0,0.15); border-radius:6px; font-weight:600; }
.product.card .btn:hover { filter: brightness(0.95); }
.muted { color: rgba(0,0,0,0.6); }
/* optional card style if missing */
.card { background:#fff; border:1px solid rgba(0,0,0,0.08); border-radius:10px; padding:16px; margin:16px 0; box-shadow:0 2px 8px rgba(0,0,0,0.03); }

/* Tighter spacing between stacked cards */
.card + .card {
  margin-top: 20px;
}


section.card {
  padding: 20px;
}

/* ===== Footer ===== */
.site-footer{
  background: var(--cream);
  color: var(--ink);
  border-top: 1px solid rgba(0,0,0,.08);
  margin-top: 40px;
}
.site-footer a{ color: var(--ink); text-decoration: none; }
.site-footer a:hover{ text-decoration: underline; }
.site-footer .footer-wrap{
  padding: 28px 16px;
  grid-template-columns: repeat(12, 1fr);
  align-items: start;
  gap: 18px;
  max-width: 1100px;
  margin: 0 auto;
}
.site-footer .col{ grid-column: span 12; }
.site-footer h4{ margin: 0 0 10px; font-size: 18px; }
.site-footer p{ margin: 4px 0; opacity: .9; }
.site-footer .links{ list-style: none; padding: 0; margin: 0; }
.site-footer .links li{ margin: 6px 0; }

/* desktop columns */
@media (min-width: 900px){
  .site-footer .col:nth-child(1){ grid-column: span 5; }
  .site-footer .col:nth-child(2){ grid-column: span 4; }
  .site-footer .col:nth-child(3){ grid-column: span 3; text-align: left; }
}


.site-footer .footer-social {
  margin-top: 8px;
}

.site-footer .footer-social-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  color: inherit;
  font-weight: 500;
}

.site-footer .footer-social-icon {
  width: 20px;
  height: 20px;
  display: block;
}

.site-footer .copyright{
  border-top: 1px solid rgba(0,0,0,.06);
  text-align: center;
  padding: 12px 16px 18px;
  font-size: 14px;
  opacity: .8;
}
.site-footer .heart{ filter: saturate(1.2); }