/* Products page — Figma 622:845 (1440 artboard, 1320 grid, 20px gaps) */

.products-page.site-main {
  margin: 0;
  padding: 0;
  max-width: none;
}

.silver-products-page .header__bar {
  max-width: none;
  margin-left: auto;
  margin-right: auto;
}

.products-page-layout {
  --products-inset: var(--silver-inset-x);
  --products-gold: #f0d29f;
  --products-dark: #121211;
  --products-panel: #ececeb;
  --products-gap: 20px;
  --products-cell: calc((100% - 2 * var(--products-gap)) / 3);

  width: 100%;
  background: #fff;
}

/* —— Hero (718px, matches FAQ/About interior pages) —— */
.products-hero {
  position: relative;
  width: 100%;
  min-height: 718px;
  overflow: hidden;
  background: var(--products-dark);
}

.products-hero__media {
  position: absolute;
  inset: 0;
}

.products-hero__media,
.products-hero__image {
  display: block;
  width: 100%;
  height: 100%;
  min-height: inherit;
}

.products-hero__image {
  object-fit: cover;
  object-position: center 48%;
}

.products-hero__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.3);
}

.products-hero__content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: inherit;
  padding: 120px var(--products-inset) 72px;
  text-align: center;
}

.products-hero__eyebrow {
  margin: 0 0 24px;
  font-family: var(--font-konnect);
  font-size: 44px;
  font-weight: 300;
  line-height: 1.2;
  color: #fff;
}

.products-hero__title {
  margin: 0 0 28px;
  font-family: var(--font-konnect);
  font-size: 86px;
  font-weight: 800;
  line-height: 1.02;
  letter-spacing: 0.01em;
  color: #fff;
  text-transform: uppercase;
}

.products-hero__title-accent {
  color: var(--products-gold);
}

@media (min-width: 993px) {
  .products-hero__title-line {
    display: block;
  }

  .products-hero__title-line--second {
    margin-top: 0;
  }
}

.products-hero__description {
  max-width: 780px;
  margin: 0;
  font-family: var(--font-konnect);
  font-size: 22px;
  font-weight: 300;
  line-height: 1.45;
  color: #fff;
}

/* —— Main / intro —— */
.products-main {
  padding: 88px var(--products-inset) 96px;
  background: var(--products-panel);
}

.products-main__inner {
  max-width: none;
  margin: 0 auto;
}

.products-main__header {
  margin-bottom: 56px;
  text-align: center;
}

.products-main__title {
  margin: 0 0 24px;
  font-family: var(--font-konnect);
  font-size: 45px;
  font-weight: 300;
  line-height: 1.3;
  color: var(--products-dark);
}

.products-main__title strong {
  font-weight: 600;
}

.products-main__subtitle,
.products-main__subtitle * {
  max-width: 900px;
  margin: 0 auto;
  font-family: var(--font-konnect);
  font-size: 31px;
  font-weight: 300;
  line-height: 1.55;
  color: var(--products-dark);
}

/* —— Bento (3×3 grid, 20px gap) —— */
.products-bento {
  display: flex;
  flex-direction: column;
  gap: var(--products-gap);
}

.products-bento__band {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-template-rows: repeat(3, var(--products-cell));
  gap: var(--products-gap);
  width: 100%;
  min-width: 0;
}

.products-bento__band--remainder-1 {
  grid-template-rows: repeat(2, var(--products-cell));
}

.products-bento__band--remainder-2,
.products-bento__band--remainder-3,
.products-bento__band--partial-4,
.products-bento__band--partial-5 {
  grid-template-rows: repeat(3, var(--products-cell));
}

.products-bento__card {
  position: relative;
  display: block;
  min-width: 0;
  min-height: 0;
  overflow: hidden;
  text-decoration: none;
  background: var(--products-dark);
}

.products-bento__card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0) 40%,
    rgba(0, 0, 0, 0.72) 100%
  );
  pointer-events: none;
}

.products-bento__card--featured::after {
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.15) 0%,
    rgba(0, 0, 0, 0.55) 55%,
    rgba(0, 0, 0, 0.82) 100%
  );
}

.products-bento__image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.45s ease;
}

.products-bento__card:hover .products-bento__image {
  transform: scale(1.04);
}

.products-bento__footer {
  position: absolute;
  right: 20px;
  bottom: 20px;
  left: 20px;
  z-index: 1;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 12px;
}

.products-bento__label {
  font-family: var(--font-konnect);
  font-size: 18px;
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: 0.06em;
  text-align: left;
  text-transform: uppercase;
  color: #fff;
}

.products-bento__arrow {
  display: inline-flex;
  flex-shrink: 0;
  color: #fff;
}

.products-bento__arrow svg {
  display: block;
  width: 36px;
  height: 36px;
}

.products-bento__featured {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  padding: 32px 40px 36px;
  text-align: center;
}

.products-bento__featured-title {
  margin: 0 0 16px;
  font-family: var(--font-konnect);
  font-size: 22px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #fff;
}

.products-bento__featured-text {
  max-width: 520px;
  margin: 0 0 20px;
  font-family: var(--font-konnect);
  font-size: 16px;
  font-weight: 300;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.92);
}

.products-bento__featured-link {
  font-family: var(--font-konnect);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.3;
  color: var(--products-gold);
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* —— Newsletter —— */
.products-newsletter {
  padding: 48px var(--products-inset) 56px;
  background: var(--products-gold);
}

.products-newsletter__inner {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
  max-width: none;
  margin: 0 auto;
}

.products-newsletter__copy {
  flex: 0 1 auto;
  min-width: 0;
}

.products-newsletter__eyebrow {
  margin: 0 0 8px;
  font-family: var(--font-konnect);
  font-size: 30px;
  font-weight: 300;
  line-height: 1.2;
  color: var(--products-dark);
}

.products-newsletter__title {
  margin: 0;
  font-family: var(--font-konnect);
  font-size: 60px;
  font-weight: 600;
  line-height: 1.15;
  color: var(--products-dark);
}

.products-newsletter__form {
  display: flex;
  flex: 0 1 520px;
  align-items: stretch;
  min-width: 0;
  max-width: 520px;
  width: 100%;
}

.products-newsletter__input {
  flex: 1 1 auto;
  min-width: 0;
  height: 56px;
  padding: 0 20px;
  border: 0;
  background: #fff;
  font-family: var(--font-konnect);
  font-size: 16px;
  font-weight: 400;
  line-height: 1;
  color: var(--products-dark);
}

.products-newsletter__input::placeholder {
  color: #9a9a99;
}

.products-newsletter__input:focus {
  outline: 2px solid var(--products-dark);
  outline-offset: -2px;
}

.products-newsletter__submit {
  flex: 0 0 auto;
  min-width: 148px;
  height: 56px;
  padding: 0 28px;
  border: 0;
  background: var(--products-dark);
  font-family: var(--font-konnect);
  font-size: 22px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.06em;
  color: var(--products-gold);
  text-transform: uppercase;
  cursor: pointer;
  transition: opacity 0.2s ease;
}

.products-newsletter__submit:hover {
  opacity: 0.9;
}

/* —— Tablet —— */
@media (max-width: 1200px) and (min-width: 993px) {
  .products-page-layout {  }

  .products-hero__eyebrow {
    font-size: 36px;
  }

  .products-hero__title {
    font-size: 88px;
  }

  .products-hero__description {
    font-size: 20px;
  }

  .products-main__title {
    font-size: 38px;
  }

  .products-main__subtitle,
  .products-main__subtitle * {
    font-size: 24px;
  }

  .products-newsletter__title {
    font-size: 38px;
  }
}

/* —— Mobile (402px frame: keep 3-col mosaic, scaled cells) —— */
@media (max-width: 992px) {
  .products-page-layout {    --products-gap: 10px;
    --products-cell: min(42vw, 168px);
  }

  .silver-products-page .header__bar {
    max-width: none;
  }

  .products-hero {
    min-height: min(96.8vw, 389px);
  }

  .products-hero__overlay {
    background: linear-gradient(
      180deg,
      rgba(18, 18, 17, 0.35) 0%,
      rgba(18, 18, 17, 0.55) 45%,
      rgba(18, 18, 17, 0.72) 100%
    );
  }

  .products-hero__content {
    align-items: center;
    text-align: center;
  }

  .products-hero__eyebrow {
    margin-bottom: 8px;
    font-size: 15px;
  }

  .products-hero__title {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 12px;
    font-size: 38px;
    line-height: 1.05;
  }

  .products-hero__title-line {
    display: block;
  }

  .products-hero__title-line + .products-hero__title-line::before {
    content: none;
  }

  .products-hero__description {
    max-width: 332px;
    font-size: 13px;
  }

  .products-main {
    padding: 36px var(--products-inset) 40px;
  }

  .products-main__header {
    margin-bottom: 28px;
    text-align: left;
  }

  .products-main__title {
    margin-bottom: 12px;
    font-size: 20px;
    line-height: 1.3;
  }

  .products-main__subtitle,
  .products-main__subtitle * {
    font-size: 15px;
    font-weight: 300;
    line-height: 1.45;
    text-align: left;
  }

  .products-bento__band {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: none;
    grid-auto-rows: var(--products-cell);
  }

  .products-bento__band .products-bento__card {
    grid-column: auto !important;
    grid-row: auto !important;
    min-height: var(--products-cell);
  }

  .products-bento__band--eight .products-bento__card--a,
  .products-bento__band--eight .products-bento__card--e {
    grid-column: span 1 !important;
    grid-row: span 2 !important;
  }

  .products-bento__band--eight .products-bento__card--f {
    grid-column: 1 / -1 !important;
    grid-row: span 1 !important;
  }

  .products-bento__band--standard .products-bento__card--a,
  .products-bento__band--standard .products-bento__card--e {
    grid-column: span 1 !important;
    grid-row: span 2 !important;
  }

  .products-bento__band--standard .products-bento__card--d {
    grid-column: 1 / -1 !important;
    grid-row: span 1 !important;
  }

  .products-bento__footer {
    right: 12px;
    bottom: 14px;
    left: 12px;
  }

  .products-bento__label {
    font-size: 11px;
    letter-spacing: 0.05em;
  }

  .products-bento__arrow svg {
    width: 28px;
    height: 28px;
  }

  .products-bento__featured {
    padding: 20px 16px 18px;
  }

  .products-bento__featured-title {
    margin-bottom: 10px;
    font-size: 14px;
  }

  .products-bento__featured-text {
    margin-bottom: 12px;
    font-size: 12px;
  }

  .products-bento__featured-link {
    font-size: 12px;
  }

  .products-newsletter {
    padding: 32px var(--products-inset) 36px;
  }

  .products-newsletter__inner {
    flex-direction: column;
    align-items: stretch;
    gap: 20px;
  }

  .products-newsletter__eyebrow {
    margin-bottom: 6px;
    font-size: 14px;
  }

  .products-newsletter__title {
    font-size: 22px;
    line-height: 1.25;
  }

  .products-newsletter__form {
    flex: 1 1 auto;
    flex-direction: column;
    max-width: none;
  }

  .products-newsletter__input {
    height: 48px;
    padding: 0 14px;
    font-size: 14px;
  }

  .products-newsletter__submit {
    width: 100%;
    min-width: 0;
    height: 48px;
    font-size: 14px;
  }
}

@media (max-width: 430px) {
  .products-page-layout {  }

  .products-hero__description {
    max-width: 100%;
  }

  .products-hero__title {
    font-size: 34px;
  }
}
