:root {
  --olive-dark: #3d5a1f;
  --sage: #7a8f52;
  --olive-deep: #4f6b2b;
  --brown-dark: #3d5a1f;
  --brown: #4f6b2b;
  --brown-mid: #5c7a34;
  --gold: #7a8f52;
  --gold-dark: #4f6b2b;
  --rust: #8a3b2b;
  --cream: #ffffff;
  --cream-dark: #e3e6da;
  --paper: #f4f4f0;
  --ink: #222222;
  --danger: #a33b2b;
  --success: #3d5a1f;
  --page-bg: #eef0e6;
  --font-display: Georgia, 'Times New Roman', serif;
  --font-body: Arial, Helvetica, sans-serif;
  --font-hand: Georgia, 'Times New Roman', serif;
  --font-warehouse: Georgia, 'Times New Roman', serif;
  font-size: 16px;
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.6;
  background-color: var(--page-bg);
}

h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.2;
}
.brand-name { font-family: var(--font-display); }
.brand-sub { font-family: var(--font-display); font-style: italic; }

a { color: var(--olive-dark); text-decoration: none; }
a:hover { color: var(--olive-deep); text-decoration: underline; }

p { max-width: 62ch; }
.product-description { max-width: 58ch; }

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

.section { padding: 40px 24px; }
.section.narrow { max-width: 700px; margin: 0 auto; }

.reveal { opacity: 1; transform: none; }

/* ---------- Utility bar ---------- */
.utility-bar { background: var(--olive-dark); }
.utility-bar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 7px 24px;
}
.utility-home {
  color: #fff;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.8rem;
}
.utility-home:hover { color: #fff; text-decoration: underline; }
.utility-search { display: flex; gap: 6px; align-items: center; }
.utility-search input {
  border: 1px solid #999;
  padding: 4px 6px;
  font-size: 0.75rem;
  font-family: var(--font-body);
  color: #666;
  width: 180px;
  max-width: 40vw;
}
.utility-search button {
  border: 1px solid #999;
  background: #e8e8e8;
  color: #222;
  padding: 4px 12px;
  font-size: 0.78rem;
  font-weight: 700;
  font-family: var(--font-body);
  cursor: pointer;
}
.utility-search button:hover { background: #ddd; }

/* ---------- Header ---------- */
.site-header {
  background: var(--cream);
  border-bottom: none;
}
.header-inner {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding-top: 16px;
  padding-bottom: 12px;
  flex-wrap: wrap;
  gap: 14px;
  position: relative;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}
.brand-frame {
  display: inline-flex;
  width: 64px;
  height: 78px;
  padding: 4px;
  border: 2px solid #222;
  align-items: center;
  justify-content: center;
  background: #fff;
  flex-shrink: 0;
}
.brand-logo { width: 100%; height: 100%; display: block; }
.brand-text { display: flex; flex-direction: column; line-height: 1.15; }
.brand-name { color: #222; font-size: 1.5rem; font-weight: 700; letter-spacing: 1px; }
.brand-sub { color: #444; font-size: 0.95rem; }

.header-contact {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  text-align: right;
  gap: 8px;
  margin-left: auto;
}
.header-phone { color: #222; font-family: var(--font-display); font-weight: 700; font-size: 1.5rem; }
.header-phone:hover { color: var(--olive-deep); }
.header-address { color: #222; font-family: var(--font-display); font-size: 0.85rem; letter-spacing: 1px; max-width: 30ch; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.nav-toggle span { width: 24px; height: 2px; background: #222; display: block; }

.main-nav { display: flex; gap: 4px; align-items: stretch; flex-wrap: wrap; width: 100%; justify-content: flex-end; margin-top: 8px; }
.main-nav a {
  color: #fff;
  background: var(--sage);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  padding: 11px 18px;
  display: inline-block;
}
.main-nav a:hover, .main-nav a.active { background: var(--olive-deep); text-decoration: none; }

@media (max-width: 720px) {
  .nav-toggle { display: flex; }
  .main-nav {
    display: none;
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    padding: 10px 0 4px;
  }
  .main-nav a { text-align: center; }
  .main-nav.is-open { display: flex; }
  .header-contact { align-items: flex-start; text-align: left; margin-left: 0; }
}

/* ---------- Hero ---------- */
.hero {
  background: var(--paper);
  border-bottom: 1px solid var(--cream-dark);
}
.hero-inner {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 40px;
  align-items: center;
  padding: 44px 24px;
}
.hero-copy h1 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2.2rem, 5vw, 3rem);
  margin: 0 0 10px;
  color: #222;
}
.hero-underline { border-bottom: 3px solid var(--olive-dark); padding-bottom: 8px; display: inline-block; }
.hero-sub {
  font-family: var(--font-body);
  font-size: 1.05rem;
  color: #333;
  margin: 16px 0 22px;
  max-width: 40ch;
}
.hero-photo-wrap { position: relative; }
.hero-photo-frame {
  background: #fff;
  border: 3px solid var(--olive-dark);
  padding: 6px;
  max-width: 320px;
}
.hero-photo-frame img, .hero-photo-frame svg { display: block; width: 100%; }
.hero-photo-caption {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-style: italic;
  text-align: center;
  color: #555;
  margin-top: 6px;
}
.tape { display: none; }

@media (max-width: 780px) {
  .hero-inner { grid-template-columns: 1fr; }
}

/* ---------- Buttons: plain rectangles ---------- */
.btn {
  display: inline-block;
  padding: 11px 26px;
  border-radius: 2px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  cursor: pointer;
  border: none;
  text-align: center;
}
.btn-primary { background: var(--sage); color: #fff; }
.btn-primary:hover { background: var(--olive-deep); text-decoration: none; }
.btn-secondary { background: transparent; color: var(--olive-dark); border: 1.5px solid var(--olive-dark); }
.btn-secondary:hover { background: var(--olive-dark); color: #fff; text-decoration: none; }

/* ---------- Sections / text ---------- */
.section-title, .page-title {
  font-size: 1.8rem;
  margin-bottom: 18px;
  display: inline-block;
  border-bottom: 3px solid var(--olive-dark);
  padding-bottom: 6px;
}
.lead { font-size: 1.1rem; }
.muted { color: #5c6a4f; }
.small { font-size: 0.88rem; }
.center-link { margin-top: 24px; font-family: var(--font-body); font-size: 0.95rem; }

/* ---------- Homepage layout with sidebar ---------- */
.home-layout {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 30px;
  align-items: start;
  padding-top: 30px;
}
@media (max-width: 800px) {
  .home-layout { grid-template-columns: 1fr; }
}
.sidebar-box {
  background: #fff;
  border: 1px solid var(--cream-dark);
  margin-bottom: 20px;
}
.sidebar-box-bar {
  background: var(--sage);
  color: #fff;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 8px 14px;
}
.sidebar-box-body { padding: 10px 14px 14px; }
.sidebar-list { list-style: none; margin: 0; padding: 0; }
.sidebar-list li { border-bottom: 1px solid var(--cream-dark); }
.sidebar-list li:last-child { border-bottom: none; }
.sidebar-list a {
  display: block;
  padding: 7px 2px;
  font-size: 0.9rem;
  color: var(--ink);
}
.sidebar-list a:hover { background: var(--paper); text-decoration: none; color: var(--olive-dark); }
.sidebar-note { font-size: 0.88rem; color: #444; margin: 0; }
.sidebar-note a { font-weight: 700; }
.review-stars { margin: 0 0 6px; color: #b8860b; font-size: 1rem; letter-spacing: 2px; }
.review-score { color: #444; font-family: var(--font-body); font-size: 0.85rem; letter-spacing: 0; }
.review-quote {
  margin: 0 0 10px;
  padding: 0 0 0 10px;
  border-left: 3px solid var(--sage);
  font-family: var(--font-display);
  font-style: italic;
  font-size: 0.95rem;
  color: #333;
}
.review-quote cite { display: block; margin-top: 4px; font-style: normal; font-size: 0.8rem; color: #666; }

/* ---------- Product grid: plain bordered squares ---------- */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(210px, 1fr));
  gap: 22px;
  margin-top: 22px;
}
.product-card {
  background: #fff;
  border: 1px solid var(--cream-dark);
  overflow: hidden;
  display: block;
}
.product-card:hover { border-color: var(--olive-dark); }
.product-card-img {
  height: 180px;
  background-size: cover;
  background-position: center;
  background-color: var(--cream-dark);
  position: relative;
  border: 3px solid var(--olive-dark);
  border-bottom: none;
  margin: 8px 8px 0;
  height: 170px;
}
.product-card-body { padding: 12px 16px 18px; }
.product-card-body h3 { margin: 0 0 4px; font-size: 1.1rem; font-family: var(--font-display); }
.product-card-era { font-family: var(--font-body); font-style: italic; color: #6a7a52; font-size: 0.9rem; margin: 0 0 6px; }
.product-card-price { font-weight: 700; color: #222; font-size: 1.05rem; margin: 0; font-family: var(--font-display); }
.product-card.is-sold { opacity: 0.6; }

.sold-badge {
  position: absolute;
  top: 8px;
  right: 8px;
  background: var(--rust);
  color: #fff;
  padding: 3px 12px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.8rem;
  text-transform: uppercase;
}
.sold-badge.large { font-size: 0.95rem; padding: 4px 16px; }

.visually-hidden {
  position: absolute;
  width: 1px; height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

/* ---------- Shop filters: sidebar (desktop) / drawer (mobile) ---------- */
.filter-toggle-btn { display: none; margin-bottom: 16px; }

.shop-layout {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 30px;
  align-items: start;
  margin-top: 20px;
}

.filter-panel {
  background: #fff;
  border: 1px solid var(--cream-dark);
  padding: 0 0 16px;
}
.filter-panel-bar {
  padding: 8px 14px;
  background: var(--sage);
  color: #fff;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.filter-panel-header { display: none; align-items: center; justify-content: space-between; padding: 8px 14px; }
.filter-close-btn { background: none; border: none; font-size: 1.6rem; line-height: 1; cursor: pointer; color: var(--ink); }

.clear-filters-link {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.9rem;
  margin: 12px 14px 0;
  color: var(--rust);
}

.facet-section { border-bottom: 1px solid var(--cream-dark); padding: 8px 14px; }
.facet-section:last-of-type { border-bottom: none; }
.facet-section summary {
  font-family: var(--font-display);
  font-weight: 700;
  cursor: pointer;
  color: var(--ink);
  padding: 2px 0;
}
.facet-list { list-style: none; margin: 8px 0 0; padding: 0; display: flex; flex-direction: column; gap: 2px; }
.facet-list a {
  display: flex;
  justify-content: space-between;
  gap: 8px;
  padding: 4px 4px;
  font-size: 0.88rem;
  color: var(--ink);
}
.facet-list a:hover { background: var(--paper); text-decoration: none; }
.facet-list a.active { background: var(--sage); color: #fff; }
.facet-count { color: #6a7a52; font-size: 0.85em; }
.facet-list a.active .facet-count { color: #fff; }
.facet-browse-link { display: inline-block; margin-top: 8px; font-family: var(--font-body); font-size: 0.88rem; }
.sold-facet-list { padding: 12px 14px; margin: 0; }

.filter-overlay { display: none; }

/* ---------- Makers listing ---------- */
.maker-list { list-style: none; margin: 20px 0 0; padding: 0; display: flex; flex-direction: column; gap: 0; max-width: 500px; }
.maker-list-link {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 10px 12px;
  border-bottom: 1px solid var(--cream-dark);
  font-size: 1rem;
}
.maker-list-link:hover { background: var(--paper); text-decoration: none; }
.maker-list-name { font-family: var(--font-display); font-weight: 700; }
.maker-list-count { font-family: var(--font-body); color: #6a7a52; font-size: 0.9rem; }

@media (max-width: 900px) {
  .filter-toggle-btn { display: inline-block; }
  .shop-layout { grid-template-columns: 1fr; }
  .home-layout { grid-template-columns: 1fr; }

  .filter-panel {
    position: fixed;
    top: 0;
    left: -100%;
    width: min(320px, 85vw);
    height: 100%;
    overflow-y: auto;
    z-index: 100;
    transition: left 0.2s ease;
  }
  .filter-panel.is-open { left: 0; }
  .filter-panel-header { display: flex; }

  /* The sold-archive category list is a plain sidebar with no drawer toggle,
     so it must stay in normal flow on small screens. */
  .filter-panel.sold-filter-panel {
    position: static;
    width: auto;
    height: auto;
    left: auto;
  }

  .filter-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.5);
    z-index: 99;
  }
  .filter-overlay.is-visible { display: block; }
}

/* ---------- Warehouse interior strip ---------- */
.warehouse-strip {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 36px;
  align-items: center;
}
.warehouse-photo { border: 3px solid var(--olive-dark); }
.warehouse-photo img { display: block; width: 100%; height: 100%; object-fit: cover; }
.warehouse-text { padding-top: 6px; }
@media (max-width: 780px) {
  .warehouse-strip { grid-template-columns: 1fr; }
  .warehouse-photo { order: -1; }
}

/* ---------- Product detail ---------- */
.product-detail { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 36px; align-items: start; }
.product-detail-img {
  height: 360px;
  background-size: cover;
  background-position: center;
  background-color: var(--cream-dark);
  position: relative;
  border: 3px solid var(--olive-dark);
}
.gallery-thumbs {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 16px;
}
.gallery-thumb {
  width: 58px;
  height: 58px;
  padding: 0;
  border: 2px solid var(--cream-dark);
  overflow: hidden;
  cursor: pointer;
  background: var(--cream-dark);
  opacity: 0.8;
}
.gallery-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.gallery-thumb:hover { opacity: 1; }
.gallery-thumb.active { opacity: 1; border-color: var(--olive-dark); }
.product-category { font-family: var(--font-body); font-style: italic; color: #4f6b2b; font-size: 1rem; margin-bottom: 2px; }
.product-era { font-family: var(--font-body); font-style: italic; color: #6a7a52; font-size: 1rem; margin-top: 0; }
.product-price { font-size: 1.6rem; font-weight: 700; font-family: var(--font-display); color: #222; }
.breadcrumb { margin-bottom: 12px; font-family: var(--font-body); font-size: 0.9rem; }

.product-facts {
  display: grid;
  grid-template-columns: max-content 1fr;
  gap: 6px 16px;
  margin: 16px 0;
  padding: 14px 18px;
  background: var(--paper);
  border: 1px solid var(--cream-dark);
  font-size: 0.92rem;
}
.product-facts dt { font-weight: 700; color: #222; }
.product-facts dd { margin: 0; }

@media (max-width: 720px) {
  .product-detail { grid-template-columns: 1fr; }
}

/* ---------- About ---------- */
.about-layout { display: grid; grid-template-columns: 220px 1fr; gap: 34px; align-items: start; }
.about-portrait { position: relative; background: #fff; border: 3px solid var(--olive-dark); padding: 4px; }
.about-portrait > img:first-child { width: 100%; display: block; object-fit: cover; }
.about-seal { position: absolute; width: 64px !important; bottom: -10px; right: -10px; }
.about-signoff { font-family: var(--font-display); font-style: italic; font-size: 1.2rem; color: #222; margin-top: 18px; }
@media (max-width: 600px) {
  .about-layout { grid-template-columns: 1fr; }
  .about-portrait { max-width: 180px; }
}

/* ---------- Real-photo figures ---------- */
.about-photo-wide {
  margin: 34px 0 0;
  max-width: 480px;
}
.about-photo-wide img {
  display: block;
  width: 100%;
  border: 3px solid var(--olive-dark);
  background: #fff;
  padding: 4px;
}
.about-photo-wide figcaption,
.contact-door-photo figcaption {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 0.9rem;
  color: #444;
  margin-top: 6px;
}
.hours-columns {
  display: flex;
  gap: 26px;
  align-items: flex-start;
  flex-wrap: wrap;
}
.contact-door-photo {
  margin: 18px 0;
  max-width: 260px;
}
.contact-door-photo img {
  display: block;
  width: 100%;
  border: 3px solid var(--olive-dark);
  background: #fff;
  padding: 4px;
}

/* ---------- Contact ---------- */
.contact-details {
  background: #fff;
  border: 1px solid var(--cream-dark);
  padding: 20px 24px;
  margin: 22px 0;
}
.contact-details p { margin: 8px 0; }

.hours-panel {
  background: #fff;
  border: 1px solid var(--cream-dark);
  padding: 20px 24px;
  margin: 18px 0;
  max-width: 340px;
}
.hours-title { font-size: 1.15rem; margin: 0 0 10px; }
.hours-list { margin: 0; }
.hours-row {
  display: flex;
  justify-content: space-between;
  padding: 5px 0;
  border-bottom: 1px solid var(--cream-dark);
  font-size: 0.92rem;
}
.hours-row:last-child { border-bottom: none; }
.hours-row dt { font-weight: 700; }
.hours-row dd { margin: 0; }
.hours-row dd.closed { color: var(--rust); }

.contact-form { max-width: 100%; margin-bottom: 8px; }
.contact-form textarea { resize: vertical; }
.enquiry-context {
  background: var(--paper);
  border-left: 3px solid var(--sage);
  padding: 8px 14px;
  margin: 6px 0 18px;
}
.honeypot-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

/* ---------- Admin login ---------- */
.login-section { text-align: center; }
.login-pirate { max-width: 150px; margin: 0 auto 14px; }
.login-pirate img { width: 100%; display: block; }
.login-section .admin-form { margin: 0 auto; text-align: left; }

/* ---------- Forms (admin) ---------- */
.admin-form { display: flex; flex-direction: column; gap: 16px; max-width: 620px; }
.admin-form label { display: flex; flex-direction: column; gap: 6px; font-size: 0.95rem; font-family: var(--font-body); }
.admin-form input[type="text"],
.admin-form input[type="password"],
.admin-form select,
.admin-form textarea {
  font-family: var(--font-body);
  font-size: 0.95rem;
  padding: 8px 10px;
  border: 1px solid #999;
  border-radius: 2px;
  background: #fff;
}
.admin-form .checkbox-label { flex-direction: row; align-items: center; gap: 8px; }
.admin-form-actions { display: flex; gap: 12px; margin-top: 6px; }

.classification-fieldset {
  border: 1px solid var(--cream-dark);
  padding: 18px 20px 20px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.classification-fieldset legend {
  font-family: var(--font-display);
  font-weight: 700;
  padding: 0 8px;
  color: #222;
}
.material-checklist-label { margin: 0 0 8px; font-size: 0.95rem; font-family: var(--font-body); }
.material-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 6px 12px;
  max-height: 220px;
  overflow-y: auto;
  padding: 4px 2px;
}
.material-option {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.9rem;
  font-family: var(--font-body);
}
.material-option input { margin: 0; }
.form-error { color: var(--danger); font-weight: 700; }
.form-success { color: var(--success); font-weight: 700; }
.restore-warning {
  background: #fbe9e5;
  border: 1px solid var(--danger);
  padding: 16px 20px;
  margin: 16px 0 24px;
}
.restore-warning p { margin: 6px 0; }
.btn.danger-btn { background: var(--danger); color: #fff; }
.btn.danger-btn:hover { background: #7f2c20; }
.current-image-preview img { max-width: 160px; border: 1px solid var(--cream-dark); margin-top: 6px; }

.image-preview-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(90px, 1fr));
  gap: 10px;
  margin-top: 10px;
}
.image-preview-tile, .existing-image-tile {
  position: relative;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border: 1px solid var(--cream-dark);
  background: var(--cream-dark);
  display: block;
}
.image-preview-tile img, .existing-image-tile img {
  width: 100%; height: 100%; object-fit: cover; display: block;
}
.existing-image-tile { cursor: pointer; }
.existing-image-tile .remove-overlay,
.existing-image-tile .primary-radio {
  position: absolute;
  left: 0;
  right: 0;
  color: #fff;
  font-size: 0.75rem;
  text-align: center;
  padding: 3px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
}
.existing-image-tile .remove-overlay { bottom: 0; background: rgba(0,0,0,0.7); }
.existing-image-tile .primary-radio { top: 0; background: rgba(61,90,31,0.75); }
.existing-image-tile .remove-overlay input,
.existing-image-tile .primary-radio input { margin: 0; }

.existing-image-tile:has(input[name="removeImages"]:checked) { outline: 2px solid var(--danger); }
.existing-image-tile:has(input[name="removeImages"]:checked)::after {
  content: "Will be removed";
  position: absolute; inset: 0;
  background: rgba(163,59,43,0.55); color: #fff; display: flex;
  align-items: center; justify-content: center; font-size: 0.75rem;
  font-weight: 700; text-align: center; padding: 4px;
}
.existing-image-tile:has(input[name="primaryImage"]:checked) { outline: 2px solid var(--sage); }
.existing-image-tile:has(input[name="primaryImage"]:checked) .primary-radio { background: rgba(122,143,82,0.9); color: #fff; font-weight: 700; }

.admin-table { width: 100%; border-collapse: collapse; margin-top: 20px; background: #fff; }
.admin-table th, .admin-table td { padding: 9px 12px; border-bottom: 1px solid var(--cream-dark); text-align: left; font-size: 0.95rem; font-family: var(--font-body); }
.admin-thumb { width: 52px; height: 52px; object-fit: cover; background: var(--cream-dark); }
.admin-toolbar { display: flex; justify-content: space-between; align-items: center; gap: 12px; flex-wrap: wrap; margin-bottom: 10px; }
.admin-toolbar-actions { display: flex; gap: 10px; }
.admin-row-actions { display: flex; gap: 10px; }
.admin-row-actions form { display: inline; }
.link-btn { background: none; border: none; padding: 0; font: inherit; color: var(--olive-dark); cursor: pointer; text-decoration: underline; }

@media (max-width: 700px) {
  .admin-table, .admin-table thead, .admin-table tbody, .admin-table th, .admin-table td, .admin-table tr { display: block; }
  .admin-table thead { display: none; }
  .admin-table tr {
    margin-bottom: 14px;
    border: 1px solid var(--cream-dark);
    padding: 10px;
  }
  .admin-table td {
    border: none;
    padding: 6px 0;
    font-size: 0.95rem;
  }
}

/* ---------- Footer ---------- */
.site-footer { background: var(--olive-dark); color: #dfe6d2; margin-top: 40px; padding-top: 26px; }
.footer-inner {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr 1.2fr;
  gap: 24px;
  padding-bottom: 20px;
}
@media (max-width: 720px) {
  .footer-inner { grid-template-columns: 1fr 1fr; }
}
.footer-logo { display: none; }
.footer-brand { font-family: var(--font-display); font-size: 1.1rem; margin: 0; color: #fff; }
.footer-tag { font-size: 0.85rem; margin: 6px 0 0; font-family: var(--font-body); }
.footer-links { display: flex; flex-direction: column; gap: 6px; }
.footer-links a { color: #dfe6d2; font-size: 0.9rem; }
.footer-links a:hover { color: #fff; }
.footer-contact { font-size: 0.9rem; color: #dfe6d2; line-height: 1.5; }
.footer-contact a { color: #dfe6d2; }
.footer-contact a:hover { color: #fff; }
.footer-hours-title { font-family: var(--font-display); color: #fff; font-size: 0.95rem; margin: 0 0 8px; }
.footer-hours-row { display: flex; justify-content: space-between; margin: 0 0 3px; font-size: 0.85rem; }
.footer-legal {
  border-top: 1px solid #5c7a34;
  padding: 12px 0;
  display: flex;
  gap: 18px;
  justify-content: center;
  flex-wrap: wrap;
}
.footer-legal a { color: #dfe6d2; font-size: 0.8rem; }
.footer-legal a:hover { color: #fff; }
.footer-copy { text-align: center; border-top: 1px solid #5c7a34; padding: 12px 0; font-size: 0.8rem; color: #b9c9a0; margin: 0; }
