/* ═══════════════════════════════════════════════════════════
   SRJ HOMEMADE HARVEST — Public Styles
   Mobile-first. Warm. Earthy. Handcrafted feel.
═══════════════════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;1,400&family=DM+Sans:wght@300;400;500;600&display=swap');

:root {
  --clr-cream: #FDF9F7;
  --clr-warm: #FAE8EF;
  --clr-terracotta: #BE4B6E;
  --clr-terracotta-dk: #A03A5C;
  --clr-sage: #8FAE8F;
  --clr-sage-lt: #C8DCC8;
  --clr-olive:     #5C6B3E;
  --clr-bark:      #3D2B1F;
  --clr-bark-lt:   #6B4C3B;
  --clr-gold:      #C9A84C;
  --clr-gold-lt:   #E8D5A0;
  --clr-muted:     #8B7D74;
  --clr-border: #F0D8E2;
  --clr-red:       #C0392B;
  --clr-green:     #27AE60;
  --radius-sm:     8px;
  --radius-md:     14px;
  --radius-lg:     22px;
  --shadow-card:   0 2px 16px rgba(61,43,31,.08);
  --shadow-hover:  0 8px 32px rgba(61,43,31,.14);
  --font-display:  'Playfair Display', Georgia, serif;
  --font-body:     'DM Sans', system-ui, sans-serif;
  --transition:    0.22s cubic-bezier(0.4,0,0.2,1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

/* ── GRID ─────────────────────────────────────────────── */
.harvest-listing { width: 100%; }

.harvest-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  padding: 0;
}

@media (min-width: 540px) {
  .harvest-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 900px) {
  .harvest-grid { grid-template-columns: repeat(3, 1fr); gap: 28px; }
}
@media (min-width: 1200px) {
  .harvest-grid { grid-template-columns: repeat(4, 1fr); }
}

/* ── CARD ─────────────────────────────────────────────── */
.harvest-card {
  background: #fff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  border: 1px solid var(--clr-border);
  display: flex;
  flex-direction: column;
  transition: transform var(--transition), box-shadow var(--transition);
  position: relative;
}

.harvest-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-hover);
}

.harvest-card.status-all_claimed,
.harvest-card.status-expired {
  opacity: .75;
}

.harvest-card__image-link {
  display: block;
  position: relative;
  overflow: hidden;
  background: var(--clr-warm);
  height: 200px;
  flex-shrink: 0;
}

.harvest-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.4s ease;
  display: block;
  vertical-align: top;
}
.harvest-card:hover .harvest-card__img { transform: scale(1.04); }

.harvest-card__img--placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3.5rem;
  width: 100%;
  height: 100%;
}

.harvest-card__status-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 100px;
  background: var(--clr-sage);
  color: #fff;
  backdrop-filter: blur(4px);
}

.status-badge--all_claimed,
.status-badge--expired     { background: var(--clr-muted); }
.status-badge--coming_soon { background: var(--clr-gold); color: var(--clr-bark); }
.status-badge--available   { background: var(--clr-sage); }

.harvest-card__body {
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}

.harvest-card__cat {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--clr-terracotta);
}

.harvest-card__title {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  line-height: 1.25;
  color: var(--clr-bark);
}

.harvest-card__title a {
  text-decoration: none;
  color: inherit;
}
.harvest-card__title a:hover { color: var(--clr-terracotta); }

.harvest-card__unit {
  font-size: 0.82rem;
  color: var(--clr-muted);
  display: flex;
  align-items: center;
  gap: 5px;
}

.harvest-card__pickup {
  font-size: 0.8rem;
  color: var(--clr-bark-lt);
  display: flex;
  align-items: center;
  gap: 5px;
}

.harvest-card__dietary {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
}

.harvest-card__allergens {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 4px;
}

.allergen-label {
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--clr-bark);
  text-transform: uppercase;
  letter-spacing: .05em;
}

.allergen-chip {
  font-family: var(--font-body);
  font-size: 0.68rem;
  font-weight: 500;
  background: #FEF3CD;
  color: #7B5A00;
  border: 1px solid #E8D5A0;
  padding: 2px 8px;
  border-radius: 100px;
}

.allergen-chip--lg {
  font-size: 0.8rem;
  padding: 4px 12px;
}

/* ── AVAILABILITY BAR ─────────────────────────────────── */
.harvest-avail-bar {
  height: 5px;
  background: var(--clr-border);
  border-radius: 100px;
  overflow: hidden;
}

.harvest-avail-bar--lg { height: 8px; }

.harvest-avail-bar__fill {
  height: 100%;
  background: linear-gradient(90deg, var(--clr-sage), var(--clr-olive));
  border-radius: 100px;
  transition: width 0.6s ease;
}

.harvest-card__availability {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.harvest-avail-text {
  font-size: 0.75rem;
  color: var(--clr-bark-lt);
}

/* ── DIETARY BADGES ───────────────────────────────────── */
.diet-badge {
  font-size: 0.68rem;
  font-weight: 600;
  padding: 3px 9px;
  border-radius: 100px;
  text-transform: uppercase;
  letter-spacing: .04em;
}
.diet-badge--halal { background: #E8F4FD; color: #0D47A1; border: 1px solid #90CAF9; }
.diet-badge--vegan { background: #E8F5E9; color: #2E7D32; border: 1px solid #A5D6A7; }
.diet-badge--veg   { background: #E8F5E9; color: #388E3C; border: 1px solid #C8E6C9; }
.diet-badge--gf    { background: #FFF8E1; color: #F57F17; border: 1px solid #FFE082; }
.diet-badge--df    { background: #E3F2FD; color: #1565C0; border: 1px solid #90CAF9; }

/* ── MY ITEMS ─────────────────────────────────────────── */
.harvest-my-items__heading {
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: var(--clr-bark);
  margin-bottom: 24px;
}

.harvest-my-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
@media (min-width: 560px) {
  .harvest-my-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 900px) {
  .harvest-my-grid { grid-template-columns: repeat(3, 1fr); }
}

.harvest-my-card {
  display: flex;
  gap: 14px;
  background: #fff;
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-md);
  padding: 14px;
  box-shadow: var(--shadow-card);
}
.harvest-my-card.is-cancelled { opacity: .6; }

.harvest-my-card__thumb {
  width: 72px;
  height: 72px;
  object-fit: cover;
  border-radius: var(--radius-sm);
  flex-shrink: 0;
}
.harvest-my-card__thumb--empty {
  width: 72px;
  height: 72px;
  border-radius: var(--radius-sm);
  background: var(--clr-warm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  flex-shrink: 0;
}

.harvest-my-card__body {
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 0;
}

.harvest-my-card__title {
  font-family: var(--font-display);
  font-size: 0.95rem;
  color: var(--clr-bark);
}
.harvest-my-card__title a { text-decoration: none; color: inherit; }
.harvest-my-card__title a:hover { color: var(--clr-terracotta); }

.harvest-my-card__qty { font-size: 0.82rem; color: var(--clr-bark-lt); }
.harvest-my-card__pickup { font-size: 0.78rem; color: var(--clr-muted); }
.harvest-my-card__note { font-size: 0.78rem; color: var(--clr-muted); }
.harvest-my-card__date { font-size: 0.72rem; color: var(--clr-muted); margin-top: 4px; }

.myitem-status {
  font-size: 0.72rem;
  font-weight: 600;
  padding: 3px 9px;
  border-radius: 100px;
  display: inline-block;
  width: fit-content;
}
.myitem-status--pending   { background: #FFF8E1; color: #F57F17; }
.myitem-status--confirmed { background: #E8F5E9; color: #2E7D32; }
.myitem-status--picked-up { background: #F3E5F5; color: #6A1B9A; }
.myitem-status--cancelled { background: #FFEBEE; color: #C62828; }

/* ── LOGIN PROMPT ─────────────────────────────────────── */
.harvest-login-prompt {
  text-align: center;
  padding: 40px 20px;
  background: var(--clr-cream);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-lg);
}
.harvest-login-icon { font-size: 2.5rem; display: block; margin-bottom: 12px; }
.harvest-login-prompt p { color: var(--clr-muted); margin-bottom: 20px; font-size: 0.95rem; }

/* ── LOGGED-IN GREETING ───────────────────────────────── */
.hf-logged-in-greeting {
  background: var(--clr-cream);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  font-size: 0.88rem;
  color: var(--clr-bark);
  border-left: 3px solid var(--clr-sage);
}

.hf-proxy-toggle { margin-top: 4px; }
.hf-proxy-label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.84rem;
  color: var(--clr-bark-lt);
  cursor: pointer;
}
.hf-proxy-label input { cursor: pointer; }

.hf-proxy-fields {
  background: var(--clr-warm);
  border-radius: var(--radius-sm);
  padding: 14px;
  border: 1px solid var(--clr-border);
  margin-top: 4px;
}

/* ── BUTTONS ──────────────────────────────────────────── */
.harvest-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 12px 22px;
  border: none;
  border-radius: var(--radius-md);
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition);
  text-decoration: none;
  width: 100%;
  margin-top: auto;
}

.harvest-btn--reserve {
  background: var(--clr-terracotta);
  color: #fff;
}
.harvest-btn--reserve:hover {
  background: var(--clr-terracotta-dk);
  transform: translateY(-1px);
}

.harvest-btn--disabled {
  background: var(--clr-border);
  color: var(--clr-muted);
  cursor: not-allowed;
}

.harvest-btn--submit {
  background: var(--clr-terracotta);
  color: #fff;
  padding: 16px 28px;
  font-size: 1rem;
  border-radius: var(--radius-md);
}
.harvest-btn--submit:hover:not(:disabled) {
  background: var(--clr-terracotta-dk);
  transform: translateY(-1px);
}
.harvest-btn--submit:disabled { opacity: .7; cursor: not-allowed; }

/* ── EMPTY STATE ──────────────────────────────────────── */
.harvest-empty {
  text-align: center;
  padding: 60px 20px;
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--clr-muted);
}

/* ═══════════════════════════════════════════════════════
   SINGLE ITEM PAGE
═══════════════════════════════════════════════════════ */
.harvest-single {
  font-family: var(--font-body);
  color: var(--clr-bark);
  max-width: 780px;
  margin: 0 auto;
}

/* ── AVAILABILITY PANEL ── */
.harvest-single__avail-panel {
  background: var(--clr-cream);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-lg);
  padding: 20px 24px;
  margin-bottom: 28px;
}

.harvest-avail-summary {
  font-size: 0.95rem;
  color: var(--clr-bark-lt);
  margin-top: 10px;
}

/* ── DETAIL GRID ── */
.harvest-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 28px;
}

@media (min-width: 640px) {
  .harvest-detail-grid { grid-template-columns: repeat(4, 1fr); }
}

.harvest-detail-card {
  background: #fff;
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-md);
  padding: 14px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.hdc-icon { font-size: 1.3rem; }
.hdc-label {
  font-size: 0.68rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .07em;
  color: var(--clr-muted);
}
.hdc-val {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--clr-bark);
}

/* ── DIETARY ROW ── */
.harvest-dietary-row {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 24px;
}

/* ── ACCORDION ── */
.harvest-accordion {
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  margin-bottom: 20px;
}

.harvest-accordion__trigger {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 20px;
  background: var(--clr-cream);
  border: none;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--clr-bark);
  cursor: pointer;
  text-align: left;
  transition: background var(--transition);
}

.harvest-accordion__trigger:hover { background: var(--clr-warm); }
.accordion-icon { font-size: 1.2rem; font-weight: 300; transition: transform var(--transition); }
.harvest-accordion__trigger[aria-expanded="true"] .accordion-icon { transform: rotate(45deg); }

.harvest-accordion__body {
  padding: 0 20px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
}
.harvest-accordion__body.is-open {
  max-height: 400px;
  padding: 16px 20px;
}

.harvest-ingredients {
  font-size: 0.9rem;
  line-height: 1.7;
  color: var(--clr-bark-lt);
}

/* ── ALLERGY SECTION ── */
.harvest-allergy-section {
  background: #FFFBF0;
  border: 1px solid var(--clr-gold-lt);
  border-radius: var(--radius-md);
  padding: 20px;
  margin-bottom: 20px;
}

.harvest-allergy-section h4 {
  font-family: var(--font-display);
  font-size: 1rem;
  margin-bottom: 10px;
}

.harvest-allergy-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 10px;
}

.harvest-allergy-note {
  font-size: 0.82rem;
  color: var(--clr-muted);
}

/* ── SUSTAINABILITY SECTION ── */
.harvest-sustainability {
  background: linear-gradient(135deg, #F0F7F1 0%, #E8F5E9 100%);
  border: 1px solid #C8E6C9;
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: 24px;
}

.sustainability-header {
  background: var(--clr-sage);
  color: #fff;
  padding: 12px 20px;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: .05em;
  text-transform: uppercase;
}

.sustainability-body {
  padding: 18px 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.sustainability-body p {
  font-size: 0.88rem;
  color: #2E7D32;
  line-height: 1.6;
}

.sustainability-tagline {
  font-style: italic;
  color: var(--clr-sage) !important;
  margin-top: 4px;
}

/* ── PICKUP NOTES ── */
.harvest-pickup-notes {
  background: var(--clr-cream);
  border-radius: var(--radius-md);
  padding: 20px;
  margin-bottom: 28px;
}

.harvest-pickup-notes h4 {
  font-family: var(--font-display);
  margin-bottom: 8px;
}

.harvest-pickup-notes p {
  font-size: 0.9rem;
  line-height: 1.7;
  color: var(--clr-bark-lt);
}

/* ── RESERVE SECTION ── */
.harvest-reserve-section {
  background: #fff;
  border: 2px solid var(--clr-terracotta);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  margin-bottom: 40px;
}

.harvest-reserve-heading {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--clr-bark);
  margin-bottom: 24px;
}

.harvest-all-claimed,
.harvest-coming-soon {
  text-align: center;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.05rem;
  color: var(--clr-muted);
  padding: 20px;
}

/* ── RESERVATION FORM ── */
.harvest-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.hf-row { display: flex; flex-direction: column; gap: 18px; }

@media (min-width: 560px) {
  .hf-row--half { flex-direction: row; gap: 16px; }
  .hf-row--half .hf-field { flex: 1; }
}

.hf-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.hf-field label {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--clr-bark);
  text-transform: uppercase;
  letter-spacing: .06em;
}

.hf-field .opt {
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0;
  color: var(--clr-muted);
}

.hf-field input[type="text"],
.hf-field input[type="email"],
.hf-field input[type="tel"],
.hf-field textarea {
  padding: 13px 16px;
  border: 1.5px solid var(--clr-border);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--clr-bark);
  background: var(--clr-cream);
  transition: border-color var(--transition), box-shadow var(--transition);
  width: 100%;
  -webkit-appearance: none;
}

.hf-field input:focus,
.hf-field textarea:focus {
  outline: none;
  border-color: var(--clr-terracotta);
  box-shadow: 0 0 0 3px rgba(194,109,67,.1);
  background: #fff;
}

/* ── QTY INPUT ── */
.qty-input-wrap {
  display: flex;
  align-items: center;
  border: 1.5px solid var(--clr-border);
  border-radius: var(--radius-sm);
  overflow: hidden;
  background: var(--clr-cream);
}

.qty-btn {
  background: transparent;
  border: none;
  padding: 0 16px;
  font-size: 1.4rem;
  color: var(--clr-terracotta);
  cursor: pointer;
  line-height: 1;
  height: 48px;
  transition: background var(--transition);
  flex-shrink: 0;
}
.qty-btn:hover { background: var(--clr-warm); }

.qty-input-wrap input[type="number"] {
  border: none;
  background: transparent;
  text-align: center;
  font-family: var(--font-body);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--clr-bark);
  width: 60px;
  padding: 0;
  -moz-appearance: textfield;
}
.qty-input-wrap input::-webkit-outer-spin-button,
.qty-input-wrap input::-webkit-inner-spin-button { -webkit-appearance: none; }

.qty-max {
  font-size: 0.75rem;
  color: var(--clr-muted);
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0;
}

/* ── SUSTAINABILITY REMINDER ── */
.hf-sustainability-reminder {
  background: #F0F7F1;
  border: 1px solid #C8E6C9;
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  font-size: 0.84rem;
  line-height: 1.6;
  color: #2E7D32;
}

/* ── FORM MESSAGE ── */
.hf-message {
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  display: none;
}
.hf-message.is-success {
  display: block;
  background: #E8F5E9;
  color: #2E7D32;
  border: 1px solid #A5D6A7;
}
.hf-message.is-error {
  display: block;
  background: #FFEBEE;
  color: #C62828;
  border: 1px solid #EF9A9A;
}

.hf-fine-print {
  font-size: 0.78rem;
  color: var(--clr-muted);
  text-align: center;
}

/* ── MODAL OVERLAY for card reserve button ── */
.harvest-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(61,43,31,.5);
  backdrop-filter: blur(4px);
  z-index: 9999;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease, visibility 0.25s ease;
}

@media (min-width: 640px) {
  .harvest-modal-overlay { align-items: center; padding: 20px; }
}

.harvest-modal-overlay.is-open {
  opacity: 1;
  visibility: visible;
}

.harvest-modal {
  background: #fff;
  width: 100%;
  max-width: 560px;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  padding: 28px 24px 40px;
  max-height: 92vh;
  overflow-y: auto;
  transform: translateY(40px);
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  -webkit-overflow-scrolling: touch;
}

@media (min-width: 640px) {
  .harvest-modal {
    border-radius: var(--radius-lg);
    padding: 36px 32px;
    transform: translateY(20px) scale(0.97);
  }
}

.harvest-modal-overlay.is-open .harvest-modal {
  transform: translateY(0) scale(1);
}

.harvest-modal__header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 20px;
}

.harvest-modal__title {
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--clr-bark);
  line-height: 1.25;
  flex: 1;
  margin-right: 12px;
}

.harvest-modal__close {
  background: var(--clr-warm);
  border: none;
  border-radius: 50%;
  width: 36px;
  height: 36px;
  font-size: 1.2rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background var(--transition);
  color: var(--clr-bark);
}
.harvest-modal__close:hover { background: var(--clr-border); }

/* ── SCROLL TO TOP (after reservation) ── */
.harvest-confetti {
  text-align: center;
  padding: 24px;
  font-family: var(--font-display);
}
.harvest-confetti__emoji { font-size: 3rem; display: block; margin-bottom: 12px; }
.harvest-confetti h3 { font-size: 1.4rem; color: var(--clr-bark); margin-bottom: 8px; }
.harvest-confetti p  { color: var(--clr-muted); font-size: 0.92rem; line-height: 1.6; }

/* ── UTILITY ──────────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { transition: none !important; animation: none !important; }
}

/* ═══════════════════════════════════════════════════════
   ADDITIONS v1.2
═══════════════════════════════════════════════════════ */

/* ── NUT-FREE BADGE ── */
.diet-badge--nutfree { background: #FFF3E0; color: #E65100; border: 1px solid #FFCC80; }

/* ── MORE SLOTS LABEL ON CARD ── */
.harvest-more-slots {
  font-size: 0.68rem;
  background: var(--clr-gold-lt);
  color: var(--clr-bark-lt);
  padding: 1px 6px;
  border-radius: 100px;
  margin-left: 4px;
}

/* ── GALLERY (single page) ── */
.harvest-gallery {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 24px;
}
.harvest-gallery__thumb {
  display: block;
  width: 72px;
  height: 72px;
  border-radius: var(--radius-sm);
  overflow: hidden;
  border: 1.5px solid var(--clr-border);
  flex-shrink: 0;
}
.harvest-gallery__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
  display: block;
}
.harvest-gallery__thumb:hover img { transform: scale(1.08); }

@media (min-width: 480px) {
  .harvest-gallery__thumb { width: 88px; height: 88px; }
}

/* ── DETAIL CARD: MULTI-SLOT & ADDRESS ── */
.harvest-detail-card--slots,
.harvest-detail-card--address {
  grid-column: 1 / -1;
  display: block;
}
.harvest-detail-card--slots .hdc-val,
.harvest-detail-card--address .hdc-val {
  display: block;
  margin-top: 2px;
}
.harvest-detail-card--slots .hdc-val + .hdc-val {
  border-top: 1px dashed var(--clr-border);
  padding-top: 4px;
  margin-top: 4px;
}
.harvest-detail-card--address .hdc-val {
  font-size: 0.88rem;
  color: var(--clr-bark-lt);
  line-height: 1.6;
}

/* ── SLOT PICKER IN FORM ── */
.hf-slot-options {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.hf-slot-option {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border: 1.5px solid var(--clr-border);
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: border-color var(--transition), background var(--transition);
  background: var(--clr-cream);
}
.hf-slot-option:hover { border-color: var(--clr-terracotta); background: #fff; }
.hf-slot-option input[type="radio"] { accent-color: var(--clr-terracotta); flex-shrink: 0; }
.hf-slot-option span { font-size: 0.88rem; color: var(--clr-bark); }
.hf-slot-option:has(input:checked) {
  border-color: var(--clr-terracotta);
  background: #fff5f1;
}

/* ── MY ITEMS: ACTION BUTTONS ── */
.my-res-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 8px;
}
.my-res-btn {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  padding: 5px 12px;
  border-radius: 100px;
  border: none;
  cursor: pointer;
  transition: all var(--transition);
}
.my-res-confirm {
  background: #E8F5E9;
  color: #2E7D32;
  border: 1px solid #A5D6A7;
}
.my-res-confirm:hover:not(:disabled) { background: #C8E6C9; }
.my-res-cancel {
  background: #FFEBEE;
  color: #C62828;
  border: 1px solid #EF9A9A;
}
.my-res-cancel:hover:not(:disabled) { background: #FFCDD2; }
.my-res-btn:disabled { opacity: .6; cursor: not-allowed; }

.my-res-message {
  font-size: 0.78rem;
  margin-top: 6px;
  padding: 4px 10px;
  border-radius: var(--radius-sm);
  display: none;
}
.my-res-message.is-success { display: block; background: #E8F5E9; color: #2E7D32; }
.my-res-message.is-error   { display: block; background: #FFEBEE; color: #C62828; }

/* ── MODAL AVAIL LINE ── */
.harvest-modal__avail {
  font-size: .82rem;
  color: var(--clr-muted);
  margin: 0 0 18px;
}
