
.hb-beanie-gift {
  --hb-ink: #111111;
  --hb-copy: #333333;
  --hb-muted: #707070;
  --hb-line: #dddddd;
  --hb-soft: #f5f5f5;
  --hb-soft-2: #fafafa;
  --hb-white: #ffffff;
  --hb-focus: #555555;

  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0;
  color: var(--hb-copy);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 17px;
  line-height: 1.72;
}

.hb-beanie-gift,
.hb-beanie-gift * {
  box-sizing: border-box;
}

.hb-beanie-gift h1,
.hb-beanie-gift h2,
.hb-beanie-gift h3,
.hb-beanie-gift p,
.hb-beanie-gift ul,
.hb-beanie-gift ol,
.hb-beanie-gift figure {
  margin-top: 0;
}

.hb-beanie-gift h1,
.hb-beanie-gift .hb-lede,
.hb-beanie-gift .hb-reading,
.hb-beanie-gift section,
.hb-beanie-gift .hb-toc {
  width: 100%;
  max-width: none;
}

.hb-beanie-gift h1 {
  margin: 0 0 24px;
  color: var(--hb-ink);
  font-size: clamp(34px, 5vw, 54px);
  line-height: 1.06;
  letter-spacing: -0.035em;
}

.hb-beanie-gift h2 {
  margin: 70px 0 22px;
  padding-top: 18px;
  border-top: 2px solid var(--hb-ink);
  color: var(--hb-ink);
  font-size: clamp(27px, 3vw, 36px);
  line-height: 1.18;
  letter-spacing: -0.025em;
}

.hb-beanie-gift h3 {
  margin: 35px 0 13px;
  color: var(--hb-ink);
  font-size: 22px;
  line-height: 1.3;
}

.hb-beanie-gift p {
  margin-bottom: 19px;
}

.hb-beanie-gift a {
  color: var(--hb-ink);
  font-weight: 700;
  text-decoration-color: #969696;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
}

.hb-beanie-gift a:hover {
  text-decoration-color: var(--hb-ink);
}

.hb-beanie-gift a:focus-visible,
.hb-beanie-gift summary:focus-visible {
  outline: 2px solid var(--hb-focus);
  outline-offset: 3px;
}

.hb-beanie-gift section {
  scroll-margin-top: 24px;
}

.hb-beanie-gift .hb-lede {
  margin-bottom: 30px;
  color: #262626;
  font-size: 20px;
  line-height: 1.64;
}

.hb-beanie-gift .hb-reading {
  display: block;
}

/* TABLE OF CONTENTS */
.hb-beanie-gift .hb-toc {
  display: flex;
  flex-wrap: nowrap;
  gap: 8px;
  margin: 32px 0 48px;
  padding: 12px;
  border: 1px solid var(--hb-line);
  background: var(--hb-soft);
}

.hb-beanie-gift .hb-toc a {
  flex: 1 1 0;
  min-width: 0;
  padding: 10px 8px;
  border: 1px solid #c9c9c9;
  background: var(--hb-white);
  color: var(--hb-ink);
  font-size: 13px;
  line-height: 1.25;
  text-align: center;
  text-decoration: none;
  white-space: nowrap;
  transition:
    background .2s ease,
    color .2s ease,
    border-color .2s ease;
}

.hb-beanie-gift .hb-toc a:hover {
  border-color: var(--hb-ink);
  background: var(--hb-ink);
  color: var(--hb-white);
}

/* INTRO DECISION RAIL */
.hb-beanie-gift .hb-gift-lens {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  width: 100%;
  margin: 30px 0 40px;
  border-top: 1px solid var(--hb-line);
  border-left: 1px solid var(--hb-line);
}

.hb-beanie-gift .hb-gift-lens > div {
  padding: 20px;
  border-right: 1px solid var(--hb-line);
  border-bottom: 1px solid var(--hb-line);
}

.hb-beanie-gift .hb-gift-lens strong {
  display: block;
  margin-bottom: 6px;
  color: var(--hb-ink);
  font-size: 14px;
}

.hb-beanie-gift .hb-gift-lens span {
  display: block;
  color: var(--hb-muted);
  font-size: 14px;
  line-height: 1.55;
}

/* EDITORIAL CALLOUT */
.hb-beanie-gift .hb-quiet-note {
  width: 100%;
  margin: 28px 0 34px;
  padding: 23px 26px;
  border-left: 3px solid var(--hb-ink);
  background: var(--hb-soft);
}

.hb-beanie-gift .hb-quiet-note strong {
  color: var(--hb-ink);
}

/* EVIDENCE LIST */
.hb-beanie-gift .hb-evidence-list {
  width: 100%;
  margin: 25px 0 33px;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--hb-line);
}

.hb-beanie-gift .hb-evidence-list li {
  position: relative;
  margin: 0;
  padding: 18px 18px 18px 48px;
  border-bottom: 1px solid var(--hb-line);
}

.hb-beanie-gift .hb-evidence-list li:before {
  content: "";
  position: absolute;
  top: 25px;
  left: 14px;
  width: 12px;
  height: 12px;
  border: 2px solid var(--hb-ink);
  border-radius: 50%;
  background: var(--hb-white);
}

.hb-beanie-gift .hb-evidence-list strong {
  color: var(--hb-ink);
}

/* PRODUCT FEATURE */
.hb-beanie-gift .hb-product {
  display: grid;
  grid-template-columns: minmax(330px, .95fr) minmax(330px, 1.05fr);
  width: 100%;
  margin: 40px 0 48px;
  overflow: hidden;
  border: 1px solid var(--hb-line);
  background: var(--hb-white);
  transition:
    transform .28s ease,
    box-shadow .28s ease;
}

.hb-beanie-gift .hb-product:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 38px rgba(0,0,0,.07);
}

.hb-beanie-gift .hb-product.hb-product-reverse .hb-product-image {
  order: 2;
}

.hb-beanie-gift .hb-product.hb-product-reverse .hb-product-copy {
  order: 1;
}

.hb-beanie-gift .hb-product-image {
  position: relative;
  display: block;
  min-height: 500px;
  overflow: hidden;
  background: #f1f1f1;
  text-decoration: none;
}

.hb-beanie-gift .hb-product-image img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  padding: 20px;
  object-fit: contain;
  background: #f1f1f1;
  transition:
    opacity .38s ease,
    transform .5s ease;
}

.hb-beanie-gift .hb-product-image .hb-primary {
  opacity: 1;
}

.hb-beanie-gift .hb-product-image .hb-secondary {
  opacity: 0;
}

.hb-beanie-gift .hb-product:hover .hb-primary {
  opacity: 0;
}

.hb-beanie-gift .hb-product:hover .hb-secondary {
  opacity: 1;
}

.hb-beanie-gift .hb-product:hover .hb-product-image img {
  transform: scale(1.018);
}

.hb-beanie-gift .hb-product-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(30px, 4vw, 52px);
}

.hb-beanie-gift .hb-product-copy h3 {
  margin: 0 0 15px;
  font-size: clamp(24px, 2.5vw, 31px);
  line-height: 1.16;
}

.hb-beanie-gift .hb-eyebrow {
  margin-bottom: 10px;
  color: var(--hb-muted);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .09em;
  text-transform: uppercase;
}

.hb-beanie-gift .hb-product-point {
  margin-top: 4px;
  padding-top: 17px;
  border-top: 1px solid var(--hb-line);
  color: var(--hb-muted);
  font-size: 14px;
  line-height: 1.6;
}

/* BUTTONS */
.hb-beanie-gift .hb-button {
  align-self: flex-start;
  display: inline-block;
  margin-top: 9px;
  padding: 12px 19px;
  border: 1px solid var(--hb-ink);
  background: var(--hb-ink);
  color: var(--hb-white);
  font-size: 14px;
  min-height: 44px;
  font-weight: 700;
  text-decoration: none;
  transition:
    background .2s ease,
    color .2s ease;
}

.hb-beanie-gift .hb-button:hover {
  background: var(--hb-white);
  color: var(--hb-ink);
}

.hb-beanie-gift .hb-button-secondary {
  display: inline-block;
  padding: 12px 19px;
  border: 1px solid var(--hb-ink);
  background: var(--hb-white);
  color: var(--hb-ink);
  min-height: 44px;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
}

.hb-beanie-gift .hb-button-secondary:hover {
  background: var(--hb-ink);
  color: var(--hb-white);
}

/* COLOR DECISION */
.hb-beanie-gift .hb-two-paths {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  width: 100%;
  margin: 30px 0 36px;
}

.hb-beanie-gift .hb-path {
  padding: 25px 25px 23px;
  border-top: 2px solid var(--hb-ink);
  border-bottom: 1px solid var(--hb-line);
}

.hb-beanie-gift .hb-path strong {
  display: block;
  margin-bottom: 8px;
  color: var(--hb-ink);
  font-size: 17px;
}

.hb-beanie-gift .hb-path p {
  margin-bottom: 0;
  color: var(--hb-muted);
  font-size: 15px;
}

/* DECISION ROWS */
.hb-beanie-gift .hb-gift-scale {
  width: 100%;
  margin: 28px 0 38px;
  border-top: 2px solid var(--hb-ink);
}

.hb-beanie-gift .hb-scale-row {
  display: grid;
  grid-template-columns: 175px 1fr;
  gap: 25px;
  padding: 20px 0;
  border-bottom: 1px solid var(--hb-line);
}

.hb-beanie-gift .hb-scale-row strong {
  color: var(--hb-ink);
}

.hb-beanie-gift .hb-scale-row p {
  margin: 0;
}

/* DECISION STEPS */
.hb-beanie-gift .hb-decision {
  width: 100%;
  margin: 31px 0 38px;
  padding: 0;
  list-style: none;
  counter-reset: decision;
  border-top: 1px solid var(--hb-line);
}

.hb-beanie-gift .hb-decision li {
  position: relative;
  margin: 0;
  padding: 21px 20px 21px 62px;
  border-bottom: 1px solid var(--hb-line);
  counter-increment: decision;
}

.hb-beanie-gift .hb-decision li:before {
  content: counter(decision);
  position: absolute;
  top: 18px;
  left: 13px;
  width: 30px;
  color: var(--hb-ink);
  font-size: 20px;
  font-weight: 800;
  text-align: center;
}

.hb-beanie-gift .hb-decision strong {
  color: var(--hb-ink);
}

/* FAQ */
.hb-beanie-gift .hb-faq details {
  width: 100%;
  margin-bottom: 12px;
  border: 1px solid var(--hb-line);
  background: var(--hb-white);
}

.hb-beanie-gift .hb-faq summary {
  position: relative;
  padding: 19px 52px 19px 21px;
  color: var(--hb-ink);
  font-weight: 700;
  cursor: pointer;
  list-style: none;
}

.hb-beanie-gift .hb-faq summary::-webkit-details-marker {
  display: none;
}

.hb-beanie-gift .hb-faq summary:after {
  content: "+";
  position: absolute;
  top: 50%;
  right: 21px;
  transform: translateY(-50%);
  color: var(--hb-ink);
  font-size: 23px;
  font-weight: 400;
}

.hb-beanie-gift .hb-faq details[open] summary:after {
  content: "–";
}

.hb-beanie-gift .hb-faq details > div {
  padding: 0 21px 21px;
}

.hb-beanie-gift .hb-faq details p:last-child {
  margin-bottom: 0;
}

/* FINAL CTA */
.hb-beanie-gift .hb-final {
  width: 100%;
  margin-top: 68px;
  padding: clamp(30px, 5vw, 52px);
  border: 2px solid var(--hb-ink);
  background: var(--hb-soft);
}

.hb-beanie-gift .hb-final h2 {
  margin: 0 0 18px;
  padding: 0;
  border: 0;
}

.hb-beanie-gift .hb-final-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 25px;
}

@media (max-width: 920px) {
  .hb-beanie-gift .hb-toc {
    flex-wrap: wrap;
  }

  .hb-beanie-gift .hb-toc a {
    flex: 1 1 calc(33.333% - 8px);
  }

  .hb-beanie-gift .hb-gift-lens {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 780px) {
  .hb-beanie-gift {
    font-size: 16px;
    line-height: 1.68;
  }

  .hb-beanie-gift h1 {
    font-size: 36px;
  }

  .hb-beanie-gift h2 {
    margin-top: 56px;
  }

  .hb-beanie-gift .hb-toc a {
    flex: 1 1 calc(50% - 8px);
    white-space: normal;
  }

  .hb-beanie-gift .hb-product,
  .hb-beanie-gift .hb-product.hb-product-reverse {
    grid-template-columns: 1fr;
  }

  .hb-beanie-gift .hb-product.hb-product-reverse .hb-product-image,
  .hb-beanie-gift .hb-product.hb-product-reverse .hb-product-copy {
    order: initial;
  }

  .hb-beanie-gift .hb-product-image {
    min-height: 410px;
  }

  .hb-beanie-gift .hb-two-paths {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .hb-beanie-gift .hb-scale-row {
    grid-template-columns: 1fr;
    gap: 5px;
  }
}

@media (max-width: 540px) {
  .hb-beanie-gift .hb-gift-lens {
    grid-template-columns: 1fr;
  }

  .hb-beanie-gift .hb-product-image {
    min-height: 350px;
  }

  .hb-beanie-gift .hb-product-copy {
    padding: 25px 21px 29px;
  }

  .hb-beanie-gift .hb-button,
  .hb-beanie-gift .hb-button-secondary {
    width: 100%;
    text-align: center;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hb-beanie-gift .hb-product,
  .hb-beanie-gift .hb-product-image img,
  .hb-beanie-gift .hb-toc a,
  .hb-beanie-gift .hb-button,
  .hb-beanie-gift .hb-button-secondary {
    transition: none;
  }
}
