.store-hero {
  padding-block: clamp(var(--space-12), 8vw, var(--space-24));
  border-bottom: 1px solid var(--color-border);
}

.store-hero__inner {
  max-width: 56rem;
}

.store-hero h1 {
  max-width: 15ch;
  margin-top: var(--space-4);
  font-family: var(--font-display);
  font-size: clamp(2.7rem, 6.2vw, 5.8rem);
  font-weight: 600;
  line-height: 0.98;
  letter-spacing: -0.045em;
}

.store-hero__lead {
  max-width: 56ch;
  margin-top: var(--space-6);
  font-size: var(--text-lg);
  color: var(--color-muted);
}

.store-hero__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--space-4) var(--space-6);
  margin-top: var(--space-8);
}

.store-hero__wholesale {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  color: var(--color-primary);
  font-size: var(--text-sm);
  font-weight: 600;
}

.store-hero__wholesale:hover {
  color: var(--color-primary-hover);
}

.store-products {
  min-height: 32rem;
  padding-block: clamp(var(--space-12), 7vw, var(--space-24));
  background: var(--color-white);
}

.store-products__heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: var(--space-8);
}

.store-products h2 {
  margin-top: var(--space-3);
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: 600;
}

.store-shopify-link {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  color: var(--color-primary);
  font-size: var(--text-sm);
  font-weight: 600;
}

.store-shopify-link:hover {
  color: var(--color-primary-hover);
}

.store-status {
  margin-top: var(--space-10);
  padding: var(--space-6);
  border-radius: var(--radius-lg);
  background: var(--color-bg);
  color: var(--color-muted);
}

.store-status[hidden] {
  display: none;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(19rem, 100%), 1fr));
  gap: var(--space-6);
  margin-top: var(--space-10);
}

.product-card {
  display: grid;
  grid-template-rows: auto 1fr;
  overflow: hidden;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  background: var(--color-bg);
}

.product-card__image-link {
  display: block;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--color-surface);
}

.product-card__image {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: var(--space-6);
  transition: transform 240ms cubic-bezier(0.16, 1, 0.3, 1);
}

.product-card__image-link:hover .product-card__image {
  transform: scale(1.025);
}

.product-card__body {
  display: flex;
  flex-direction: column;
  padding: var(--space-6);
}

.product-card__vendor {
  color: var(--color-primary);
  font-family: var(--font-mono);
  font-size: var(--text-xs);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.product-card h3 {
  max-width: 24ch;
  margin-top: var(--space-3);
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: 600;
  line-height: 1.12;
}

.product-card__price {
  margin-top: var(--space-4);
  font-size: var(--text-base);
  font-weight: 600;
}

.product-card__actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3);
  margin-top: auto;
  padding-top: var(--space-8);
}

.product-card__actions a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-3) var(--space-4);
  border-radius: var(--radius-sm);
  font-size: var(--text-sm);
  font-weight: 600;
  text-align: center;
}

.product-card__details {
  border: 1px solid var(--color-border);
  color: var(--color-text);
}

.product-card__details:hover {
  border-color: var(--color-primary);
  color: var(--color-primary);
}

.product-card__buy {
  background: var(--color-primary);
  color: var(--color-white);
}

.product-card__buy:hover {
  background: var(--color-primary-hover);
}

@media (max-width: 700px) {
  .store-hero {
    padding-block: var(--space-12) var(--space-16);
  }

  .store-hero h1 {
    font-size: clamp(2.45rem, 12vw, 3.8rem);
  }

  .store-products__heading {
    align-items: start;
    flex-direction: column;
    gap: var(--space-3);
  }
}

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

.store-wholesale {
  padding-block: clamp(var(--space-12), 7vw, var(--space-20));
  border-top: 1px solid var(--color-border);
  background: var(--color-bg);
  scroll-margin-top: 5rem;
}

.store-wholesale__inner {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.8fr);
  align-items: start;
  gap: clamp(var(--space-8), 5vw, var(--space-16));
}

.store-wholesale h2 {
  max-width: 20ch;
  margin-top: var(--space-3);
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: 600;
  line-height: 1.08;
  scroll-margin-top: 5rem;
}

.store-wholesale__copy p:not(.eyebrow) {
  max-width: 58ch;
  margin-top: var(--space-5);
  color: var(--color-muted);
}

.store-wholesale__list {
  margin-top: var(--space-6);
  padding: 0;
  list-style: none;
  display: grid;
  gap: var(--space-3);
}

.store-wholesale__list li {
  position: relative;
  padding-left: var(--space-6);
  color: var(--color-text);
  font-size: var(--text-sm);
}

.store-wholesale__list li::before {
  content: "";
  position: absolute;
  top: 0.55em;
  left: 0;
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background: var(--color-primary);
}

.store-wholesale__card {
  padding: clamp(var(--space-6), 3vw, var(--space-8));
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  background: var(--color-white);
}

.store-wholesale__label {
  color: var(--color-primary);
  font-family: var(--font-mono);
  font-size: var(--text-xs);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.store-wholesale__email {
  margin-top: var(--space-3);
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: 600;
  overflow-wrap: anywhere;
}

.store-wholesale__cta {
  width: 100%;
  margin-top: var(--space-6);
  text-align: center;
}

.store-wholesale__note {
  margin-top: var(--space-4);
  color: var(--color-muted);
  font-size: var(--text-sm);
}

@media (max-width: 860px) {
  .store-wholesale__inner {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 700px) {
  .store-hero__actions .button,
  .store-hero__actions .store-hero__wholesale {
    width: 100%;
    justify-content: center;
  }
}
