:root {
  --brown: #512c1f;
  --brown-deep: #3d2b1f;
  --red: #d12420;
  --cream: #f6f1ec;
  --cream-warm: #fffaf6;
  --line: #e7ded6;
  --muted: #6a584c;
  --shadow: 0 18px 38px rgba(61, 43, 31, .13);
}
* { box-sizing: border-box; }
html, body { max-width: 100%; overflow-x: hidden; }
body {
  margin: 0;
  font-family: Manrope, Arial, sans-serif;
  color: var(--brown-deep);
  background: var(--cream-warm);
}
a { color: var(--brown); }
img { max-width: 100%; display: block; }

/* Top bar + header */
.bx-topbar {
  background: var(--red); color: #fff;
  text-align: center; font-size: 13px; font-weight: 700;
  padding: 14px 12px;
}
.bx-header {
  position: relative;
  display: flex; align-items: center; justify-content: space-between;
  max-width: 1360px; margin: 0 auto; padding: 18px 24px; gap: 24px;
  background: #fff;
  border-bottom: 1px solid var(--line);
}
.bx-header__brand { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.bx-header__brand img { height: 36px; min-width: 36px; }
.bx-header__brand span { font-weight: 800; color: var(--brown); font-size: 15px; }
.bx-nav { display: flex; gap: clamp(10px, 1.15vw, 20px); flex-wrap: nowrap; align-items: center; justify-content: center; flex: 1 1 auto; }
.bx-nav__item { position: static; }
.bx-nav__link {
  display: inline-flex; align-items: center;
  color: var(--brown); font-size: 13px; font-weight: 700;
  text-decoration: none; text-transform: uppercase; letter-spacing: 0;
  white-space: nowrap; min-height: 34px;
}
.bx-nav__link:hover, .bx-nav__link.is-active { color: var(--red); }
.bx-mega {
  display: none;
  position: absolute;
  top: calc(100% + 1px);
  left: 24px;
  right: 24px;
  z-index: 40;
  grid-template-columns: minmax(220px, 1fr) 360px;
  gap: 42px;
  min-height: 280px;
  padding: 34px 42px;
  background: #fff;
  border-top: 1px solid var(--line);
  box-shadow: var(--shadow);
}
.bx-nav__item:hover .bx-mega,
.bx-nav__item:focus-within .bx-mega { display: grid; }
.bx-mega__links h3 {
  margin: 0 0 18px;
  color: var(--brown);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}
.bx-mega__links a {
  display: block;
  max-width: 360px;
  padding: 10px 0;
  color: var(--brown-deep);
  border-bottom: 1px solid #f0e8e1;
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
}
.bx-mega__links a:hover { color: var(--red); }
.bx-mega__feature {
  display: block;
  color: var(--brown-deep);
  font-weight: 800;
  text-decoration: none;
}
.bx-mega__feature img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  margin-bottom: 12px;
  border-radius: 4px;
}
.bx-mega__feature span { display: block; font-size: 14px; }
.bx-header__right { display: flex; align-items: center; gap: 18px; }
.bx-cartlink {
  position: relative; text-decoration: none; color: var(--brown);
  font-weight: 700; font-size: 13px;
}
.bx-cartlink__count {
  display: inline-flex; align-items: center; justify-content: center;
  min-width: 18px; height: 18px; padding: 0 5px; margin-left: 4px;
  border-radius: 999px; background: var(--red); color: #fff;
  font-size: 11px; font-weight: 800;
}

/* Hamburger + icon actions (shown on mobile only) */
.bx-burger {
  display: none;
  align-items: center; justify-content: center;
  width: 44px; height: 44px; margin: -6px 0 -6px -8px;
  padding: 0; border: 0; background: transparent;
  color: var(--brown); cursor: pointer; -webkit-tap-highlight-color: transparent;
}
.bx-iconlink {
  display: none; position: relative;
  align-items: center; justify-content: center;
  width: 44px; height: 44px; color: var(--brown); text-decoration: none;
}
.bx-iconlink__count {
  position: absolute; top: 4px; right: 2px;
  display: inline-flex; align-items: center; justify-content: center;
  min-width: 17px; height: 17px; padding: 0 4px;
  border-radius: 999px; background: var(--red); color: #fff;
  font-size: 10px; font-weight: 800; line-height: 1;
}

/* Slide-in mobile drawer */
.bx-noscroll { overflow: hidden; }
.bx-drawer { display: none; position: fixed; inset: 0; z-index: 1200; }
.bx-drawer[hidden] { display: none; }
.bx-drawer__scrim {
  position: absolute; inset: 0; background: rgba(38,24,16,.42);
  opacity: 0; transition: opacity .26s ease;
}
.bx-drawer.is-open .bx-drawer__scrim { opacity: 1; }
.bx-drawer__panel {
  position: absolute; top: 0; left: 0; bottom: 0;
  width: min(86vw, 360px);
  display: flex; flex-direction: column;
  padding: 18px 22px calc(28px + env(safe-area-inset-bottom));
  background: #fff; box-shadow: 0 0 40px rgba(38,24,16,.28);
  transform: translateX(-100%); transition: transform .26s ease;
  overflow-y: auto; -webkit-overflow-scrolling: touch;
}
.bx-drawer.is-open .bx-drawer__panel { transform: translateX(0); }
.bx-drawer__head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 22px; }
.bx-drawer__logo { height: 34px; width: auto; }
.bx-drawer__close {
  display: inline-flex; align-items: center; justify-content: center;
  width: 44px; height: 44px; margin-right: -10px;
  border: 0; background: transparent; color: var(--brown); cursor: pointer;
}
.bx-drawer__cta { width: 100%; margin: 0 0 24px; }
.bx-drawer__nav { display: flex; flex-direction: column; }
.bx-drawer__group { border-bottom: 1px solid var(--line); padding: 4px 0 12px; }
.bx-drawer__link {
  display: block; padding: 12px 0 6px;
  color: var(--brown); font-size: 17px; font-weight: 800;
  text-transform: uppercase; letter-spacing: .01em; text-decoration: none;
}
.bx-drawer__link.is-active { color: var(--red); }
.bx-drawer__sub { display: flex; flex-direction: column; }
.bx-drawer__sublink {
  padding: 7px 0; color: var(--muted); font-size: 14px; font-weight: 600;
  text-decoration: none;
}
.bx-drawer__sublink:active { color: var(--red); }
.bx-drawer__foot { display: flex; flex-wrap: wrap; gap: 18px; margin-top: 22px; }
.bx-drawer__foot a { color: var(--brown-deep); font-size: 14px; font-weight: 700; text-decoration: none; }

/* Generic layout */
.bx-wrap { max-width: 1180px; margin: 0 auto; padding: 40px 24px 72px; }
.bx-pagehead h1 {
  margin: 0 0 10px;
  color: var(--brown);
  font-size: clamp(34px, 4.4vw, 54px);
  font-weight: 500;
  line-height: 1.05;
}
.bx-pagehead p { margin: 0 0 28px; color: var(--muted); max-width: 680px; line-height: 1.55; }
.bx-breadcrumb { font-size: 13px; color: #8a7a6e; margin: 0 0 18px; }
.bx-breadcrumb a { color: #8a7a6e; text-decoration: none; }
.bx-breadcrumb a:hover { color: var(--red); }

/* Illy-style section landing template */
.bx-section-hero {
  display: grid;
  grid-template-columns: minmax(320px, 520px) 1fr;
  min-height: 520px;
  background: #f6f0ec;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.bx-section-hero__copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 58px clamp(24px, 6vw, 86px);
}
.bx-eyebrow {
  margin: 0 0 14px;
  color: var(--red);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.bx-section-hero h1 {
  margin: 0 0 18px;
  color: var(--brown);
  font-size: clamp(38px, 5vw, 68px);
  font-weight: 500;
  line-height: 1;
}
.bx-section-hero__copy > p:not(.bx-eyebrow) {
  max-width: 520px;
  margin: 0 0 28px;
  color: #5d4c40;
  font-size: 17px;
  line-height: 1.55;
}
.bx-section-hero__media { min-height: 420px; }
.bx-section-hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.bx-section-band { background: #fff; border-bottom: 1px solid var(--line); }
.bx-section-band__inner {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  max-width: 1180px;
  margin: 0 auto;
  padding: 48px 24px;
}
.bx-category-tile {
  min-height: 170px;
  padding: 26px;
  background: #fff;
  border: 1px solid var(--line);
}
.bx-category-tile h2 {
  margin: 0 0 10px;
  color: var(--brown);
  font-size: 21px;
  font-weight: 700;
}
.bx-category-tile p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.5;
}
.bx-section-products { padding-top: 54px; }
.bx-section-title {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 18px;
  margin: 0 0 24px;
}
.bx-section-title h2 {
  margin: 0;
  color: var(--brown);
  font-size: 28px;
  font-weight: 700;
}
.bx-section-title a {
  color: var(--brown);
  font-size: 14px;
  font-weight: 800;
  text-decoration: none;
}
.bx-section-title a:hover { color: var(--red); }

/* Pickup banner */
.bx-pickup {
  display: flex; align-items: center; gap: 10px; flex-wrap: wrap;
  background: var(--cream); border: 1px solid var(--line);
  border-radius: 6px; padding: 14px 18px; margin: 0 0 30px;
  font-size: 14px; color: var(--brown-deep);
}
.bx-pickup strong { color: var(--red); }

/* Product grid */
.bx-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px;
}
.bx-card {
  border: 1px solid var(--line); border-radius: 8px; overflow: hidden;
  display: flex; flex-direction: column; background: #fff;
  transition: box-shadow .15s ease, transform .15s ease;
}
.bx-card:hover { box-shadow: var(--shadow); transform: translateY(-2px); }
.bx-card__imgwrap { background: var(--cream); padding: 22px; aspect-ratio: 1/1; display: flex; align-items: center; justify-content: center; }
.bx-card__imgwrap img { max-height: 100%; width: auto; object-fit: contain; }
.bx-card__body { padding: 16px 18px 20px; display: flex; flex-direction: column; flex: 1; }
.bx-tag { display: inline-block; align-self: flex-start; margin-bottom: 8px; color: var(--red); font-size: 11px; font-weight: 800; letter-spacing: .04em; text-transform: uppercase; }
.bx-card__name { font-size: 15px; font-weight: 700; line-height: 1.35; margin: 0 0 6px; color: var(--brown-deep); }
.bx-card__name a { text-decoration: none; color: inherit; }
.bx-card__name a:hover { color: var(--red); }
.bx-card__price { font-size: 16px; font-weight: 800; margin: 0 0 14px; }
.bx-card__actions { margin-top: auto; display: flex; gap: 8px; }

/* Buttons */
.bx-btn {
  --btn-bg: var(--brown);
  --btn-color: #fff;
  --btn-border: var(--brown);
  --btn-hover-bg: var(--red);
  --btn-hover-color: #fff;
  appearance: none; border: 0; cursor: pointer; text-decoration: none;
  display: inline-flex; align-items: center; justify-content: center;
  isolation: isolate;
  overflow: hidden;
  position: relative;
  background-color: transparent;
  border: 1px solid var(--btn-border);
  color: var(--btn-color); font-family: inherit;
  font-size: 14px; font-weight: 700; padding: 12px 20px; border-radius: 6px;
  transition: color .2s ease, border-color .2s ease;
}
.bx-btn__label {
  position: relative;
  z-index: 1;
  pointer-events: none;
}
.bx-btn::before,
.bx-btn::after {
  content: "";
  position: absolute;
  width: 110%;
  height: 110%;
  left: -5%;
  top: -5%;
  pointer-events: none;
}
.bx-btn::before {
  z-index: -2;
  background: var(--btn-bg);
}
.bx-btn::after {
  z-index: -1;
  background: var(--btn-hover-bg);
  clip-path: path("M179.662 1.38283e-05C197 1.38283e-05 206.5 -0.000104904 210 -0.000104904L0 -0.000183105C4 -0.000174046 24.5 -0.000155926 45.1844 -0.000173807C88 -0.000173807 115.5 -0.00014782 122.643 -0.00014782C135.5 -0.00014782 161.5 1.81198e-05 179.662 1.38283e-05Z");
}
.bx-btn:hover,
.bx-btn.bx-btn__mouseover {
  border-color: var(--btn-hover-bg);
  color: var(--btn-hover-color);
}
.bx-btn.bx-btn-mouseover:hover::after,
.bx-btn.bx-btn__mouseover::after,
.bx-btn:focus-visible::after {
  animation: mouseoveranimation .6s linear forwards;
  background: var(--btn-hover-bg);
}
.bx-btn.bx-btn-mouseout::after,
.bx-btn.bx-btn__mouseout::after {
  animation: mouseoutanimation .6s linear;
}
.bx-btn:active { color: var(--btn-hover-color); }
.bx-btn--ghost {
  --btn-bg: transparent;
  --btn-color: var(--brown);
  --btn-border: var(--brown);
  --btn-hover-bg: var(--brown);
  --btn-hover-color: #fff;
}
.bx-btn--full { width: 100%; }
.bx-btn--lg { padding: 15px 28px; font-size: 15px; }

@keyframes mouseoveranimation {
  0% { clip-path: path("M263 43C313.5 41.5 341 56.5 900 56.5V50H0V43C6.63831 41.7616 18.8709 64.8537 85.5 64.5C152.129 64.1463 212.5 44.5 263 43Z"); }
  20% { clip-path: path("M275 20C325.5 18.5 341 30.5 900 30.5V50H0V35.5511C6.63831 34.3126 15.8709 40.3537 82.5 40C149.129 39.6463 224.5 21.5 275 20Z"); }
  40% { clip-path: path("M277 4.5C327.5 3 341 11.5 900 11.5V50H0V17.5C6.63831 16.2616 19.3709 25.8537 86 25.5C152.629 25.1463 226.5 6 277 4.5Z"); }
  60% { clip-path: path("M275.5 1C326 -0.499997 341 5.5 900 5.5V65.9999H0V5.5C33 1 62.3709 8.8537 129 8.5C195.629 8.1463 225 2.5 275.5 1Z"); }
  80% { clip-path: path("M282 1 C341 0 341 0 900 0 V66 H0 V01 C36 1 64.8709 0 131.5 0 C198.129 0 222 1 281.5 1Z"); }
  to { clip-path: path("M282 1 C341 0 341 0 900 0 V66 H0 V01 C36 1 64.8709 0 131.5 0 C198.129 0 222 1 281.5 1Z"); }
}

@keyframes mouseoutanimation {
  16% { clip-path: path("M282 1 C341 0 341 0 900 0 V66 H0 V01 C36 1 64.8709 0 131.5 0 C198.129 0 222 1 281.5 1Z"); }
  32% { clip-path: path("M275.5 1C326 -0.499997 341 5.5 900 5.5V65.9999H0V5.5C33 1 62.3709 8.8537 129 8.5C195.629 8.1463 225 2.5 275.5 1Z"); }
  48% { clip-path: path("M277 4.5C327.5 3 341 11.5 900 11.5V50H0V17.5C6.63831 16.2616 19.3709 25.8537 86 25.5C152.629 25.1463 226.5 6 277 4.5Z"); }
  64% { clip-path: path("M275 20C325.5 18.5 341 30.5 900 30.5V50H0V35.5511C6.63831 34.3126 15.8709 40.3537 82.5 40C149.129 39.6463 224.5 21.5 275 20Z"); }
  80% { clip-path: path("M262.5 53C313 51.5 341 47.5 900 47.5V50H0V53C6.63831 51.7616 9.87086 47.8537 76.5 47.5C143.129 47.1463 212 54.5 262.5 53Z"); }
  96% { clip-path: path("M262.5 53 C313 51.5 341 47.5 900 47.5 V50 H0 V80 C6.63831 51.7616 9.87086 55 76.5 55 C143.129 55 212 67 262.5 78Z"); }
}

/* Product detail */
.bx-pdp { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; }
.bx-pdp__media { background: var(--cream); border-radius: 8px; padding: 40px; display: flex; align-items: center; justify-content: center; }
.bx-pdp__media img { max-height: 420px; width: auto; object-fit: contain; }
.bx-pdp__info h1 { font-size: 30px; margin: 6px 0 10px; }
.bx-pdp__price { font-size: 24px; font-weight: 800; margin: 0 0 18px; }
.bx-pdp__blurb { font-size: 15px; line-height: 1.6; color: #5a4a3e; margin: 0 0 24px; }
.bx-qty { display: flex; align-items: center; gap: 10px; margin: 0 0 22px; }
.bx-qty label { font-weight: 700; font-size: 14px; }
.bx-qty input { width: 64px; padding: 10px; border: 1px solid var(--line); border-radius: 4px; font: inherit; }

/* Cart */
.bx-cart-row { display: grid; grid-template-columns: 88px 1fr auto auto auto; gap: 16px; align-items: center; padding: 18px 0; border-bottom: 1px solid var(--line); }
.bx-cart-row__img { background: var(--cream); border-radius: 6px; padding: 8px; }
.bx-cart-row__name { font-weight: 700; font-size: 15px; }
.bx-cart-row__price, .bx-cart-row__line { font-weight: 700; }
.bx-cart-row__remove { background: none; border: 0; color: #b0a093; cursor: pointer; font-size: 13px; text-decoration: underline; }
.bx-cart-row__remove:hover { color: var(--red); }
.bx-cart-summary { margin-top: 26px; display: flex; flex-direction: column; align-items: flex-end; gap: 14px; }
.bx-cart-total { font-size: 20px; font-weight: 800; }
.bx-empty { text-align: center; padding: 60px 20px; color: #6a584c; }
.bx-empty p { font-size: 16px; margin: 0 0 20px; }

/* Store page */
.bx-store { display: grid; grid-template-columns: 1.1fr 1fr; gap: 40px; align-items: start; }
.bx-store__card { border: 1px solid var(--line); border-radius: 8px; padding: 26px; background: #fff; }
.bx-store__card h2 { margin: 0 0 14px; font-size: 20px; }
.bx-store__row { display: flex; gap: 10px; margin: 0 0 10px; font-size: 15px; line-height: 1.5; }
.bx-store__row strong { min-width: 86px; color: var(--brown); }
.bx-map { width: 100%; border: 1px solid var(--line); border-radius: 8px; min-height: 360px; background: #fff; }

/* Footer */
.bx-footer { background: var(--cream); border-top: 4px solid var(--red); margin-top: 40px; }
.bx-footer__inner { max-width: 1180px; margin: 0 auto; padding: 40px 24px; display: flex; flex-wrap: wrap; gap: 40px; justify-content: space-between; }
.bx-footer h3 { font-size: 13px; text-transform: uppercase; letter-spacing: .04em; margin: 0 0 14px; color: var(--brown); }
.bx-footer a { display: block; color: var(--brown-deep); text-decoration: none; font-size: 14px; margin: 0 0 8px; }
.bx-footer a:hover { color: var(--red); }
/* Social / review icon row */
.bx-footer__social {
  max-width: 1180px; margin: 0 auto; padding: 4px 24px 26px;
  display: flex; align-items: center; gap: 14px; flex-wrap: wrap;
  border-top: 1px solid var(--line);
}
.bx-footer__social-label {
  font-size: 12px; text-transform: uppercase; letter-spacing: .05em;
  font-weight: 800; color: var(--brown);
}
.bx-footer__social-links { display: flex; gap: 10px; flex-wrap: wrap; }
.bx-footer .bx-social {
  display: inline-flex; align-items: center; justify-content: center;
  width: 40px; height: 40px; margin: 0;
  border: 1px solid var(--line); border-radius: 999px;
  color: var(--brown); background: #fff;
  transition: color .15s ease, border-color .15s ease, transform .15s ease;
}
.bx-footer .bx-social:hover {
  color: #fff; background: var(--red); border-color: var(--red);
  transform: translateY(-2px);
}
.bx-footer__social { padding-top: 24px; }

.bx-footer__legal { text-align: center; font-size: 12px; color: #8a7a6e; padding: 0 24px 30px; }

/* Toast */
.bx-toast {
  position: fixed; right: 24px; bottom: 24px; z-index: 1000;
  background: #fff; color: var(--brown); border-left: 4px solid var(--red);
  box-shadow: 0 20px 45px rgba(61,43,31,.2); padding: 16px 18px;
  max-width: 320px; font-size: 14px; font-weight: 700; border-radius: 4px;
  opacity: 0; transform: translateY(8px); transition: opacity .2s, transform .2s;
}
.bx-toast.is-show { opacity: 1; transform: translateY(0); }

@media (max-width: 1024px) {
  .bx-grid { grid-template-columns: repeat(2, 1fr); }
  .bx-pdp, .bx-store { grid-template-columns: 1fr; gap: 28px; }
  .bx-section-hero { grid-template-columns: 1fr; }
  .bx-section-hero__media { min-height: 320px; order: -1; }
  .bx-section-band__inner { grid-template-columns: 1fr; }
}

/* Mobile chrome: hamburger + centered logo + icon actions (illy.com style) */
@media (max-width: 900px) {
  .bx-header {
    display: grid;
    grid-template-columns: 44px 1fr auto;
    align-items: center;
    gap: 8px;
    padding: 10px 14px;
  }
  .bx-burger { display: inline-flex; margin: 0 0 0 -8px; }
  .bx-header__brand { justify-content: center; gap: 8px; }
  .bx-header__brand img { height: 30px; min-width: 30px; }
  .bx-header__brand span { font-size: 14px; }
  .bx-nav { display: none; }
  .bx-mega { display: none !important; }
  .bx-header__right { gap: 2px; }
  .bx-header__order, .bx-header__right .bx-cartlink { display: none; }
  .bx-iconlink { display: inline-flex; }
  .bx-drawer { display: block; }
  .bx-drawer[hidden] { display: none; }
}

@media (max-width: 560px) {
  .bx-grid { grid-template-columns: 1fr 1fr; gap: 16px; }
  .bx-cart-row { grid-template-columns: 64px 1fr auto; }
  .bx-cart-row__price, .bx-cart-row__line { grid-column: 2 / -1; font-size: 13px; }
  .bx-topbar { font-size: 11px; line-height: 1.35; padding: 11px 12px; overflow-wrap: anywhere; white-space: normal; }
  .bx-header { padding: 10px 12px; }
  .bx-header__brand span { font-size: 13px; }
  .bx-iconlink { width: 40px; }
  .bx-section-hero__copy { padding: 34px 20px 42px; }
  .bx-section-hero h1 { font-size: 38px; }
  .bx-section-hero__media { min-height: 260px; }
}

/* ===== Café content sections (Rewards / Gift Cards / Our Story / Illy World) ===== */
.bx-section-content { padding-top: 8px; }

/* Rewards tiers */
.bx-tiers { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 20px; margin: 8px 0 8px; }
.bx-tier { border: 1px solid var(--line); border-radius: 8px; padding: 26px 24px; background: #fff; display: flex; flex-direction: column; position: relative; }
.bx-tier--hl { border-color: var(--red); box-shadow: 0 16px 34px rgba(209,36,32,.12); }
.bx-tier__badge { align-self: flex-start; font-size: 11px; font-weight: 800; text-transform: uppercase; letter-spacing: 0; color: var(--red); background: var(--cream); border-radius: 4px; padding: 5px 12px; margin-bottom: 14px; }
.bx-tier h3 { font-size: 24px; color: var(--brown-deep); margin: 0 0 4px; }
.bx-tier__price { font-size: 14px; color: #8a7a6e; margin: 0 0 16px; font-weight: 700; }
.bx-tier ul { list-style: none; padding: 0; margin: 0 0 22px; flex: 1; }
.bx-tier li { font-size: 14px; color: #3d2b1f; padding: 8px 0 8px 26px; position: relative; border-bottom: 1px solid var(--line); }
.bx-tier li:before { content: "✓"; position: absolute; left: 2px; color: var(--red); font-weight: 800; }

/* Gift cards */
.bx-giftgrid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 18px; margin: 8px 0 36px; }
.bx-giftcard { border: 1px solid var(--line); border-radius: 8px; padding: 18px; background: #fff; }
.bx-giftcard__face { aspect-ratio: 16/10; border-radius: 6px; background: linear-gradient(135deg, var(--brown) 0%, var(--brown-deep) 100%); color: #fff; display: flex; flex-direction: column; justify-content: space-between; padding: 18px; margin-bottom: 16px; }
.bx-giftcard__face span { font-weight: 800; font-size: 14px; letter-spacing: .02em; }
.bx-giftcard__face strong { font-size: 34px; align-self: flex-end; }
.bx-howrow { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 24px; padding: 28px 0; border-top: 1px solid var(--line); }
.bx-howrow h3 { font-size: 17px; color: var(--brown-deep); margin: 0 0 6px; }
.bx-howrow p { font-size: 14px; color: #6a584c; margin: 0; line-height: 1.5; }

/* Prose (Our Story / Illy World) */
.bx-prose { max-width: 760px; }
.bx-prose h3 { font-size: 22px; color: var(--brown-deep); margin: 26px 0 8px; }
.bx-prose h3:first-child { margin-top: 4px; }
.bx-prose p { font-size: 16px; line-height: 1.7; color: #3d2b1f; margin: 0 0 12px; }

.bx-fineprint { font-size: 12px; color: #8a7a6e; margin: 18px 0 0; max-width: 720px; }
