@media all, bookshop {

@charset "UTF-8";
.c-image {
  width: 100%;
  height: auto;
}
.c-image--live-editing {
  width: 100%;
}

.seed-inventory {
  width: min(1400px, 92vw);
  margin: 0 auto;
  padding-block: clamp(2rem, 6vw, 4rem);
}
@media (min-width: 1600px) {
  .seed-inventory {
    width: min(1700px, 94vw);
  }
}
.seed-inventory__title {
  font-size: clamp(2rem, 5vw, 3rem);
  color: #351c12;
  margin-bottom: 2rem;
  font-weight: 700;
}
.seed-inventory__filters {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2rem;
  align-items: center;
}
.seed-inventory__filter-group {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
}
.seed-inventory__filter-group:not(:first-child) {
  padding-left: 1rem;
  border-left: 2px solid #e8ddd0;
}
.seed-inventory__filter-label {
  font-size: 0.9rem;
  color: #6c4f3f;
  font-weight: 500;
}
.seed-inventory__filter-btn {
  padding: 0.5rem 1rem;
  border: 2px solid #e8ddd0;
  border-radius: 6px;
  background: #fff;
  color: #6c4f3f;
  font-size: 0.85rem;
  font-family: inherit;
  cursor: pointer;
  transition: all 0.15s ease;
}
.seed-inventory__filter-btn:hover {
  border-color: #b0462a;
  color: #b0462a;
}
.seed-inventory__filter-btn.is-active {
  background: #1c421b;
  border-color: #1c421b;
  color: #fff;
}
.seed-inventory__approved-toggle {
  padding: 0.5rem 1rem;
  border: 2px solid #c41e3a;
  border-radius: 6px;
  background: #fff;
  color: #c41e3a;
  font-size: 0.85rem;
  font-family: inherit;
  cursor: pointer;
  transition: all 0.15s ease;
}
.seed-inventory__approved-toggle:hover {
  background: #fff0f0;
  border-color: #a01830;
}
.seed-inventory__approved-toggle.is-active {
  background: #c41e3a;
  border-color: #c41e3a;
  color: #fff;
}
.seed-inventory__category {
  margin-bottom: 3rem;
}
.seed-inventory__category-name {
  text-transform: uppercase;
  font-size: 0.9rem;
  letter-spacing: 0.3em;
  color: #b0462a;
  margin-bottom: 1.5rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid #e8ddd0;
}
.seed-inventory__grid {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: 1fr;
  max-width: 480px;
  margin: 0 auto;
}
@media (min-width: 600px) {
  .seed-inventory__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    max-width: none;
    margin: 0;
  }
}
@media (min-width: 960px) {
  .seed-inventory__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (min-width: 1280px) {
  .seed-inventory__grid {
    grid-template-columns: repeat(4, 1fr);
  }
}
@media (min-width: 1600px) {
  .seed-inventory__grid {
    grid-template-columns: repeat(5, 1fr);
  }
}
.seed-inventory__empty {
  color: #6c4f3f;
  font-style: italic;
}

.seed-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(53, 28, 18, 0.08);
  display: flex;
  flex-direction: column;
  content-visibility: auto;
  contain-intrinsic-size: auto 400px;
  position: relative;
}
.seed-card[hidden] {
  display: none !important;
}
@media (min-width: 600px) {
  .seed-card {
    border-radius: 12px;
    contain-intrinsic-size: auto 320px;
  }
}
.seed-card:hover {
  box-shadow: 0 4px 20px rgba(53, 28, 18, 0.12);
}
.seed-card.is-approved {
  box-shadow: 0 2px 12px rgba(53, 28, 18, 0.08), 0 0 0 2px rgba(212, 168, 85, 0.3);
}
.seed-card.is-approved:hover {
  box-shadow: 0 4px 20px rgba(53, 28, 18, 0.12), 0 0 0 2px rgba(212, 168, 85, 0.5);
}
.seed-card__ribbon {
  position: absolute;
  top: 12px;
  left: -8px;
  background: linear-gradient(135deg, #c41e3a 0%, #a01830 100%);
  color: #fff8e7;
  font-size: 0.65rem;
  font-weight: 700;
  padding: 0.35rem 1rem 0.35rem 1.2rem;
  z-index: 10;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.seed-card__ribbon::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  border: 3px solid transparent;
  border-top-color: #7a1020;
  border-right-color: #7a1020;
}
.seed-card__img,
.seed-card > picture {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  background: linear-gradient(135deg, #f4e4cf 0%, #e8d9c4 100%);
}
.seed-card__img img,
.seed-card > picture img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.seed-card__eyebrow, .seed-card__name, .seed-card__details, .seed-card__notes, .seed-card__footer {
  padding-left: 1rem;
  padding-right: 1rem;
}
@media (min-width: 600px) {
  .seed-card__eyebrow, .seed-card__name, .seed-card__details, .seed-card__notes, .seed-card__footer {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }
}
.seed-card__eyebrow {
  text-transform: uppercase;
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  color: #b0462a;
  margin-top: 1rem;
  margin-bottom: 0.25rem;
  font-weight: 500;
}
@media (min-width: 600px) {
  .seed-card__eyebrow {
    font-size: 0.75rem;
    margin-top: 1rem;
    margin-bottom: 0.35rem;
  }
}
.seed-card__name {
  font-size: 1.35rem;
  color: #351c12;
  margin-bottom: 0.35rem;
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.01em;
}
@media (min-width: 600px) {
  .seed-card__name {
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
  }
}
.seed-card__details {
  font-size: 0.9rem;
  color: #6c4f3f;
  margin-bottom: 0.5rem;
}
@media (min-width: 600px) {
  .seed-card__details {
    font-size: 0.85rem;
    margin-bottom: 0.5rem;
  }
}
.seed-card__details span {
  white-space: nowrap;
}
.seed-card__badge--approved {
  font-size: 0.9em;
}
.seed-card__badge--accent {
  color: #1c421b;
  font-weight: 600;
  cursor: help;
}
.seed-card__notes {
  font-size: 0.85rem;
  color: #5a4a3a;
  line-height: 1.5;
  margin: 0 0 0.75rem;
}
.seed-card__notes summary {
  cursor: pointer;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  list-style: none;
}
.seed-card__notes summary::-webkit-details-marker {
  display: none;
}
.seed-card__notes summary::after {
  content: " ▸";
  color: #b0462a;
  font-size: 0.8em;
}
@media (min-width: 600px) {
  .seed-card__notes summary {
    -webkit-line-clamp: 2;
  }
}
.seed-card__notes[open] summary {
  display: none;
}
.seed-card__notes[open] p {
  animation: fadeIn 0.2s ease;
}
.seed-card__notes p {
  margin: 0;
}
@keyframes fadeIn {
  from {
    opacity: 0.5;
  }
  to {
    opacity: 1;
  }
}
.seed-card__footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 0.75rem;
  padding-bottom: 1rem;
  margin-top: auto;
  font-size: 0.85rem;
  border-top: 1px solid #f0e8dd;
  gap: 0.75rem;
}
.seed-card__footer a, .seed-card__footer > span {
  color: #6c4f3f;
  text-decoration: none;
  font-size: 0.75rem;
  line-height: 1.3;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
.seed-card__footer a:hover, .seed-card__footer > span:hover {
  color: #1c421b;
}
.seed-card__badge {
  display: inline-block;
  padding: 0.15rem 0.4rem;
  background: #f8f4eb;
  border-radius: 4px;
  font-size: 0.7rem;
  color: #6c4f3f;
}
@media (min-width: 600px) {
  .seed-card__badge {
    padding: 0.25rem 0.6rem;
    font-size: 0.8rem;
  }
}
.seed-card__badge--accent {
  background: #1c421b;
  color: #fff;
}
.seed-card__badge--hot {
  background: #c44324;
  color: #fff;
}
.seed-card__badge--approved {
  background: linear-gradient(135deg, #b22234, #d43d4f);
  color: #fff;
  font-weight: 600;
}
.seed-card__badge--tooltip {
  cursor: help;
  text-decoration: underline dotted;
  text-underline-offset: 2px;
  position: relative;
}
.seed-card__badge--tooltip::after {
  content: attr(data-tooltip);
  position: absolute;
  bottom: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%);
  background: #351c12;
  color: #fff;
  padding: 0.5rem 0.75rem;
  border-radius: 6px;
  font-size: 0.75rem;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.15s ease, visibility 0.15s ease;
  z-index: 10;
  pointer-events: none;
  text-align: center;
  line-height: 1.4;
}
.seed-card__badge--tooltip::before {
  content: "";
  position: absolute;
  bottom: calc(100% + 2px);
  left: 50%;
  transform: translateX(-50%);
  border: 6px solid transparent;
  border-top-color: #351c12;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.15s ease, visibility 0.15s ease;
  z-index: 10;
}
.seed-card__badge--tooltip:hover::after, .seed-card__badge--tooltip:hover::before {
  opacity: 1;
  visibility: visible;
}
.seed-card__request-btn {
  flex-shrink: 0;
  padding: 0.5rem 1rem;
  border: 2px solid #1c421b;
  border-radius: 6px;
  background: #fff;
  color: #1c421b;
  font-size: 0.8rem;
  font-weight: 600;
  font-family: inherit;
  cursor: pointer;
  transition: all 0.2s ease;
  white-space: nowrap;
}
.seed-card__request-btn:hover {
  background: #1c421b;
  color: #fff;
  transform: scale(1.02);
}
.seed-card__request-btn:active {
  transform: scale(0.98);
}
.seed-card__request-btn.is-added {
  background: #1c421b;
  color: #fff;
  border-color: #1c421b;
}

.seed-toast {
  position: fixed;
  bottom: 5rem;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  pointer-events: none;
  z-index: 101;
}
@media (min-width: 600px) {
  .seed-toast {
    bottom: 6rem;
    left: auto;
    right: 1.5rem;
    justify-content: flex-end;
  }
}
.seed-toast span {
  background: #1c421b;
  color: #fff;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 500;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  white-space: nowrap;
}
@media (min-width: 600px) {
  .seed-toast span {
    padding: 0.75rem 1.5rem;
    font-size: 0.95rem;
    border-radius: 8px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
  }
}

.seed-request-fab {
  position: fixed;
  bottom: 1rem;
  right: 1rem;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #1c421b;
  color: #fff;
  border: none;
  box-shadow: 0 4px 16px rgba(28, 66, 27, 0.4);
  cursor: pointer;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.25rem;
  font-size: 1rem;
  font-weight: 600;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.seed-request-fab:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 20px rgba(28, 66, 27, 0.5);
}
.seed-request-fab:active {
  transform: scale(0.95);
}
@media (min-width: 600px) {
  .seed-request-fab {
    bottom: 1.5rem;
    right: 1.5rem;
    width: 60px;
    height: 60px;
    font-size: 1.1rem;
  }
}

.seed-request-panel {
  position: fixed;
  bottom: 0;
  right: 0;
  left: 0;
  width: auto;
  background: #fff;
  border-radius: 16px 16px 0 0;
  box-shadow: 0 -4px 32px rgba(53, 28, 18, 0.2);
  z-index: 100;
  overflow: hidden;
  max-height: 70vh;
  flex-direction: column;
}
.seed-request-panel:not(.is-expanded) {
  display: none !important;
}
@media (min-width: 600px) {
  .seed-request-panel {
    bottom: 1.5rem;
    right: 1.5rem;
    left: auto;
    width: min(400px, 100vw - 2rem);
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(53, 28, 18, 0.2);
    max-height: 70vh;
  }
}
.seed-request-panel__header {
  background: #1c421b;
  color: #fff;
  padding: 0.75rem 1rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-shrink: 0;
  transition: background 0.15s ease;
}
.seed-request-panel__header:hover {
  background: #153615;
}
@media (min-width: 600px) {
  .seed-request-panel__header {
    padding: 1rem 1.25rem;
  }
}
.seed-request-panel__header h4 {
  margin: 0;
  font-size: 0.9rem;
  font-weight: 600;
}
@media (min-width: 600px) {
  .seed-request-panel__header h4 {
    font-size: 1rem;
  }
}
.seed-request-panel__close-header {
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.25rem;
  padding: 0;
  cursor: pointer;
  line-height: 1;
  transition: color 0.15s ease;
}
.seed-request-panel__close-header:hover {
  color: #fff;
}
.seed-request-panel__body {
  display: block;
  overflow-y: auto;
}
.seed-request-panel__list-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.75rem 1rem;
  font-size: 0.8rem;
  color: #6c4f3f;
  border-bottom: 1px solid #e8ddd0;
}
@media (min-width: 600px) {
  .seed-request-panel__list-header {
    padding: 0.75rem 1.25rem;
  }
}
.seed-request-panel__clear-btn {
  background: none;
  border: none;
  color: #b0462a;
  font-size: 0.8rem;
  font-weight: 500;
  cursor: pointer;
  padding: 0;
  text-decoration: underline;
}
.seed-request-panel__clear-btn:hover {
  color: #943a23;
}
.seed-request-panel__list {
  max-height: 150px;
  overflow-y: auto;
  padding: 0.5rem 0;
}
@media (min-width: 600px) {
  .seed-request-panel__list {
    max-height: 200px;
  }
}
.seed-request-panel__item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.5rem 1.25rem;
  font-size: 0.9rem;
  color: #351c12;
}
.seed-request-panel__item:hover {
  background: #f8f4eb;
}
.seed-request-panel__remove {
  background: none;
  border: none;
  color: #999;
  cursor: pointer;
  padding: 0.25rem;
  font-size: 1rem;
  line-height: 1;
}
.seed-request-panel__remove:hover {
  color: #c44324;
}
.seed-request-panel__actions {
  padding: 1rem 1.25rem;
  border-top: 1px solid #e8ddd0;
}
.seed-request-panel__submit-btn {
  width: 100%;
  padding: 0.75rem 1rem;
  background: #b0462a;
  color: #fff;
  border: none;
  border-radius: 6px;
  font-size: 0.9rem;
  font-weight: 500;
  font-family: inherit;
  cursor: pointer;
  transition: background 0.15s ease;
}
.seed-request-panel__submit-btn:hover {
  background: #943a23;
}
.seed-request-panel__form {
  padding: 1rem 1.25rem;
}
.seed-request-panel__field {
  margin-bottom: 1rem;
}
.seed-request-panel__field label {
  display: block;
  font-size: 0.8rem;
  font-weight: 500;
  color: #6c4f3f;
  margin-bottom: 0.35rem;
}
.seed-request-panel__field input {
  width: 100%;
  padding: 0.6rem 0.75rem;
  border: 2px solid #e8ddd0;
  border-radius: 6px;
  font-size: 0.9rem;
  font-family: inherit;
  transition: border-color 0.15s ease;
}
.seed-request-panel__field input:focus {
  outline: none;
  border-color: #1c421b;
}
.seed-request-panel__captcha {
  margin-bottom: 1rem;
}
.seed-request-panel__error {
  color: #c44324;
  font-size: 0.85rem;
  margin: 0 0 1rem;
}
.seed-request-panel__form-actions {
  display: flex;
  gap: 0.75rem;
}
.seed-request-panel__cancel-btn {
  flex: 1;
  padding: 0.6rem 1rem;
  background: #f8f4eb;
  color: #6c4f3f;
  border: none;
  border-radius: 6px;
  font-size: 0.85rem;
  font-family: inherit;
  cursor: pointer;
}
.seed-request-panel__cancel-btn:hover {
  background: #e8ddd0;
}
.seed-request-panel__success {
  position: relative;
  padding: 1.5rem 1.25rem;
  text-align: center;
}
.seed-request-panel__success p {
  margin: 0 0 1rem;
  color: #1c421b;
  font-weight: 500;
}
.seed-request-panel__close-btn {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  background: none;
  border: none;
  color: #999;
  cursor: pointer;
  padding: 0.25rem 0.5rem;
  font-size: 1.1rem;
  line-height: 1;
  border-radius: 4px;
  transition: all 0.15s ease;
}
.seed-request-panel__close-btn:hover {
  background: #f8f4eb;
  color: #c44324;
}
.seed-request-panel__reset-btn {
  padding: 0.5rem 1rem;
  background: none;
  border: 1px solid #e8ddd0;
  border-radius: 6px;
  color: #6c4f3f;
  font-size: 0.85rem;
  font-family: inherit;
  cursor: pointer;
}
.seed-request-panel__reset-btn:hover {
  border-color: #1c421b;
  color: #1c421b;
}

}