@font-face {
  font-family: "Bebas Neue";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("../fonts/bebas-neue-latin.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC,
                 U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193,
                 U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: "Bebas Neue";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("../fonts/bebas-neue-latin-ext.woff2") format("woff2");
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304,
                 U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB,
                 U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

/* ==========================================================================
   Chef Poppin — Amazon Brand Store replica
   Layer 1: Amazon chrome (global nav + footer)
   Layer 2: Brand store content modules
   ========================================================================== */

:root {
  /* Amazon chrome */
  --az-nav: #131921;
  --az-nav-2: #232f3e;
  --az-orange: #febd69;
  --az-orange-hover: #f3a847;
  --az-link: #007185;
  --az-link-hover: #c7511f;
  --az-ink: #0f1111;
  --az-ink-soft: #565959;
  --az-border: #d5d9d9;
  --az-yellow: #ffa41c;

  /* Chef Poppin brand */
  --cp-cream: #f7f1e5;
  --cp-cream-deep: #ece0cb;
  --cp-orange: #d9512a;
  --cp-orange-lit: #e8642f;
  --cp-brown: #3b2a1f;
  --cp-matcha: #6d8c3a;
  --cp-boba: #b07b4f;
  --cp-caramel: #d89a3e;

  /* Bebas Neue is an all-caps display face: brand headlines only, never body copy */
  --display: "Bebas Neue", "Haettenschweiler", "Arial Narrow", sans-serif;

  --shell: 1500px;
  --radius: 8px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: #fff;
  color: var(--az-ink);
  font-family: "Amazon Ember", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 14px;
  line-height: 1.45;
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; }
img[hidden] { display: none; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }

.shell {
  max-width: var(--shell);
  margin: 0 auto;
  padding: 0 18px;
}

.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0);
  white-space: nowrap; border: 0;
}

/* ==========================================================================
   Amazon global navigation
   ========================================================================== */

.gnav {
  background: var(--az-nav);
  color: #fff;
  font-size: 13px;
}

.gnav__row {
  display: flex;
  align-items: center;
  gap: 6px;
  max-width: var(--shell);
  margin: 0 auto;
  padding: 6px 12px;
}

.gnav__cell {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 7px 9px;
  border: 1px solid transparent;
  border-radius: 2px;
  white-space: nowrap;
}
.gnav__cell:hover { border-color: #fff; }

.gnav__logo {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.5px;
}
.gnav__logo span { color: var(--az-orange); }

.gnav__sub { display: block; font-size: 11px; color: #ccc; line-height: 1.1; }
.gnav__main { display: block; font-size: 13px; font-weight: 700; line-height: 1.2; }

/* search */
.gsearch {
  flex: 1 1 auto;
  display: flex;
  min-width: 180px;
  height: 40px;
  border-radius: 4px;
  overflow: hidden;
  background: #fff;
}
.gsearch:focus-within { outline: 3px solid var(--az-orange-hover); }

.gsearch__scope {
  border: 0;
  background: #e6e6e6;
  color: #555;
  font-size: 12px;
  padding: 0 8px;
  border-right: 1px solid #cdcdcd;
}
.gsearch__input {
  flex: 1;
  border: 0;
  padding: 0 10px;
  font-size: 15px;
  min-width: 0;
}
.gsearch__input:focus { outline: none; }
.gsearch__go {
  border: 0;
  width: 45px;
  background: var(--az-orange);
  display: grid;
  place-items: center;
}
.gsearch__go:hover { background: var(--az-orange-hover); }

.gnav__cart { display: flex; align-items: flex-end; gap: 2px; }
.gnav__cart-count {
  color: var(--az-orange-hover);
  font-weight: 700;
  font-size: 16px;
  line-height: 1;
  position: relative;
  top: -10px;
  left: 12px;
  margin-left: -14px;
}

.gsubnav {
  background: var(--az-nav-2);
  color: #fff;
  font-size: 14px;
}
.gsubnav__row {
  display: flex;
  align-items: center;
  gap: 4px;
  max-width: var(--shell);
  margin: 0 auto;
  padding: 4px 12px;
  overflow-x: auto;
  scrollbar-width: none;
}
.gsubnav__row::-webkit-scrollbar { display: none; }
.gsubnav__item {
  padding: 6px 9px;
  white-space: nowrap;
  border: 1px solid transparent;
  border-radius: 2px;
}
.gsubnav__item:hover { border-color: #fff; }
.gsubnav__item--strong { font-weight: 700; }

/* ==========================================================================
   Store: brand header banner
   One wide asset that already carries the monogram and wordmark, so the page
   contributes only a screen-reader heading.
   ========================================================================== */

.store { background: #fff; }

.brandbar { background: var(--cp-cream); }
.brandbar__art { aspect-ratio: 2000 / 400; width: 100%; }

/* full-bleed range band */
.rangeband { display: block; }
.rangeband .media { aspect-ratio: 2 / 1; }

/* ==========================================================================
   Store: sticky nav (Follow / tabs / store search)
   ========================================================================== */

.storenav {
  position: sticky;
  top: 0;
  z-index: 40;
  background: #fff;
  border-bottom: 1px solid var(--az-border);
}
.storenav__row {
  max-width: var(--shell);
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 6px 18px;
}

.follow {
  flex: none;
  border: 1px solid #888c8c;
  border-radius: 100px;
  background: #fff;
  color: var(--az-ink);
  font-size: 12px;
  font-weight: 700;
  padding: 5px 16px;
  box-shadow: 0 2px 5px rgba(15, 17, 17, 0.08);
}
.follow:hover { background: #f7fafa; }
.follow[aria-pressed="true"] {
  background: var(--cp-brown);
  border-color: var(--cp-brown);
  color: #fff;
}

.tabs {
  display: flex;
  gap: 4px;
  flex: 1 1 auto;
  overflow-x: auto;
  scrollbar-width: none;
}
.tabs::-webkit-scrollbar { display: none; }
.tabs__link {
  position: relative;
  padding: 12px 12px 8px;
  font-family: var(--display);
  font-size: 17px;
  letter-spacing: 1.1px;
  text-transform: uppercase;
  color: var(--az-ink);
  white-space: nowrap;
}
.tabs__link::after {
  content: "";
  position: absolute;
  left: 12px; right: 12px; bottom: 4px;
  height: 3px;
  border-radius: 2px;
  background: transparent;
}
.tabs__link:hover { color: var(--cp-orange); }
.tabs__link.is-active { font-weight: 700; }
.tabs__link.is-active::after { background: var(--cp-orange); }

.storesearch {
  flex: none;
  display: flex;
  align-items: center;
  gap: 6px;
  width: 230px;
  max-width: 40vw;
  border: 1px solid var(--az-border);
  border-radius: 100px;
  padding: 5px 12px;
  background: #fff;
}
.storesearch:focus-within { border-color: var(--cp-orange); }
.storesearch input {
  border: 0;
  flex: 1;
  min-width: 0;
  font-size: 12px;
  background: transparent;
}
.storesearch input:focus { outline: none; }

/* ==========================================================================
   Store: reusable media placeholder
   ========================================================================== */

.media {
  position: relative;
  margin: 0;
  overflow: hidden;
  background:
    radial-gradient(120% 90% at 25% 15%, var(--ph-a, #e7dbc7) 0%, transparent 60%),
    linear-gradient(140deg, var(--ph-a, #e7dbc7) 0%, var(--ph-b, #cbb79a) 100%);
}
.media > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: var(--ph-focus, center);
}
.media__hint {
  position: absolute;
  inset: auto 0 0 0;
  display: flex;
  justify-content: center;
  padding: 8px;
  font-size: 11px;
  letter-spacing: 0.6px;
  color: rgba(255, 255, 255, 0.85);
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.45);
  pointer-events: none;
}
.media.is-loaded .media__hint { display: none; }
.media.is-loaded { background: none; }

/* ==========================================================================
   Store modules
   ========================================================================== */

/* hero */
.hero { position: relative; }
.hero .media { aspect-ratio: 13 / 8; min-height: 260px; }
.hero__scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(150deg, rgba(0, 0, 0, 0.52) 0%, rgba(0, 0, 0, 0.16) 42%, transparent 66%);
}
.hero__copy {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-start;               /* top-left, off the people */
  padding-top: clamp(24px, 5.5%, 88px);
}
.hero__copy .shell { width: 100%; }
.hero__text {
  max-width: 520px;
  color: #fff;
  font-family: var(--display);
  font-size: clamp(26px, 3.2vw, 44px);
  line-height: 1.08;
  letter-spacing: 0.5px;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.4);
}
.hero__text strong { display: block; margin-top: 6px; font-size: 1.12em; }

/* section heading + cta band */
.band {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 20px;
  padding: 26px 18px;
}
.band__title {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(19px, 2vw, 26px);
  font-weight: 400;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--cp-brown);
}

.btn {
  display: inline-block;
  border: 0;
  border-radius: 3px;
  padding: 12px 26px 10px;
  font-family: var(--display);
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  background: var(--cp-brown);
  color: #fff;
}
.btn:hover { background: #251a12; }
.btn--light { background: #fff; color: var(--cp-brown); }
.btn--light:hover { background: var(--cp-cream); }
.btn--orange { background: var(--cp-orange); }
/* Bebas ships a single weight, so weight comes from a stroke rather than a
   synthesised bold, which smears a condensed all-caps face */
.btn--strong {
  font-size: 18px;
  padding: 13px 30px 11px;
  -webkit-text-stroke: 0.7px currentColor;
  letter-spacing: 2.2px;
}
.btn--orange:hover { background: var(--cp-orange-lit); }

/* two-up flavor tiles — artwork only, 16:9 to match the supplied banners */
.duo {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4px;                              /* full-bleed pair, hairline between */
  padding: 0 0 18px;
  max-width: none;
  margin: 0;
}
.tile {
  display: block;
  overflow: hidden;
}
.tile .media { aspect-ratio: 16 / 9; }

/* full-bleed brand banner.
   The artwork is a 2400x880 plate composed from the portrait pack shot: the
   figure is zoom-cropped to head-and-hands and its orange sweep extended
   sideways, so the banner crops like any landscape photo and shows no join. */
.banner {
  position: relative;
  aspect-ratio: 27 / 16;                 /* 1.69, measured off the reference */
  display: flex;
  align-items: center;
  background: var(--cp-orange);
}
.banner .media { position: absolute; inset: 0; }
.banner .media > img { object-position: center; }
.banner__copy {
  position: relative;
  width: 100%;
  max-width: var(--shell);
  margin: 0 auto;
  padding: 40px 18px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 26px;
}
.banner__title {
  margin: 0;
  position: relative;
  z-index: 1;
  color: #fff;
  font-family: var(--display);
  font-size: clamp(40px, 5.6vw, 84px);
  font-weight: 400;
  line-height: 0.88;
  letter-spacing: 1px;
  max-width: 7ch;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.22);
}

/* moment grid */
.moments {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  max-width: var(--shell);
  margin: 0 auto;
  padding: 18px 18px 28px;
}
.moment {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
}
.moment .media { aspect-ratio: 13 / 12; min-height: 190px; }
.moment__label {
  position: absolute;
  /* ::after generates after this element in the box tree, so without a z-index
     the scrim paints over the caption and mutes it to grey */
  z-index: 1;
  left: 26px;
  bottom: 18px;
  margin: 0;
  color: #fff;
  font-family: var(--display);
  font-size: clamp(28px, 3vw, 44px);
  font-weight: 400;
  line-height: 0.98;
  letter-spacing: 0.8px;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}
.moment::after {
  content: "";
  position: absolute;
  inset: 28% 0 0 0;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.24) 52%, rgba(0, 0, 0, 0.66));
  pointer-events: none;
}

/* ==========================================================================
   Product grid (ASIN cards)
   ========================================================================== */

.shop { max-width: var(--shell); margin: 0 auto; padding: 26px 18px 40px; }

.shop__head {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: space-between;
  gap: 10px;
  border-bottom: 1px solid var(--az-border);
  padding-bottom: 10px;
  margin-bottom: 18px;
}
.shop__title { margin: 0; font-family: var(--display); font-size: 30px; font-weight: 400; letter-spacing: 0.8px; }
.shop__note { margin: 0; color: var(--az-ink-soft); font-size: 12px; }

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(215px, 1fr));
  gap: 18px;
}

.card {
  display: flex;
  flex-direction: column;
  border: 1px solid transparent;
  border-radius: var(--radius);
  padding: 10px;
}
.card:hover { border-color: var(--az-border); box-shadow: 0 2px 8px rgba(15, 17, 17, 0.1); }

.card__art {
  position: relative;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  background: #fff;                      /* packshots are cut out on white */
  margin-bottom: 10px;
}
.card__art .bag { width: 74%; height: 74%; }
.card__art img {
  width: 100%;
  height: 100%;
  object-fit: contain;                   /* never crop packaging */
}
.card__art.has-photo .bag { display: none; }

.card__badge {
  align-self: flex-start;
  background: var(--cp-orange);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  padding: 2px 7px;
  border-radius: 3px;
  margin-bottom: 5px;
}
.card__title {
  margin: 0 0 4px;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.3;
  color: var(--az-ink);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.card:hover .card__title { color: var(--az-link-hover); }

.rating {
  display: flex;
  align-items: center;
  gap: 5px;
  margin-bottom: 4px;
  font-size: 12px;
}
.stars {
  --pct: 90%;
  font-size: 13px;
  letter-spacing: 1px;
  background: linear-gradient(90deg, var(--az-yellow) var(--pct), #e3e6e6 var(--pct));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.rating__count { color: var(--az-link); }

.price { margin-bottom: 4px; }
.price__now { font-size: 20px; font-weight: 500; }
.price__now sup { font-size: 11px; top: -0.6em; }
.price__was { color: var(--az-ink-soft); font-size: 12px; margin-left: 6px; }
.price__was s { text-decoration: line-through; }

.card__ship { font-size: 12px; color: var(--az-ink-soft); margin-bottom: 10px; }
.card__ship b { color: var(--az-ink); }

.card__cta {
  margin-top: auto;
  border: 1px solid #fcd200;
  border-radius: 100px;
  background: linear-gradient(#f7dfa5, #f0c14b);
  color: var(--az-ink);
  font-size: 13px;
  padding: 7px 12px;
  width: 100%;
}
.card__cta:hover { background: linear-gradient(#f5d78e, #eeb933); }

/* ==========================================================================
   Story
   ========================================================================== */

.story {
  background: var(--cp-cream);
  padding: 44px 18px;
}
.story__inner {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 34px;
  align-items: center;
}
.story .media { aspect-ratio: 4 / 3; border-radius: var(--radius); }
.story__title {
  margin: 0 0 12px;
  font-family: var(--display);
  font-size: clamp(34px, 4vw, 52px);
  letter-spacing: 1px;
  color: var(--cp-brown);
}
.story p { color: #4a3a2e; font-size: 15px; line-height: 1.65; }

/* ==========================================================================
   Amazon footer
   ========================================================================== */

.totop {
  background: var(--az-nav-2);
  color: #fff;
  text-align: center;
  padding: 15px;
  font-size: 13px;
  display: block;
}
.totop:hover { background: #37475a; }

.foot { background: var(--az-nav-2); color: #ddd; }
.foot__cols {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  padding: 40px 18px;
  border-bottom: 1px solid #3a4553;
}
.foot h3 { color: #fff; font-size: 14px; margin: 0 0 8px; }
.foot ul { list-style: none; margin: 0; padding: 0; }
.foot li { margin-bottom: 6px; font-size: 13px; color: #ddd; }
.foot a:hover { text-decoration: underline; }
.foot__base {
  background: var(--az-nav);
  text-align: center;
  padding: 26px 18px 34px;
  font-size: 11px;
  color: #ddd;
}
.foot__base .gnav__logo { display: inline-block; margin-bottom: 10px; }
.foot__legal { max-width: 700px; margin: 0 auto; line-height: 1.6; }

/* toast */
.toast {
  position: fixed;
  left: 50%;
  bottom: 26px;
  transform: translate(-50%, 20px);
  background: var(--cp-brown);
  color: #fff;
  padding: 11px 20px;
  border-radius: 100px;
  font-size: 13px;
  box-shadow: 0 6px 22px rgba(0, 0, 0, 0.25);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s, transform 0.2s;
  z-index: 90;
}
.toast.is-on { opacity: 1; transform: translate(-50%, 0); }

/* ==========================================================================
   Responsive
   ========================================================================== */

@media (max-width: 900px) {
  .story__inner { grid-template-columns: 1fr; }
  .foot__cols { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 720px) {
  .gnav__row .gnav__cell--hide-sm { display: none; }
  .gsearch { order: 3; flex-basis: 100%; }
  .gnav__row { flex-wrap: wrap; }
  .duo { grid-template-columns: 1fr; }
  .moments { grid-template-columns: 1fr; }
  .storenav__row { flex-wrap: wrap; gap: 8px; }
  .storesearch { max-width: 100%; width: 100%; order: 3; }
  .banner__copy { flex-direction: column; z-index: 1; }
  /* on phones a fixed height reads better than the wide reference ratio, and
     aspect-ratio must give way or it would drive the width past the viewport */
  .banner { aspect-ratio: auto; min-height: 420px; }
  /* the plate keeps its clear orange at the far left, and on a 390px window
     that strip is all the room the copy gets — so anchor hard left */
  .banner .media > img { object-position: 0% center; }
  .banner::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(132,38,16, 0.72) 0%, rgba(132,38,16, 0.3) 52%, transparent 78%);
  }
  .hero .media { aspect-ratio: 4 / 3; }
}

@media (max-width: 620px) {
  .grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .card { padding: 6px; }
  .card__title { font-size: 13px; }
  .price__now { font-size: 17px; }
  .card__cta { font-size: 12px; }
}
