.shop-hero {
  padding: 100px 0 72px;
  background: #553e27;
  color: #fff;
  text-align: center;
}

.shop-hero__eyebrow,
.shop-section__eyebrow,
.shop-featured__eyebrow {
  margin: 0 0 12px;
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #d7b897;
}

.shop-hero__title,
.shop-section__title {
  margin: 0 0 16px;
  font-size: clamp(2.2rem, 4vw, 3.6rem);
  line-height: 1.08;
}

.shop-hero__text,
.shop-section__text,
.shop-subsection__header p,
.shop-featured__text,
.shop-card__text,
.shop-affiliate-note p,
.shop-checkout-note p {
  margin: 0;
  font-family: "Source Sans 3", sans-serif;
  font-size: 1.05rem;
  line-height: 1.8;
  color: inherit;
}

.shop-hero__text {
  max-width: 860px;
  margin-inline: auto;
  color: #f3e8db;
}

.shop-hero__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 28px;
}

.shop-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 18px;
  border: 1px solid transparent;
  border-radius: 999px;
  text-decoration: none;
  font-family: "Source Sans 3", sans-serif;
  font-weight: 700;
  font-size: 0.98rem;
  cursor: pointer;
  transition: transform 0.2s ease, background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
}

.shop-btn:hover {
  transform: translateY(-1px);
}

.shop-btn--primary {
  background: #7b5d3f;
  color: #fff;
}

.shop-btn--primary:hover {
  background: #946f49;
}

.shop-btn--secondary {
  background: #e7a57a;
  color: #553e27;
  border-color: #d9966d;
}

.shop-btn--secondary:hover {
  background: #d9966d;
  color: #fff;
  border-color: #d9966d;
}

.shop-btn--affiliate {
  background: #fff;
  color: #553e27;
  border-color: #d7b897;
}

.shop-btn--affiliate:hover {
  background: #efe7da;
}

.shop-btn--disabled,
.shop-btn--disabled:hover {
  background: #e9dfd2;
  color: #6b5848;
  border-color: #d8c8b7;
  cursor: not-allowed;
  transform: none;
}

.shop-info-bar {
  padding: 24px 0;
  background: #fffaf4;
}

.shop-info-bar__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.shop-info-bar__item {
  background: #fff;
  border-radius: 16px;
  padding: 22px;
  box-shadow: 0 10px 28px rgba(53, 37, 22, 0.06);
}

.shop-info-bar__item h2 {
  margin: 0 0 8px;
  font-size: 1.2rem;
}

.shop-info-bar__item p {
  margin: 0;
  font-family: "Source Sans 3", sans-serif;
  line-height: 1.7;
  color: #5f4a3a;
}

.shop-filters {
  padding: 18px 0 0;
  background: #fffaf4;
}

.shop-filters__wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.shop-filter-pill {
  display: inline-flex;
  align-items: center;
  padding: 10px 14px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid #e2d4c4;
  text-decoration: none;
  font-family: "Source Sans 3", sans-serif;
  font-weight: 600;
  color: #6b4a2b;
}

.shop-filter-pill:hover {
  background: #efe7da;
}

.shop-section {
  padding: 84px 0;
  background: #fff;
}

.shop-section--alt {
  background: #fffaf4;
}

.shop-section__header {
  max-width: 860px;
  margin: 0 auto 40px;
  text-align: center;
}

.shop-section__text,
.shop-subsection__header p {
  color: #5f4a3a;
}

.shop-featured {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 32px;
  align-items: center;
  background: #fff7ef;
  border-radius: 22px;
  padding: 28px;
  box-shadow: 0 16px 40px rgba(53, 37, 22, 0.08);
  margin-bottom: 56px;
}

.shop-featured__media img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
  display: block;
  border-radius: 18px;
}

.shop-featured__title {
  margin: 0 0 10px;
  font-size: clamp(2rem, 3vw, 2.8rem);
  line-height: 1.08;
}

.shop-featured__price {
  margin: 0 0 14px;
  font-size: 1.05rem;
  font-weight: 700;
  color: #8d5c2c;
}

.shop-featured__text {
  color: #5f4a3a;
}

.shop-featured__meta {
  display: grid;
  gap: 10px;
  margin-top: 18px;
}

.shop-featured__meta p {
  margin: 0;
  font-family: "Source Sans 3", sans-serif;
  line-height: 1.7;
  color: #5f4a3a;
}

.shop-featured__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}

.shop-subsection + .shop-subsection {
  margin-top: 56px;
}

.shop-subsection__header {
  margin-bottom: 24px;
}

.shop-subsection__header h3 {
  margin: 0 0 8px;
  font-size: 1.8rem;
}

.shop-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 26px;
}

.shop-grid--single {
  grid-template-columns: minmax(0, 760px);
  justify-content: center;
}

.shop-card {
  position: relative;
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 12px 28px rgba(53, 37, 22, 0.07);
  display: flex;
  flex-direction: column;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.shop-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.12);
}

.shop-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display: block;
  background: #efe7da;
}

.shop-card__body {
  display: grid;
  gap: 12px;
  padding: 24px;
  height: 100%;
}

.shop-card__body h4 {
  margin: 0;
  font-size: 1.45rem;
  line-height: 1.2;
}

.shop-card__price {
  margin: 0;
  font-size: 1rem;
  font-weight: 700;
  color: #8d5c2c;
  line-height: 1.5;
}

.shop-card__text {
  color: #5f4a3a;
}

.shop-card__availability {
  margin: 0;
  font-family: "Source Sans 3", sans-serif;
  font-size: 0.94rem;
  line-height: 1.6;
  color: #7a6654;
}

.shop-card__actions {
  margin-top: auto;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding-top: 4px;
}

.shop-card__actions .shop-btn {
  width: 100%;
  text-align: center;
}

.shop-card__badge {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 2;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(85, 62, 39, 0.92);
  color: #fff;
  font-family: "Source Sans 3", sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.shop-card__badge--custom {
  background: rgba(217, 150, 109, 0.95);
  color: #553e27;
}

.shop-card__badge--shipping {
  background: rgba(123, 93, 63, 0.92);
}

.shop-card__badge--affiliate {
  background: rgba(35, 24, 15, 0.9);
}

.shop-card__badge--coming-soon {
  background: rgba(122, 102, 84, 0.95);
}

.shop-card--unavailable {
  opacity: 0.92;
}

.shop-affiliate-note {
  max-width: 860px;
  margin: 0 auto 26px;
  padding: 16px 18px;
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 10px 24px rgba(53, 37, 22, 0.05);
}

.shop-affiliate-note p {
  color: #5f4a3a;
}

.shop-custom-form {
  max-width: 940px;
  margin: 0 auto;
  background: #fff;
  border-radius: 20px;
  padding: 28px;
  box-shadow: 0 14px 34px rgba(53, 37, 22, 0.08);
}

.shop-custom-form__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.shop-form-group {
  display: grid;
  gap: 8px;
}

.shop-form-group label {
  font-family: "Source Sans 3", sans-serif;
  font-weight: 700;
  color: #553e27;
}

.shop-form-group input,
.shop-form-group select,
.shop-form-group textarea {
  width: 100%;
  border: 1px solid #d7c8b7;
  border-radius: 14px;
  padding: 14px 16px;
  font-family: "Source Sans 3", sans-serif;
  font-size: 1rem;
  color: #2f2218;
  background: #fffaf4;
}

.shop-form-group textarea {
  resize: vertical;
}

.shop-custom-form__actions {
  margin-top: 22px;
  display: flex;
  justify-content: center;
}

.shop-checkout-note {
  padding: 28px 0 60px;
  background: #fff;
  text-align: center;
}

.shop-checkout-note p {
  max-width: 860px;
  margin-inline: auto;
  color: #7a6654;
}

@media (max-width: 1100px) {
  .shop-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .shop-featured {
    grid-template-columns: 1fr;
  }

  .shop-info-bar__grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .shop-hero {
    padding: 84px 0 64px;
  }

  .shop-section {
    padding: 68px 0;
  }

  .shop-grid,
  .shop-custom-form__grid {
    grid-template-columns: 1fr;
  }

  .shop-card__actions .shop-btn,
  .shop-featured__actions .shop-btn,
  .shop-hero__actions .shop-btn {
    width: 100%;
  }

  .shop-featured__media img {
    min-height: 300px;
  }

  .shop-custom-form {
    padding: 22px;
  }
}