:root {
  --ldc-ink: #17120f;
  --ldc-muted: #6e5a4b;
  --ldc-cream: #fff8ee;
  --ldc-card: #fffaf2;
  --ldc-pink: #e91468;
  --ldc-pink-dark: #b90f51;
  --ldc-yellow: #ffc94a;
  --ldc-line: #f0dcc9;
  --ldc-shadow: 0 18px 45px rgba(89, 44, 19, 0.1);
  --ldc-radius: 8px;
}

* {
  box-sizing: border-box;
}

body.ldc-site {
  margin: 0;
  color: var(--ldc-ink);
  background: var(--ldc-cream);
  font-family: "Nunito", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.45;
  overflow-x: hidden;
}

body.ldc-site a {
  color: inherit;
}

.ldc-main {
  min-height: 72vh;
  overflow-x: hidden;
}

.ldc-elementor-page {
  width: 100%;
  min-height: 72vh;
  overflow-x: hidden;
}

.ldc-elementor-canvas {
  background: var(--ldc-cream);
}

.ldc-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  gap: 28px;
  padding: 22px clamp(20px, 5vw, 64px);
  background: rgba(255, 248, 238, 0.92);
  border-bottom: 1px solid rgba(240, 220, 201, 0.75);
  backdrop-filter: blur(14px);
}

.ldc-logo {
  display: inline-grid;
  grid-template-columns: auto auto;
  align-items: end;
  min-width: 190px;
  text-decoration: none;
  transform: rotate(-1deg);
}

.ldc-logo__main,
.ldc-logo__sub,
.ldc-section-title,
.ldc-hero h1,
.ldc-page h1,
.ldc-entry h1,
.ldc-band h2,
.ldc-steps h2,
.ldc-packs h2,
.ldc-reviews h2 {
  font-family: "Barlow Condensed", Impact, sans-serif;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.ldc-logo__main {
  grid-column: 1;
  font-size: 43px;
  line-height: 0.78;
  text-transform: none;
}

.ldc-logo__dot {
  display: inline-grid;
  place-items: center;
  width: 34px;
  height: 34px;
  margin-left: -2px;
  color: #fff;
  background: var(--ldc-pink);
  border-radius: 50%;
  font-size: 14px;
  font-weight: 900;
}

.ldc-logo__sub {
  grid-column: 1 / -1;
  color: var(--ldc-pink);
  font-size: 29px;
  line-height: 1;
}

.ldc-nav {
  flex: 1;
}

.ldc-nav__list {
  display: flex;
  justify-content: center;
  gap: clamp(16px, 3vw, 38px);
  margin: 0;
  padding: 0;
  list-style: none;
}

.ldc-nav__list a {
  position: relative;
  text-decoration: none;
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.ldc-nav__list a:hover,
.ldc-nav__list .current-menu-item a {
  color: var(--ldc-pink);
}

.ldc-nav__list a:hover::after,
.ldc-nav__list .current-menu-item a::after {
  position: absolute;
  right: 0;
  bottom: -8px;
  left: 0;
  height: 3px;
  background: var(--ldc-pink);
  border-radius: 999px;
  content: "";
  transform: rotate(-2deg);
}

.ldc-button,
.button,
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 48px;
  padding: 0 28px;
  color: #fff;
  background: var(--ldc-pink);
  border: 2px solid var(--ldc-pink);
  border-radius: 999px;
  box-shadow: 0 8px 0 rgba(233, 20, 104, 0.12);
  font-family: "Barlow Condensed", Impact, sans-serif;
  font-size: 18px;
  font-weight: 900;
  line-height: 1;
  text-decoration: none;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

.ldc-button:hover,
.button:hover,
.woocommerce a.button:hover,
.woocommerce button.button:hover,
.woocommerce input.button:hover {
  color: #fff;
  background: var(--ldc-pink-dark);
  transform: translateY(-1px);
}

.ldc-button--outline {
  color: var(--ldc-pink);
  background: transparent;
  box-shadow: none;
}

.ldc-button--outline:hover {
  color: #fff;
}

.ldc-button--light {
  color: var(--ldc-pink);
  background: #fff;
  border-color: #fff;
  box-shadow: none;
}

.ldc-menu-toggle {
  display: none;
}

.ldc-hero {
  display: grid;
  grid-template-columns: minmax(300px, 0.9fr) minmax(360px, 1.1fr);
  align-items: center;
  gap: clamp(28px, 5vw, 70px);
  padding: clamp(38px, 7vw, 88px) clamp(20px, 5vw, 64px) 30px;
  overflow: hidden;
}

.ldc-hero h1 {
  max-width: 620px;
  margin: 8px 0 22px;
  font-size: clamp(54px, 8vw, 104px);
  line-height: 0.9;
}

.ldc-hero h1::first-line {
  color: var(--ldc-ink);
}

.ldc-hero p {
  max-width: 440px;
  margin: 0 0 24px;
  font-size: 21px;
  font-weight: 800;
}

.ldc-kicker,
.ldc-note {
  color: var(--ldc-muted);
  font-size: 15px !important;
  font-weight: 900 !important;
  text-transform: uppercase;
}

.ldc-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 26px 0;
}

.ldc-hero__media {
  min-height: 470px;
  border-radius: 8px;
  transform: rotate(1deg);
}

.ldc-hero__media img {
  width: 100%;
  height: 100%;
  max-height: 620px;
  object-fit: cover;
  object-position: 72% 20%;
  border-radius: 8px;
  box-shadow: var(--ldc-shadow);
}

.ldc-band,
.ldc-steps,
.ldc-packs,
.ldc-reviews,
.ldc-page {
  padding: clamp(34px, 5vw, 68px) clamp(20px, 5vw, 64px);
}

.ldc-band {
  background: #fffdf8;
  border-top: 1px solid var(--ldc-line);
  border-bottom: 1px solid var(--ldc-line);
}

.ldc-band h2,
.ldc-steps h2,
.ldc-packs h2,
.ldc-reviews h2 {
  margin: 0 0 24px;
  text-align: center;
  font-size: clamp(42px, 5vw, 66px);
  line-height: 0.95;
}

.ldc-flavour-grid,
.ldc-pack-grid,
.ldc-step-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 14px;
}

.ldc-flavour-card,
.ldc-pack-card,
.ldc-step,
.ldc-entry {
  background: var(--ldc-card);
  border: 1px solid var(--ldc-line);
  border-radius: var(--ldc-radius);
  box-shadow: var(--ldc-shadow);
}

.ldc-flavour-card {
  position: relative;
  display: grid;
  align-content: start;
  min-height: 205px;
  padding: 22px 14px 16px;
  color: inherit;
  text-align: center;
  text-decoration: none;
  overflow: hidden;
}

.ldc-flavour-card__mini {
  display: block;
  width: 34px;
  height: 30px;
  margin: 0 auto 4px;
  background: center / contain no-repeat;
}

.ldc-flavour-card__mini--bacon {
  background-image:
    linear-gradient(25deg, transparent 0 28%, #a93421 29% 42%, #f0ac42 43% 54%, #a93421 55% 68%, transparent 69%),
    linear-gradient(-22deg, transparent 0 33%, #d55d31 34% 62%, transparent 63%);
}

.ldc-flavour-card__mini--bull::before,
.ldc-flavour-card__mini--pig::before,
.ldc-flavour-card__mini--cookie::before {
  content: "";
  display: block;
  width: 28px;
  height: 25px;
  margin: 2px auto 0;
  border-radius: 50%;
}

.ldc-flavour-card__mini--bull::before {
  background:
    radial-gradient(circle at 35% 38%, #1c110c 0 2px, transparent 3px),
    radial-gradient(circle at 65% 38%, #1c110c 0 2px, transparent 3px),
    linear-gradient(60deg, transparent 0 20%, #1c110c 21% 28%, transparent 29%),
    linear-gradient(-60deg, transparent 0 20%, #1c110c 21% 28%, transparent 29%),
    #7b4524;
}

.ldc-flavour-card__mini--goat::before {
  content: "";
  display: block;
  width: 30px;
  height: 24px;
  margin: 2px auto 0;
  background:
    radial-gradient(circle at 33% 42%, #1c110c 0 2px, transparent 3px),
    radial-gradient(circle at 65% 42%, #1c110c 0 2px, transparent 3px),
    #fff7e8;
  border: 2px solid #1c110c;
  border-radius: 52% 45% 50% 46%;
}

.ldc-flavour-card__mini--pig::before {
  background:
    radial-gradient(circle at 38% 42%, #1c110c 0 2px, transparent 3px),
    radial-gradient(circle at 62% 42%, #1c110c 0 2px, transparent 3px),
    radial-gradient(ellipse at 50% 62%, #f9b7c1 0 7px, transparent 8px),
    #f7a6b4;
}

.ldc-flavour-card__mini--chili::before {
  content: "";
  display: block;
  width: 30px;
  height: 18px;
  margin: 6px auto 0;
  background: #e33c25;
  border-radius: 90% 20% 85% 20%;
  transform: rotate(-24deg);
  box-shadow: 10px -7px 0 -6px #2f9a35;
}

.ldc-flavour-card__mini--cookie::before {
  background:
    radial-gradient(circle at 38% 36%, #3d2417 0 2px, transparent 3px),
    radial-gradient(circle at 62% 58%, #3d2417 0 2px, transparent 3px),
    #d99a4a;
}

.ldc-flavour-card img {
  display: block;
  width: min(200px, 116%);
  height: 126px;
  margin: 8px auto 0;
  object-fit: contain;
  filter: drop-shadow(0 12px 12px rgba(90, 45, 18, 0.15));
}

.ldc-flavour-card--mockup {
  align-content: start;
  min-height: auto;
  padding: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
}

.ldc-flavour-card--mockup img {
  width: 100%;
  height: clamp(190px, 14.5vw, 235px);
  margin: 0;
  object-fit: cover;
  object-position: center;
  filter: none;
  border-radius: 8px;
}

.ldc-flavour-card__title {
  display: block;
  margin-top: 10px;
  padding-inline: 6px;
  font-family: "Barlow Condensed", Impact, sans-serif;
  font-size: clamp(20px, 1.55vw, 25px);
  font-weight: 900;
  line-height: 0.96;
  text-align: center;
  text-transform: uppercase;
}

.ldc-flavour-card h3,
.ldc-step h3 {
  margin: 0 0 7px;
  font-family: "Barlow Condensed", Impact, sans-serif;
  font-size: 25px;
  font-weight: 900;
  line-height: 0.98;
  text-transform: uppercase;
}

.ldc-flavour-card p,
.ldc-step p {
  margin: 0;
  color: var(--ldc-muted);
  font-size: 13px;
  font-weight: 800;
}

.ldc-steps {
  position: relative;
  overflow: hidden;
  margin: 0 clamp(12px, 3vw, 42px);
  padding-top: clamp(30px, 4vw, 44px);
  padding-bottom: clamp(28px, 4vw, 42px);
  background: #ffdce7;
  border-top: 1px solid #f8c8d8;
  border-bottom: 1px solid #f8c8d8;
  border-radius: 46px;
}

.ldc-steps h2 {
  position: relative;
  width: max-content;
  max-width: 100%;
  margin-inline: auto;
}

.ldc-steps h2::after {
  content: "";
  position: absolute;
  left: 22%;
  right: 22%;
  bottom: -8px;
  height: 5px;
  background: var(--ldc-pink);
  border-radius: 99px;
  transform: rotate(-2deg);
}

.ldc-step-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  max-width: 1320px;
  margin: 0 auto;
  gap: 0;
}

.ldc-step {
  position: relative;
  display: grid;
  justify-items: center;
  align-content: start;
  min-height: 178px;
  padding: 14px 26px 10px;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  text-align: center;
}

.ldc-step--mockup {
  min-height: auto;
  padding: 0;
}

.ldc-step--mockup img {
  display: block;
  width: min(100%, 238px);
  height: auto;
  margin: 0 auto;
}

.ldc-step__number {
  position: absolute;
  top: 18px;
  left: clamp(18px, 2vw, 34px);
  display: inline-grid;
  place-items: center;
  width: 36px;
  height: 36px;
  color: #fff;
  background: var(--ldc-pink);
  border-radius: 50%;
  font-family: "Nunito", Arial, sans-serif;
  font-weight: 900;
  line-height: 1;
  z-index: 2;
}

.ldc-step__icon {
  position: relative;
  display: block;
  width: 94px;
  height: 82px;
  margin: 0 auto 12px;
}

.ldc-step__icon--box::before {
  content: "";
  position: absolute;
  left: 20px;
  bottom: 8px;
  width: 54px;
  height: 40px;
  background: #f2c188;
  border: 3px solid #191615;
  border-radius: 4px;
  box-shadow: inset 0 10px #f6d19d;
}

.ldc-step__icon--box::after {
  content: "";
  position: absolute;
  left: 14px;
  top: 8px;
  width: 66px;
  height: 34px;
  background:
    linear-gradient(34deg, transparent 47%, #191615 48% 52%, transparent 53%),
    linear-gradient(-34deg, transparent 47%, #191615 48% 52%, transparent 53%),
    #f7d7aa;
  border: 3px solid #191615;
  border-bottom: 0;
  transform: perspective(70px) rotateX(18deg);
}

.ldc-step__icon--calendar::before {
  content: "";
  position: absolute;
  left: 22px;
  top: 12px;
  width: 50px;
  height: 54px;
  background:
    radial-gradient(circle at 50% 58%, var(--ldc-pink) 0 9px, transparent 10px),
    linear-gradient(#fff4f7 0 19px, #fff 20px);
  border: 3px solid #191615;
  border-radius: 6px;
}

.ldc-step__icon--calendar::after {
  content: "";
  position: absolute;
  left: 32px;
  top: 5px;
  width: 30px;
  height: 16px;
  border-left: 4px solid #191615;
  border-right: 4px solid #191615;
}

.ldc-step__icon--bag::before {
  content: "";
  position: absolute;
  left: 27px;
  top: 22px;
  width: 42px;
  height: 48px;
  background: #d8aa67;
  border: 3px solid #191615;
  border-radius: 4px 4px 9px 9px;
}

.ldc-step__icon--bag::after {
  content: "";
  position: absolute;
  left: 38px;
  top: 8px;
  width: 20px;
  height: 24px;
  border: 3px solid #191615;
  border-bottom: 0;
  border-radius: 18px 18px 0 0;
}

.ldc-step__icon--croqueta::before {
  content: "";
  position: absolute;
  left: 18px;
  top: 12px;
  width: 58px;
  height: 58px;
  background:
    radial-gradient(circle at 35% 33%, #191615 0 3px, transparent 4px),
    radial-gradient(circle at 62% 32%, #191615 0 3px, transparent 4px),
    radial-gradient(circle at 50% 56%, #191615 0 3px, transparent 4px),
    radial-gradient(circle at 24% 18%, #d36318 0 8px, transparent 9px),
    radial-gradient(circle at 74% 78%, #f5a33a 0 8px, transparent 9px),
    #ef851d;
  border: 4px solid #bd5c15;
  border-radius: 50%;
  box-shadow: 0 8px 0 rgba(165, 77, 20, 0.18);
}

.ldc-step__icon--croqueta::after {
  content: "";
  position: absolute;
  right: 8px;
  top: 10px;
  width: 16px;
  height: 24px;
  border-right: 4px solid #191615;
  border-bottom: 4px solid #191615;
  transform: rotate(28deg);
}

.ldc-packs {
  background: #ffe5a8;
}

.ldc-pack-grid {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.ldc-pack-card {
  position: relative;
  display: grid;
  align-content: start;
  gap: 10px;
  min-height: 205px;
  padding: 24px 18px;
  text-align: center;
  text-decoration: none;
  overflow: hidden;
}

.ldc-pack-card > img {
  display: block;
  width: 100%;
  height: auto;
  margin: 0;
  border-radius: 8px;
}

.ldc-pack-card--mockup {
  min-height: auto;
  padding: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
}

.ldc-pack-card strong {
  font-family: "Barlow Condensed", Impact, sans-serif;
  font-size: 25px;
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
}

.ldc-pack-card span {
  color: var(--ldc-pink);
  font-size: 20px;
  font-weight: 900;
}

.ldc-pack-card__ribbon {
  position: absolute;
  top: 16px;
  right: 14px;
  display: grid;
  place-items: center;
  width: 56px;
  height: 56px;
  color: #fff !important;
  background: var(--ldc-pink);
  border-radius: 50%;
  font-family: "Barlow Condensed", Impact, sans-serif;
  font-size: 13px !important;
  line-height: 0.9;
  text-transform: uppercase;
  transform: rotate(10deg);
}

.ldc-pack-card__tray {
  display: flex;
  flex-wrap: wrap;
  align-content: center;
  justify-content: center;
  gap: 0;
  width: min(190px, 100%);
  min-height: 92px;
  margin: 0 auto 4px;
  padding: 18px 12px 10px;
  background:
    linear-gradient(155deg, transparent 0 9%, #f7dfbb 10% 20%, transparent 21%),
    linear-gradient(205deg, transparent 0 9%, #f7dfbb 10% 20%, transparent 21%),
    #c79047;
  border: 3px solid #9d642c;
  border-radius: 7px 7px 12px 12px;
  box-shadow: inset 0 9px #e7bb7a, 0 12px 18px rgba(118, 71, 30, 0.12);
}

.ldc-pack-card__tray img {
  width: 44px;
  height: 38px;
  margin: -2px -5px;
  object-fit: contain;
  filter: drop-shadow(0 5px 5px rgba(82, 39, 12, 0.16));
}

.ldc-reviews {
  background: #ffd4df;
  text-align: center;
}

.ldc-reviews blockquote {
  max-width: 620px;
  margin: 0 auto;
  padding: 28px;
  background: var(--ldc-card);
  border-radius: var(--ldc-radius);
  box-shadow: var(--ldc-shadow);
}

.ldc-reviews p {
  margin: 0 0 12px;
  font-size: 20px;
  font-weight: 900;
}

.ldc-page {
  max-width: 1180px;
  margin: 0 auto;
}

.ldc-page:has(.lbb-shell) {
  max-width: 1520px;
  padding-top: 34px;
}

.ldc-entry {
  padding: clamp(24px, 4vw, 46px);
}

.ldc-entry--bare {
  padding: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
}

.ldc-entry--bare .ldc-content > * {
  margin-block-start: 0;
}

.ldc-entry h1 {
  margin: 0 0 20px;
  font-size: clamp(44px, 6vw, 76px);
}

.ldc-sticky-order {
  position: sticky;
  bottom: 0;
  z-index: 45;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  padding: 16px 22px;
  color: #fff;
  background: var(--ldc-pink);
}

.ldc-sticky-order strong {
  font-family: "Barlow Condensed", Impact, sans-serif;
  font-size: clamp(24px, 4vw, 38px);
  text-transform: uppercase;
}

.ldc-sticky-order .ldc-button {
  min-width: 220px;
  color: var(--ldc-pink);
}

.ldc-footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 14px clamp(20px, 5vw, 64px);
  color: #fff;
  background: #080808;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

body:has(.lbb-shell) .ldc-sticky-order {
  position: static;
}

.woocommerce div.product {
  padding: clamp(28px, 5vw, 62px);
}

.woocommerce ul.products li.product,
.woocommerce-page ul.products li.product {
  padding: 16px;
  background: var(--ldc-card);
  border: 1px solid var(--ldc-line);
  border-radius: var(--ldc-radius);
  box-shadow: var(--ldc-shadow);
}

.ldc-product-story {
  max-width: 1440px;
  margin: 0 auto;
  padding: clamp(22px, 4vw, 54px) clamp(16px, 4vw, 54px) 80px;
}

.ldc-product-story__crumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 22px;
  color: var(--ldc-muted);
  font-size: 14px;
  font-weight: 900;
}

.ldc-product-story__crumbs a {
  color: var(--ldc-pink);
  text-decoration: none;
}

.ldc-product-hero {
  display: grid;
  grid-template-columns: minmax(320px, 1.05fr) minmax(320px, 0.95fr);
  gap: clamp(30px, 5vw, 72px);
  align-items: center;
  margin-bottom: 42px;
}

.ldc-product-hero__image {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 470px;
  overflow: hidden;
  background: #fff6ea;
  border-radius: 42px;
}

.ldc-product-hero__image img {
  width: min(680px, 115%);
  height: min(520px, 70vw);
  object-fit: contain;
  filter: drop-shadow(0 24px 26px rgba(90, 45, 18, 0.18));
}

.ldc-product-stamp {
  position: absolute;
  top: 28px;
  left: 28px;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 150px;
  min-height: 70px;
  padding: 8px 16px;
  color: #fff;
  background: #87552e;
  border-radius: 38% 52% 46% 42%;
  font-family: "Barlow Condensed", Impact, sans-serif;
  font-size: 26px;
  font-weight: 900;
  line-height: 0.9;
  text-align: center;
  text-transform: uppercase;
  transform: rotate(-7deg);
}

.ldc-product-hero__copy h1 {
  margin: 12px 0 18px;
  font-family: "Barlow Condensed", Impact, sans-serif;
  font-size: clamp(64px, 8vw, 116px);
  font-weight: 900;
  line-height: 0.9;
  text-transform: uppercase;
}

.ldc-product-hero__copy p {
  max-width: 620px;
  font-size: 19px;
  font-weight: 800;
}

.ldc-product-lead {
  font-size: 22px !important;
  font-weight: 900 !important;
}

.ldc-product-icon {
  display: block;
  width: 70px;
  height: 58px;
  margin: 0 0 4px;
}

.ldc-product-icon-img {
  display: block;
  width: 82px;
  height: auto;
  margin: 0 0 8px;
}

.ldc-product-icon--bull {
  background:
    radial-gradient(circle at 35% 42%, #120c08 0 4px, transparent 5px),
    radial-gradient(circle at 64% 42%, #120c08 0 4px, transparent 5px),
    radial-gradient(ellipse at 50% 62%, #45230e 0 7px, transparent 8px),
    linear-gradient(60deg, transparent 0 24%, #120c08 25% 32%, transparent 33%),
    linear-gradient(-60deg, transparent 0 24%, #120c08 25% 32%, transparent 33%),
    #7b4524;
  border-radius: 50% 50% 44% 44%;
}

.ldc-product-features {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin-top: 36px;
}

.ldc-product-features span {
  display: grid;
  justify-items: center;
  gap: 8px;
  padding: 0 6px;
  border-left: 1px solid var(--ldc-line);
  text-align: center;
}

.ldc-product-features img {
  display: block;
  width: 62px;
  height: auto;
  margin: 0 auto;
}

.ldc-product-features strong {
  font-family: "Barlow Condensed", Impact, sans-serif;
  font-size: 20px;
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
}

.ldc-product-grid {
  display: grid;
  grid-template-columns: 1fr 1fr minmax(340px, 0.9fr);
  gap: 24px;
  margin-bottom: 30px;
}

.ldc-product-panel,
.ldc-report,
.ldc-product-review {
  padding: 28px;
  background: rgba(255, 250, 242, 0.88);
  border: 1px solid var(--ldc-line);
  border-radius: 8px;
  box-shadow: var(--ldc-shadow);
}

.ldc-product-panel h2,
.ldc-report h2,
.ldc-product-review h2 {
  margin: 0 0 18px;
  color: var(--ldc-pink);
  font-family: "Barlow Condensed", Impact, sans-serif;
  font-size: 34px;
  font-weight: 900;
  line-height: 0.95;
  text-transform: uppercase;
}

.ldc-product-panel ul {
  display: grid;
  gap: 16px;
  margin: 0;
  padding: 0;
  list-style: none;
  font-weight: 900;
}

.ldc-product-packs {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-bottom: 18px;
}

.ldc-product-packs a {
  display: grid;
  place-items: center;
  min-height: 84px;
  padding: 12px;
  background: #fffaf2;
  border: 1px solid var(--ldc-line);
  border-radius: 8px;
  text-align: center;
  text-decoration: none;
}

.ldc-product-packs a.is-favorite {
  border-color: var(--ldc-pink);
  box-shadow: 0 0 0 2px rgba(233, 20, 104, 0.14);
}

.ldc-product-packs strong {
  font-family: "Barlow Condensed", Impact, sans-serif;
  font-size: 22px;
  line-height: 1;
  text-transform: uppercase;
}

.ldc-product-packs span {
  color: var(--ldc-pink);
  font-weight: 900;
}

.ldc-product-extra {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 24px;
  margin-bottom: 42px;
}

.ldc-report {
  background: #f6ead5;
}

.ldc-report p {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 16px;
  margin: 0;
  padding: 8px 0;
  border-bottom: 1px solid rgba(115, 76, 48, 0.2);
  font-weight: 900;
}

.ldc-report strong {
  color: var(--ldc-pink);
  text-transform: uppercase;
}

.ldc-stars {
  margin: 0 0 12px;
  color: #ffc13f;
  font-size: 26px;
  letter-spacing: 2px;
}

.ldc-product-review blockquote {
  margin: 0 0 14px;
  font-size: 18px;
  font-weight: 900;
}

.ldc-product-review cite {
  font-weight: 900;
}

@media (max-width: 980px) {
  .ldc-header {
    flex-wrap: wrap;
    gap: 14px;
  }

  .ldc-menu-toggle {
    display: inline-grid;
    gap: 5px;
    width: 46px;
    height: 46px;
    margin-left: auto;
    padding: 12px;
    background: #fff;
    border: 1px solid var(--ldc-line);
    border-radius: 50%;
  }

  .ldc-menu-toggle span {
    height: 3px;
    background: var(--ldc-ink);
    border-radius: 999px;
  }

  .ldc-nav {
    display: none;
    flex-basis: 100%;
  }

  .ldc-nav.is-open {
    display: block;
  }

  .ldc-nav__list {
    display: grid;
    justify-content: stretch;
    gap: 8px;
    padding: 12px 0;
  }

  .ldc-hero {
    grid-template-columns: 1fr;
  }

  .ldc-flavour-grid,
  .ldc-pack-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .ldc-step-grid {
    grid-template-columns: 1fr 1fr;
  }

  .ldc-product-hero,
  .ldc-product-grid,
  .ldc-product-extra {
    grid-template-columns: 1fr;
  }

  .ldc-product-features {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 620px) {
  .ldc-page:has(.lbb-shell) {
    max-width: none;
    padding: 0;
  }

  .ldc-header {
    padding: 16px;
  }

  .ldc-button--cart {
    width: 100%;
  }

  .ldc-hero {
    padding: 26px 16px;
  }

  .ldc-hero > * {
    min-width: 0;
  }

  .ldc-hero h1 {
    width: min(9.5ch, 100%);
    font-size: 50px;
    overflow-wrap: normal;
  }

  .ldc-hero p {
    max-width: min(31ch, 100%);
  }

  .ldc-hero__media {
    min-height: 300px;
    transform: none;
    overflow: hidden;
  }

  .ldc-band h2,
  .ldc-steps h2,
  .ldc-packs h2,
  .ldc-reviews h2 {
    width: min(11ch, 100%);
    margin-inline: auto;
    font-size: 42px;
    overflow-wrap: normal;
  }

  .ldc-band,
  .ldc-packs,
  .ldc-reviews {
    padding-inline: 16px;
  }

  .ldc-flavour-grid,
  .ldc-pack-grid,
  .ldc-step-grid {
    grid-template-columns: 1fr;
  }

  .ldc-flavour-card {
    overflow: hidden;
  }

  .ldc-flavour-card h3 {
    max-width: 100%;
    font-size: 24px;
  }

  .ldc-steps {
    margin-inline: 10px;
    border-radius: 30px;
  }

  .ldc-step {
    min-height: 0;
    padding: 18px 24px 22px;
  }

  .ldc-step h3 {
    width: min(16ch, 100%);
    font-size: 23px;
    overflow-wrap: break-word;
  }

  .ldc-step p {
    width: min(27ch, 100%);
    overflow-wrap: break-word;
  }

  .ldc-step__number {
    top: 24px;
    left: 24px;
  }

  .ldc-product-story {
    padding-inline: 14px;
  }

  .ldc-product-hero__image {
    min-height: 330px;
    border-radius: 28px;
  }

  .ldc-product-stamp {
    width: 118px;
    min-height: 58px;
    font-size: 21px;
  }

  .ldc-product-hero__copy h1 {
    font-size: 62px;
  }

  .ldc-product-features,
  .ldc-product-packs {
    grid-template-columns: 1fr 1fr;
  }

  .ldc-sticky-order,
  .ldc-footer {
    display: grid;
    text-align: center;
  }
}
