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

body {
  font-family:
    -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu",
    "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background-color: #f6f6e8;
  color: #1e293b;
}

/* ── header ── */

.whs4-header {
  background-color: #000000;
  padding: 1rem;
}

.whs4-header-container {
  max-width: 72rem;
  margin: 0 auto;
}

.whs4-header-logo {
  height: 2rem;
}

/* ── banner ── */

.whs4-banner {
  width: 100%;
}

.whs4-banner-image-wrapper {
  width: 100%;
}

.whs4-banner-image {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
}

/* ── products section ── */

.whs4-products {
  background-color: #f6f6e8;
}

.whs4-products-container {
  max-width: 72rem;
  margin: 0 auto;
  padding: 3rem 1rem 2.5rem;
}

/* ── section heading ── */

.whs4-section-heading {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 2.5rem;
}

.whs4-divider {
  display: flex;
  align-items: center;
  gap: 1rem;
  width: 100%;
  max-width: 28rem;
}

.whs4-divider:first-child {
  margin-bottom: 0.75rem;
}

.whs4-divider:last-child {
  margin-top: 0.75rem;
}

.whs4-divider-line {
  flex: 1;
  height: 1px;
  background-color: #b6b736;
}

.whs4-divider-line--left {
  background: linear-gradient(to right, transparent, #b6b736);
}

.whs4-divider-line--right {
  background: linear-gradient(to left, transparent, #b6b736);
}

.whs4-divider-diamond {
  width: 6px;
  height: 6px;
  background-color: #b6b736;
  transform: rotate(45deg);
  flex-shrink: 0;
}

.whs4-section-title {
  text-align: center;
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  background-image: linear-gradient(135deg, #d4d67a 0%, #b6b736 30%, #cece5c 50%, #9a9b2e 70%, #d4d67a 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* ── products grid ── */

.whs4-products-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.whs4-product-card {
  display: block;
  background-color: #e8e8c8;
  border-radius: 0.25rem;
  overflow: hidden;
  text-decoration: none;
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.whs4-product-card:hover {
  box-shadow: 0 10px 15px -3px rgba(182, 183, 54, 0.25);
  transform: translateY(-0.25rem);
}

.whs4-product-image-wrapper {
  background-color: #e8e8c8;
  overflow: hidden;
}

.whs4-product-image {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}

.whs4-product-card:hover .whs4-product-image {
  transform: scale(1.05);
}

.whs4-product-info {
  padding: 0.75rem;
  background-color: #e8e8c8;
}

.whs4-product-name {
  font-size: 0.875rem;
  font-weight: bold;
  color: #1e293b;
  line-height: 1.4;
  margin-bottom: 0.25rem;
  transition: color 0.3s ease;
}

.whs4-product-card:hover .whs4-product-name {
  color: #6b6c1f;
}

.whs4-product-price {
  font-size: 0.875rem;
  color: #64748b;
}

.whs4-price-tax {
  font-size: 0.875em;
}

/* ── information section ── */

.whs4-info {
  background-color: #ffffff;
}

.whs4-info-container {
  max-width: 48rem;
  margin: 0 auto;
  padding: 3rem 1rem 4rem;
}

.whs4-info-block {
  margin-bottom: 2.5rem;
}

.whs4-info-subtitle {
  font-size: 1rem;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 1.5rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid rgba(182, 183, 54, 0.3);
}

.whs4-info-text {
  font-size: 0.875rem;
  color: #475569;
  line-height: 1.7;
}

.whs4-info-text p {
  margin-bottom: 0.75rem;
}

.whs4-info-text p:last-child {
  margin-bottom: 0;
}

.whs4-info-text strong,
.whs4-info-text b {
  font-weight: 700;
  color: #1e293b;
}

.whs4-info-text em {
  color: #94a3b8;
}

.whs4-note-text {
  font-size: 0.875rem;
  color: #475569;
  line-height: 1.7;
}

.whs4-note-text ul {
  list-style: none;
  padding: 0;
}

.whs4-note-text ul li {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
}

.whs4-note-text ul li::before {
  content: '';
  flex-shrink: 0;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: #b6b736;
  margin-top: 0.4rem;
}

/* ── info footer ── */

.whs4-info-footer {
  margin-top: 2.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(182, 183, 54, 0.3);
  font-size: 0.875rem;
}

.whs4-info-footer-text {
  color: #475569;
  margin-bottom: 0.75rem;
}

.whs4-event-link {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  color: #8a8b28;
  text-decoration: underline;
  text-underline-offset: 2px;
  transition: color 0.3s ease;
}

.whs4-event-link:hover {
  color: #6b6c1f;
}

/* ── footer (override) ── */

.footer {
  background-color: #000000;
  border-top: none;
  padding: 2rem 1.5rem;
}

.footer-logo {
  display: none;
}

.footer-copyright {
  color: #ffffff;
  letter-spacing: 0.05em;
}

/* ── responsive: 640px ── */

@media (min-width: 640px) {
  .whs4-header {
    padding: 1rem 1.5rem;
  }

  .whs4-products-container {
    padding: 4rem 1.5rem 3.5rem;
  }

  .whs4-section-heading {
    margin-bottom: 3.5rem;
  }

  .whs4-section-title {
    font-size: 1.5rem;
  }

  .whs4-products-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
  }

  .whs4-product-info {
    padding: 1rem;
  }

  .whs4-product-name {
    font-size: 1rem;
  }

  .whs4-info-container {
    padding: 4rem 1.5rem 6rem;
  }

  .whs4-info-subtitle {
    font-size: 1.125rem;
  }

  .whs4-info-text,
  .whs4-note-text {
    font-size: 1rem;
  }

  .whs4-info-footer {
    font-size: 1rem;
  }
}

/* ── responsive: 1024px ── */

@media (min-width: 1024px) {
  .whs4-products-container {
    padding: 4rem 2rem 3.5rem;
  }

  .whs4-products-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .whs4-info-container {
    padding: 4rem 2rem 6rem;
  }
}

footer {
  background-color: black;
  padding: 0 32px;
}

footer p {
  text-align: center;
  font-size: 14px;
  color: white;
}