.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.75rem 1.1rem;
  border-radius: var(--radius-s);
  font-weight: 700;
  font-family: 'Quicksand', system-ui, sans-serif;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.btn:focus-visible {
  outline: 2px solid var(--color-sage);
  outline-offset: 3px;
}

.btn:hover {
  transform: translateY(-1px);
  box-shadow: var(--shadow-soft);
}

.btn--primary {
  background: var(--color-sage);
  color: #fff;
  border-color: var(--color-sage);
}

.btn--ghost {
  background: transparent;
  color: var(--color-coffee);
  border-color: rgba(149, 167, 145, 0.5);
}

.card {
  background: #fff;
  padding: var(--space-m);
  border-radius: var(--radius-m);
  box-shadow: var(--shadow-soft);
  display: flex;
  flex-direction: column;
  gap: var(--space-s);
}

.card__icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(151, 168, 145, 0.18);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--color-coffee);
  font-weight: 700;
}

.grid {
  display: grid;
  gap: var(--space-m);
}

.grid--2 {
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.grid--3 {
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}

.home-section {
  padding: var(--space-xl) 0;
}

.home-section--shop {
  background: rgba(243, 240, 231, 0.7);
}

.home-section__header {
  display: grid;
  gap: var(--space-s);
  text-align: center;
  margin-bottom: var(--space-l);
}

.home-section__title {
  font-family: 'Quicksand', system-ui, sans-serif;
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  color: var(--color-sage);
}

.home-section__lead {
  max-width: 820px;
  margin: 0 auto;
  color: var(--color-text-muted);
  line-height: 1.7;
}

.home-shop-carousel {
  position: relative;
  overflow: hidden;
  padding-block: var(--space-s);
}

.home-shop-carousel__track {
  position: relative;
  display: flex;
  gap: var(--space-m);
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding-bottom: var(--space-s);
  padding-inline: var(--space-xs, 0.5rem);
  z-index: 1;
}

.home-shop-carousel__track::-webkit-scrollbar {
  height: 0;
}

.home-shop-carousel__track {
  scrollbar-width: none;
}

.home-shop-card {
  background: #fff;
  padding: var(--space-m);
  border-radius: 18px;
  border: 1px solid rgba(149, 167, 145, 0.3);
  box-shadow: var(--shadow-soft);
  display: grid;
  gap: var(--space-s);
  flex: 0 0 80%;
  max-width: 80%;
  scroll-snap-align: start;
}

.home-shop-card__title {
  font-family: 'Quicksand', system-ui, sans-serif;
  font-size: 1.1rem;
  color: var(--color-coffee);
}

.home-shop-card__meta {
  color: var(--color-text-muted);
  line-height: 1.6;
}

.home-shop-carousel__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 42px;
  height: 42px;
  display: none;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid rgba(149, 167, 145, 0.2);
  background: rgba(243, 240, 231, 0.9);
  color: var(--color-coffee);
  box-shadow: var(--shadow-soft);
  cursor: pointer;
  transition: opacity 0.2s ease, transform 0.2s ease;
  z-index: 5;
}

.home-shop-carousel__nav:hover {
  opacity: 0.9;
  transform: translateY(-50%) scale(1.02);
}

.home-shop-carousel__nav--prev {
  left: 0.75rem;
}

.home-shop-carousel__nav--next {
  right: 0.75rem;
}

.home-section__actions {
  margin-top: var(--space-m);
  display: flex;
  justify-content: center;
}

.image-slot--shop {
  min-height: 220px;
}

.image-slot__media-wrapper {
  width: 100%;
  height: 100%;
}

.image-slot__label {
  position: absolute;
  right: 10px;
  bottom: 10px;
  background: rgba(243, 240, 231, 0.96);
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 0.8rem;
  color: var(--color-text);
  letter-spacing: 0.01em;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.05);
}

@media (min-width: 640px) {
  .home-shop-card {
    flex-basis: 50%;
    max-width: 50%;
  }
}

@media (min-width: 768px) {
  .home-shop-card {
    flex-basis: 33%;
    max-width: 33%;
  }

  .home-shop-carousel__nav {
    display: flex;
    opacity: 0.85;
  }
}

.section--testimonials {
  padding-block: var(--space-2xl);
}

.testimonials {
  display: flex;
  flex-direction: column;
  gap: var(--space-xl);
}

.testimonials__list {
  display: grid;
  gap: var(--space-m);
}

@media (min-width: 768px) {
  .testimonials__list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (min-width: 1024px) {
  .testimonials__list {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }
}

.testimonial-card {
  background: #fff;
  border-radius: var(--radius-m);
  box-shadow: var(--shadow-soft);
  padding: var(--space-m);
  height: 100%;
  display: flex;
  align-items: center;
}

.testimonial-card__text {
  font-size: 0.98rem;
  line-height: 1.6;
  color: var(--color-text);
}

.testimonials__cta {
  display: flex;
  justify-content: center;
}

.testimonials__cta-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 700;
}

.testimonials__cta-icon {
  font-size: 1.1rem;
  color: var(--color-coffee);
}

.badge-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem 0.9rem;
  border-radius: 999px;
  background: rgba(149, 167, 145, 0.14);
  color: var(--color-text);
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease;
}

.badge-pill.is-active {
  background: var(--color-sage);
  color: #fff;
}

.menu-tabs {
  display: flex;
  gap: var(--space-s);
  flex-wrap: wrap;
}

.menu-tabs::-webkit-scrollbar {
  height: 6px;
}

.menu-tabs::-webkit-scrollbar-thumb {
  background: rgba(44, 43, 40, 0.15);
  border-radius: 999px;
}

.menu-tabs__item {
  padding: 0.55rem 1rem;
  border-radius: 999px;
  border: 1px solid rgba(149, 167, 145, 0.4);
  background: #fff;
  color: var(--color-text);
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
  white-space: nowrap;
}

.menu-tabs__item--active {
  background: var(--color-sage);
  color: #fff;
  border-color: var(--color-sage);
}

.menu-category {
  display: none;
  flex-direction: column;
  gap: var(--space-s);
  margin-top: var(--space-m);
}

@media (max-width: 560px) {
  .menu-tabs {
    flex-wrap: nowrap;
    overflow-x: auto;
    padding-bottom: var(--space-xs);
    -webkit-overflow-scrolling: touch;
  }

  .menu-tabs__item {
    flex: 0 0 auto;
  }
}

.menu-category.is-active {
  display: flex;
}

.menu-item {
  padding: var(--space-s);
  border-radius: var(--radius-s);
  background: rgba(243, 240, 231, 0.5);
  border: 1px solid rgba(149, 167, 145, 0.16);
}

.menu-item__header {
  display: flex;
  justify-content: space-between;
  gap: var(--space-s);
  font-weight: 700;
  color: var(--color-coffee);
}

.menu-item__desc {
  color: var(--color-text-muted);
  font-size: 0.95rem;
}

.faq {
  display: grid;
  gap: var(--space-s);
}

.faq__item {
  padding: var(--space-m);
  border-radius: var(--radius-m);
  background: #fff;
  border: 1px solid rgba(119, 60, 43, 0.08);
  box-shadow: var(--shadow-soft);
}

.faq__question {
  font-weight: 700;
  color: var(--color-coffee);
  margin-bottom: var(--space-xs);
}

.form {
  display: grid;
  gap: var(--space-s);
}

.form__group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.form input,
.form textarea,
.form select {
  padding: 0.75rem;
  border-radius: var(--radius-s);
  border: 1px solid rgba(119, 60, 43, 0.2);
  background: #fff;
  font: inherit;
}

.form textarea {
  min-height: 140px;
  resize: vertical;
}

.notice {
  background: rgba(151, 168, 145, 0.12);
  border: 1px solid rgba(151, 168, 145, 0.35);
  border-radius: var(--radius-s);
  padding: var(--space-s);
  color: var(--color-text);
}

.order-product {
  padding: var(--space-m);
  border: 1px solid rgba(119, 60, 43, 0.08);
  box-shadow: var(--shadow-soft);
  gap: var(--space-m);
  background: #fff;
  border-radius: var(--radius-m);
}

.order-product h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--color-text);
}

.order-product p {
  color: var(--color-text-muted);
  font-size: 0.97rem;
}

.order-product__meta {
  color: var(--color-text-muted);
  font-size: 0.95rem;
}

.order-product__options {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: var(--space-s);
  margin: var(--space-s) 0;
}

@media (max-width: 480px) {
  .order-product__options {
    grid-template-columns: 1fr;
  }
}

.order-product__field label {
  display: block;
  font-weight: 600;
  margin-bottom: 0.25rem;
  font-size: 0.85rem;
  color: var(--color-text-muted);
}

.order-product__field select,
.order-product__field input,
.order-product__field textarea {
  width: 100%;
  padding: 0.65rem 0.7rem;
  border-radius: var(--radius-s);
  border: 1px solid rgba(119, 60, 43, 0.2);
  background: #fff;
  font: inherit;
}

.order-qty {
  display: flex;
  align-items: center;
  gap: var(--space-xs);
  flex-wrap: wrap;
  justify-content: flex-start;
  width: 100%;
  margin-top: var(--space-xs);
}

.order-qty button {
  background: #fff;
  border: 1px solid rgba(149, 167, 145, 0.4);
  border-radius: var(--radius-s);
  padding: 0.35rem 0.7rem;
  cursor: pointer;
  font-weight: 700;
  color: var(--color-coffee);
}

.order-qty input {
  width: 72px;
  text-align: center;
  padding: 0.5rem;
  border: 1px solid rgba(119, 60, 43, 0.2);
  border-radius: var(--radius-s);
}

.order-product__add {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: var(--space-s);
  padding: 0.65rem 0.9rem;
  border-radius: 999px;
  border: 1px solid rgba(149, 167, 145, 0.35);
  background: linear-gradient(135deg, #f9f6ef 0%, #f2eee3 100%);
  color: var(--color-coffee);
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.order-product__add i {
  color: var(--color-sage);
}

.order-product__add:hover {
  transform: translateY(-1px);
  border-color: var(--color-sage);
  box-shadow: var(--shadow-soft);
}

.order-summary {
  display: flex;
  flex-direction: column;
  gap: var(--space-m);
}

.order-summary__section {
  display: grid;
  gap: var(--space-s);
}

.order-summary__section + .order-summary__section {
  border-top: 1px solid rgba(119, 60, 43, 0.12);
  padding-top: var(--space-m);
}

.order-summary__section--actions {
  gap: var(--space-s);
  border-top: 1px solid rgba(119, 60, 43, 0.12);
  padding-top: var(--space-s);
}

.order-summary__section--actions .btn {
  width: 100%;
}

.order-summary__list {
  display: grid;
  gap: var(--space-xs);
  padding: 0;
  margin: 0;
}

.order-summary__meta {
  display: grid;
  gap: 0.15rem;
}

.order-summary__line {
  display: flex;
  justify-content: space-between;
  gap: var(--space-s);
  align-items: baseline;
  font-weight: 600;
  padding: var(--space-xs) 0;
}

.order-cart__line {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: start;
  gap: var(--space-s);
}

.order-cart__body {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: var(--space-s);
  align-items: baseline;
}

.order-cart__remove {
  align-self: start;
  background: rgba(149, 167, 145, 0.12);
  border: 1px solid rgba(149, 167, 145, 0.35);
  color: var(--color-text-muted);
  border-radius: 999px;
  padding: 0.35rem 0.45rem;
  line-height: 1;
  cursor: pointer;
  transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease, transform 0.15s ease;
}

.order-cart__remove:hover,
.order-cart__remove:focus-visible {
  background: rgba(149, 167, 145, 0.2);
  border-color: var(--color-sage);
  color: var(--color-coffee);
  outline: none;
}

.order-summary__line--fee {
  border-top: 1px solid rgba(119, 60, 43, 0.12);
  padding-top: var(--space-xs);
  color: var(--color-text);
}

.order-summary__value {
  color: var(--color-coffee);
}

.order-summary__meta small {
  display: block;
  color: var(--color-text-muted);
  font-weight: 500;
}

.order-summary__empty {
  color: var(--color-text-muted);
  margin: 0;
}

.order-summary__total {
  padding-top: var(--space-xs);
  border-top: 1px solid rgba(119, 60, 43, 0.12);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 700;
  color: var(--color-coffee);
}

.order-feedback,
.form-feedback {
  display: none;
  margin-top: var(--space-s);
  padding: var(--space-s);
  border-radius: var(--radius-s);
  border: 1px solid transparent;
}

.order-feedback.is-visible,
.form-feedback.is-visible {
  display: block;
}

.order-feedback--success,
.form-feedback--success {
  background: rgba(151, 168, 145, 0.16);
  border-color: rgba(151, 168, 145, 0.5);
  color: var(--color-coffee);
}

.order-feedback--error,
.form-feedback--error {
  background: rgba(192, 79, 67, 0.12);
  border-color: rgba(192, 79, 67, 0.4);
  color: #4a1f1b;
}

.social-links {
  display: flex;
  gap: var(--space-s);
  justify-content: center;
}

.social-link {
  width: 40px;
  height: 40px;
  border-radius: 999px;
  border: 1px solid rgba(149, 167, 145, 0.35);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  color: var(--color-coffee);
  transition: transform 0.15s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.social-link:hover {
  transform: translateY(-1px) scale(1.03);
  border-color: var(--color-sage);
  box-shadow: var(--shadow-soft);
  color: var(--color-coffee);
}

.social-link i {
  font-size: 1.05rem;
}

.image-slot {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  background: rgba(149, 167, 145, 0.1);
  border: 1px dashed rgba(149, 167, 145, 0.6);
  min-height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.image-slot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.image-slot__filename {
  position: absolute;
  right: 8px;
  bottom: 8px;
  background: rgba(243, 240, 231, 0.95);
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 0.75rem;
  color: var(--coffee);
  letter-spacing: 0.02em;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.04);
}

.image-slot.image-slot--has-image .image-slot__filename {
  display: none;
}

.product-card__image {
  width: 100%;
  height: 210px;
  box-shadow: var(--shadow-soft);
  border-radius: var(--radius-m);
  overflow: hidden;
}

@media (max-width: 768px) {
  .product-card__image {
    height: 180px;
  }
}

.contact-list {
  display: grid;
  gap: 0.4rem;
}

.contact-row {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.35rem 0;
}

.contact-row i {
  color: var(--color-sage);
  font-size: 1rem;
}

.map-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.55rem 0.85rem;
  border-radius: 999px;
  border: 1px solid rgba(149, 167, 145, 0.45);
  background: rgba(149, 167, 145, 0.12);
  color: var(--color-text);
  font-weight: 600;
  width: fit-content;
  transition: background 0.15s ease, transform 0.15s ease;
}

.map-link:hover {
  transform: translateY(-1px);
  background: rgba(149, 167, 145, 0.18);
}

.contact-card__footer {
  margin-top: var(--space-s);
}

.form-honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.form__row {
  display: grid;
  gap: var(--space-s);
}

@media (min-width: 768px) {
  .form__row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: var(--space-m);
  }
}

.form__field {
  display: grid;
  gap: 0.35rem;
}

.order-form__group--address input:disabled {
  background: rgba(0, 0, 0, 0.03);
  color: var(--color-text-muted);
}

.order-form__group--address.is-disabled {
  opacity: 0.7;
}

.order-form__group--address.is-disabled input {
  cursor: not-allowed;
}

.order-fulfillment {
  display: grid;
  gap: 0.5rem;
  padding: var(--space-s);
  border: 1px solid rgba(149, 167, 145, 0.3);
  border-radius: var(--radius-m);
  background: rgba(243, 240, 231, 0.6);
}

.order-fulfillment__address {
  display: none;
  gap: var(--space-s);
}

.order-fulfillment__address.is-visible {
  display: grid;
  grid-template-columns: 1fr;
}

.order-fulfillment legend {
  font-weight: 700;
  color: var(--color-coffee);
  margin-bottom: 0.25rem;
}

.order-fulfillment__option {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 600;
}

.order-fulfillment__option input {
  accent-color: var(--color-sage);
}

.order-section__header {
  display: grid;
  gap: var(--space-s);
}

.order-section {
  display: grid;
  gap: var(--space-m);
}

.order-section--fulfillment {
  padding: var(--space-m);
  border-radius: 20px;
  border: 1px solid rgba(149, 167, 145, 0.25);
  background: #fff;
  box-shadow: var(--shadow-soft);
}

.order-section--products {
  padding: var(--space-m);
  border: 1px solid rgba(149, 167, 145, 0.2);
  border-radius: 20px;
  background: rgba(243, 240, 231, 0.5);
  box-shadow: var(--shadow-soft);
}

.order-section__header h2,
.order-section__title {
  margin: 0;
  font-size: clamp(1.6rem, 3vw, 2rem);
  color: var(--color-sage);
}

.order-section__header p,
.order-section__lead {
  margin: 0.35rem 0 0;
  color: var(--color-text-muted);
  line-height: 1.6;
}

.link {
  color: var(--color-sage);
  font-weight: 700;
  text-decoration: none;
}

.link:hover {
  color: var(--color-coffee);
  text-decoration: underline;
}

.product-grid {
  display: grid;
  gap: var(--space-m);
  grid-template-columns: 1fr;
}

@media (min-width: 768px) {
  .product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: var(--space-l);
  }
}

.gallery-section {
  display: grid;
  gap: var(--space-m);
  padding: var(--space-l) 0;
  background: rgba(243, 240, 231, 0.5);
}

.gallery-section__header h2 {
  margin: 0;
  font-size: clamp(1.6rem, 3vw, 2rem);
  color: var(--color-coffee);
}

.gallery-section__header p {
  margin: 0.35rem 0 0;
  color: var(--color-text-muted);
}

.order-modal {
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 2000;
}

.order-modal--open {
  display: flex;
}

.order-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(21, 21, 21, 0.45);
  backdrop-filter: blur(1px);
}

.order-modal__dialog {
  position: relative;
  background: #f9f6ef;
  color: var(--color-coffee);
  border-radius: 16px;
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.18);
  padding: var(--space-l);
  width: min(520px, 92%);
  margin: 0 auto;
  z-index: 1;
}

.order-modal__title {
  margin: 0 0 0.5rem;
  color: var(--color-sage);
}

.order-modal__message {
  margin: 0;
  color: var(--color-text);
  line-height: 1.5;
}

.order-modal__close {
  position: absolute;
  top: 12px;
  right: 12px;
  background: transparent;
  border: 1px solid rgba(149, 167, 145, 0.35);
  border-radius: 999px;
  padding: 0.35rem 0.5rem;
  cursor: pointer;
  color: var(--color-text);
  transition: background 0.15s ease, transform 0.15s ease;
}

.order-modal__close:hover {
  background: rgba(149, 167, 145, 0.18);
  transform: translateY(-1px);
}

@media (max-width: 640px) {
  .order-modal__dialog {
    width: 96%;
    padding: var(--space-m);
  }
}

.gallery-strip {
  display: flex;
  gap: var(--space-m);
  overflow-x: auto;
  padding-bottom: var(--space-s);
  scroll-snap-type: x mandatory;
}

.gallery-strip::-webkit-scrollbar {
  height: 8px;
}

.gallery-strip::-webkit-scrollbar-thumb {
  background: rgba(149, 167, 145, 0.4);
  border-radius: 999px;
}

.gallery-item {
  flex: 0 0 280px;
  scroll-snap-align: start;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}

@media (min-width: 992px) {
  .gallery-item {
    flex-basis: 320px;
  }
}



.order-summary__fees {
  display: grid;
  gap: 0.25rem;
  border-top: 1px solid rgba(119, 60, 43, 0.12);
  padding-top: var(--space-xs);
}
