/* ============================================================
   SCHAR PIZZA GAME — Custom CSS
   Colors, layout and structure matched to design
   ============================================================ */

/* ----------------------------------------------------------
   DESIGN TOKENS
   ---------------------------------------------------------- */
:root {
  --clr-neutral-0:    #ffffff;
  --clr-yellow-500:   #FFD100;
  --clr-red-500:      #cf003e;
  --clr-red-600:      #a8092f;
  --clr-brown-050:    #f4efe9;
  --clr-brown-100:    #e9ded4;
  --clr-brown-300:    #dbc8b7;
  --clr-brown-500:    #3d2b30;

  --schar-radius-pill:   50px;
  --schar-radius-circle: 50%;

  --schar-icon-size:     72px;
  @media (min-width: 480px) {
    --schar-icon-size:     90px;
  }

  --schar-transition:    0.25s ease;
}

/* ----------------------------------------------------------
   BASE
   ---------------------------------------------------------- */
html {
  scroll-behavior: smooth;
  scroll-padding-top: 64px;
}

body {
  overflow-x: hidden;
  background-color: var(--clr-brown-500);
  color: var(--clr-neutral-0);
  font-family: "Cabin", sans-serif;
  font-weight: 400;
}

body,
h1,
h2,
h3,
ul,
p {
  padding: 0;
  margin: 0;
}

ul {
  list-style: none;
}

h1,
h2,
h3 {
  font-family: "Playfair Display", sans-serif;
  font-weight: 900;
  text-align: left;
}
/*@media (min-width: 768px) {*/
/*  h1,*/
/*  h2,*/
/*  h3 {*/
/*    text-align: center;*/
/*  }*/
/*}*/

h2 {
  font-size: 36px;
}
@media (min-width: 768px) {
  h2 {
    font-size: 48px;
  }
}

h3 {
  font-size: 24px;
}

section {
  padding: 44px 0;
}

/*.container {*/
/*  max-width: 1300px;*/
/*  margin-inline: auto;*/
/*}*/

/* ----------------------------------------------------------
   BUTTONS
   ---------------------------------------------------------- */

.schar-btn {
  font-size: 1rem;
  font-weight: 700;
  border: none;
  padding: 12px 32px;
  min-width: 200px;
  width: fit-content;
}

.schar-btn--red {
  background-color: var(--clr-red-500);
  border: 1px solid var(--clr-red-500);
  color: var(--clr-neutral-0);
}

.schar-btn--red:hover,
.schar-btn--red:focus-visible {
  background-color: var(--clr-red-600);
  border: 1px solid var(--clr-red-600);
  color: var(--clr-neutral-0);
  box-shadow: 0 6px 20px rgba(207, 0, 62, 0.4);
}

.schar-btn-outline--red {
  background: transparent;
  border: 1px solid var(--clr-red-500);
  color: var(--clr-red-500);
}

.schar-btn-outline--red:hover,
.schar-btn-outline--red:focus-visible {
  background-color: var(--clr-red-600);
  border: 1px solid var(--clr-red-600);
  color: var(--clr-neutral-0);
  box-shadow: 0 6px 20px rgba(207, 0, 62, 0.4);
}

/* ----------------------------------------------------------
   HEADER / NAVBAR
   ---------------------------------------------------------- */
.schar-header {
  position: sticky;
  top: 0;
  z-index: 1030;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.schar-navbar {
  background-color: var(--clr-yellow-500) !important;
  min-height: 56px;
}

.schar-navbar .container-fluid {
  display: flex;
  align-items: center;
}

.schar-navbar .navbar-brand {
  margin: 0;
}

.schar-navbar .navbar-brand img {
  max-height: 38px;
  width: auto;
}

/* ── Hamburger (mobile only) ─────────────────────────────── */
.schar-header__hamburger {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--clr-brown-500);
  font-size: 1.6rem;
  padding: 0.25rem;
  background: none;
  border: none;
  cursor: pointer;
  transition: opacity var(--schar-transition);
  order: -1;
  margin-right: 0.5rem;
}

.schar-header__hamburger:hover {
  opacity: 0.7;
}

/* ── Desktop nav links ───────────────────────────────────── */
.schar-navbar__links {
  display: none;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 0.25rem;
}

.schar-navbar__link {
  color: var(--clr-brown-500);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 600;
  padding: 0.5rem 0.75rem;
  white-space: nowrap;
  transition: opacity var(--schar-transition);
}

.schar-navbar__link:hover {
  opacity: 0.7;
  color: var(--clr-brown-500);
}

/* ── Right side (CTA + lang selector) ────────────────────── */
.schar-navbar__right {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-left: auto;
}

/* ── CTA button (last nav item) — desktop only ───────────── */
.schar-navbar__cta {
  display: none;
  align-items: center;
  gap: 0.4rem;
  background-color: var(--clr-red-500);
  color: var(--clr-neutral-0);
  font-size: 0.85rem;
  font-weight: 700;
  text-decoration: none;
  padding: 0.45rem 1.25rem;
  border-radius: 4px;
  white-space: nowrap;
  transition: background-color var(--schar-transition), box-shadow var(--schar-transition);
}

.schar-navbar__cta:hover {
  background-color: var(--clr-red-600);
  color: var(--clr-neutral-0);
  box-shadow: 0 4px 12px rgba(207, 0, 62, 0.35);
}

/* ── Desktop breakpoint ──────────────────────────────────── */
@media (min-width: 992px) {
  .schar-header__hamburger {
    display: none;
  }

  .schar-navbar__links {
    display: flex;
  }

  .schar-navbar__cta {
    display: inline-flex;
  }

  /* On mobile the logo is centered; on desktop it flows naturally */
  .schar-navbar .navbar-brand {
    flex: 0 0 auto;
    margin-right: 1rem;
  }
}

/* ── Mobile: center the logo ─────────────────────────────── */
@media (max-width: 991.98px) {
  .schar-navbar .container-fluid {
    position: relative;
    justify-content: center;
  }

  .schar-header__hamburger {
    position: absolute;
    left: 0;
  }

  .schar-navbar__right {
    position: absolute;
    right: 0;
  }

  /* Hide desktop-only lang selector on mobile (it's inside the offcanvas) */
  .schar-navbar__right .schar-lang-selector {
    display: none;
  }
}

/* ----------------------------------------------------------
   LANGUAGE SELECTOR
   ---------------------------------------------------------- */
.schar-lang-selector .btn {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--clr-brown-500);
  padding: 0.25rem 0.5rem;
}

.schar-lang-selector .btn:hover,
.schar-lang-selector .btn:focus {
  background-color: rgba(61, 43, 48, 0.08);
  color: var(--clr-brown-500);
}

.schar-lang-selector .dropdown-item {
  font-size: 0.875rem;
  font-weight: 500;
}

.schar-lang-selector .dropdown-item.active,
.schar-lang-selector .dropdown-item:active {
  background-color: var(--clr-yellow-500);
  color: var(--clr-brown-500);
  font-weight: 700;
}

.schar-lang-selector .dropdown-item:hover {
  background-color: rgba(255, 209, 0, 0.2);
  color: var(--clr-brown-500);
}

.schar-lang-flag {
  border-radius: 2px;
  object-fit: cover;
  flex-shrink: 0;
}

.schar-lang--loading {
  opacity: 0.5;
  pointer-events: none;
}

/* ----------------------------------------------------------
   OFFCANVAS / MOBILE NAV
   ---------------------------------------------------------- */
.schar-offcanvas .offcanvas-header {
  background-color: var(--clr-yellow-500);
}

.schar-offcanvas .nav-link {
  color: #333;
  padding: 0.6rem 0;
  border-bottom: 1px solid #eee;
  font-weight: 500;
}

.schar-offcanvas .nav-link:hover {
  color: var(--clr-red-500);
}

/* ── Mobile language selector inside offcanvas ───────────── */
.schar-offcanvas__lang {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.schar-offcanvas__lang-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 0;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 0.9rem;
  font-weight: 500;
  color: #333;
  transition: color var(--schar-transition);
}

.schar-offcanvas__lang-item:hover {
  color: var(--clr-red-500);
}

.schar-offcanvas__lang-item--active {
  font-weight: 700;
  color: var(--clr-red-500);
}

/* ----------------------------------------------------------
   HERO SECTION
   ---------------------------------------------------------- */

.schar-hero {
  background-image: url("../assets/images/hero-image-mobile.jpg"); /* fallback real: browsere foarte vechi */
  background-image: -webkit-image-set(
          url("../assets/images/hero-image-mobile.webp") 1x,
          url("../assets/images/hero-image-mobile.jpg") 1x
  );
  background-image: image-set(
          url("../assets/images/hero-image-mobile.webp") type("image/webp"),
          url("../assets/images/hero-image-mobile.jpg") type("image/jpeg")
  );
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  min-height: calc(100svh - 64px);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding-bottom: 32px;
}

/*.schar-hero__image-wrap {*/
/*  position: absolute;*/
/*  top: 0;*/
/*  left: 0;*/
/*  width: 100%;*/
/*  height: 100%;*/
/*  z-index: 0;*/
/*  overflow: hidden;*/
/*}*/

/*.schar-hero__img {*/
/*  width: 100%;*/
/*  height: 100%;*/
/*  display: block;*/
/*  object-fit: cover;*/
/*}*/

/* "Baked in Italy" rotating stamp */
.schar-hero__badge {
  width: 132px;
  height: 132px;
  filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.35));
}

.schar-hero__badge img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

@keyframes schar-spin {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

/* Hero content block */
.schar-hero__content {
  padding: 0;
}

.schar-hero__content h1 {
  font-size: clamp(2rem, 8vw, 4.5rem);
  line-height: .9;
  font-weight: 900;
  color: var(--clr-neutral-0);
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.2);
  margin: -8px 0 32px;
}

.schar-hero__content h1 span.highlight {
 color: var(--clr-yellow-500);
  display: block;
}

.red-dot {
  color: var(--clr-red-500);
}

/* Desktop: side-by-side hero */
@media (min-width: 768px) {
  .schar-hero {
    background-image: url("../assets/images/hero-image-desktop.jpg"); /* fallback real */
    background-image: -webkit-image-set(
            url("../assets/images/hero-image-desktop.webp") 1x,
            url("../assets/images/hero-image-desktop.jpg") 1x
    );
    background-image: image-set(
            url("../assets/images/hero-image-desktop.webp") type("image/webp"),
            url("../assets/images/hero-image-desktop.jpg") type("image/jpeg")
    );
    padding-bottom: 132px;
  }

  .schar-hero__image-wrap {
    flex: none;
  }

  .schar-hero__img {
    height: 100%;
  }

  .schar-hero__badge {
    width: 220px;
    height: 220px;
  }

  .schar-hero__content{
    width: 45%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 0 0 3rem;
  }

  .schar-hero__content h1 {
    font-size: clamp(2.5rem, 3.5vw, 4.5rem);
  }
}

/* ----------------------------------------------------------
   INTRO SECTION (description + "What's inside?" heading)
   ---------------------------------------------------------- */
.schar-intro {
  background-color: var(--clr-brown-100);
  padding: 2.5rem 0;
}

.schar-intro__description,
.schar-nutrition__description {
  font-size: 1rem;
  line-height: 1.4;
  color: var(--clr-brown-500);
  margin: 0 0 2rem;
  text-align: left;
}

.schar-intro__heading {
  color: var(--clr-red-500);
  margin-bottom: 0;
}

@media (min-width: 768px) {
  .schar-intro {
    padding: 3.5rem 2rem 0;
  }

  .schar-intro__description {
    font-size: 20px;
  }
}

/* ----------------------------------------------------------
   INGREDIENTS SECTION
   ---------------------------------------------------------- */
.schar-ingredients {
  background-color: var(--clr-brown-300);
  color: var(--clr-brown-500);
}
@media (min-width: 768px) {
  .schar-ingredients {
    background-color: var(--clr-brown-100);
  }
}

.schar-ingredients h3,
.schar-ingredients p {
  color: var(--clr-brown-500);
}

.schar-ingredient-card {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 32px;
}
@media (min-width: 768px) {
  .schar-ingredient-card {
    /*flex-direction: column;*/
    /*justify-content: center;*/
    gap: 16px;
  }
}

.schar-ingredient-content {
  flex: 1;
  text-align: left;
}

.schar-icon-circle {
  width: var(--schar-icon-size);
  height: var(--schar-icon-size);
  border-radius: var(--schar-radius-circle);
  transition: background-color var(--schar-transition), border-color var(--schar-transition);
}

.schar-icon-circle:hover {
  background-color: rgba(61, 43, 48, 0.1);
  border-color: rgba(61, 43, 48, 0.3);
}

.schar-icon-circle img {
  width: 100%;
  height: 100%;
  /*object-fit: contain;*/
}

/* Ingredient card — label + description */
.schar-ingredient-label {
  color: var(--clr-brown-500);
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  line-height: 1.2;
}
@media (min-width: 768px) {
  .schar-ingredient-label {
    font-size: 20px;
  }
}

.schar-ingredient-desc {
  color: var(--clr-brown-500);
  font-size: 1rem;
  line-height: 1.2;
}
@media (min-width: 768px) {
  .schar-ingredient-label {
    font-size: 20px;
  }
}

/* Nutritional badges */
.schar-badges {
  gap: 48px;
}

.schar-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}
@media (min-width: 768px) {
  .schar-badge {
    flex-direction: row;
  }
}

.schar-badge span {
  font-size: 24px;
  display: block;
}

/* ----------------------------------------------------------
   SLICE LIKE A PRO SECTION
   ---------------------------------------------------------- */
section.schar-slice {
  padding: 0;
}

.schar-slice {
  background-color: var(--clr-brown-500);
  color: var(--clr-neutral-0);
  height: 100%;
  min-height: 480px;
  transition: min-height 1s ease-in-out, height 1s ease-in-out;
}

.schar-slice-img-wrapper {
  position: relative;
  container-type: inline-size;
}

.schar-slice-text {
  font-family: "Playfair Display", sans-serif;
  color: var(--clr-yellow-500);
  font-weight: 700;
  position: absolute;
  width: 40%;
  height: auto;
  top: 50%;
  transform: translateY(-50%);
  right: 2.5rem;
  font-size: 32px;
  line-height: 1;
}
@media (min-width: 768px) {
  .schar-slice-text {
    font-size: clamp(5cqw, 56px, 8cqw);
    top: auto;
    bottom: 2rem;
    transform: translateY(0%);
  }
}

.schar-slice__img {
  border-radius: 1rem;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.6);
  transition: transform 0.4s ease;
  width: 100%;
  object-fit: cover;
}

.schar-slice__img:hover {
  transform: scale(1.02);
}

#slice-heading{
  font-size: 2rem;
  font-style: italic;
  font-weight: 900;
  color: var(--clr-yellow-500);
  margin-bottom: 1rem;
}

.schar-slice .step-description {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1rem;
}

.schar-steps {}

.step {
  display: none;
  padding: 40px 16px;
}
@media (min-width: 768px) {
  .step {
    padding: 64px;
  }
}

.step.show {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
}

.step-headline {
  font-size: 32px;
  color: var(--clr-yellow-500);
  text-align: center;
}

.step-description {}

.step-image-container {
  width: 80%;
  max-width: 300px;
  position: relative;
}

.step-image-container::before {
  content: '';
  position: absolute;
  width: 90%;
  height: 90%;
  top: 5%;
  left: 0;
  right: 0;
  margin-inline: auto;
  box-shadow: 0 20px 40px rgba(0, 0, 0, .5);
  border-radius: 50%;
  z-index: -1;
}

.step-image {
  width: 80%;
  max-width: 300px;
}

#pizza-swiper .step-image {
  width: 100%;
  height: auto;
}

@media (min-width: 768px) {
  .step-headline {
    font-size: 40px;
  }
}

#pizza-topping-progress-bar {
  WIDTH: 150px;
  height: 8px;
  appearance: none;
  -webkit-appearance: none;
  border: 1px solid VAR(--clr-red-500);
  border-radius: 10px;
  background-color: var(--clr-brown-500);
  overflow: hidden;
}

progress::-webkit-progress-bar {
  background-color: var(--clr-brown-500); /* track */
}

progress::-webkit-progress-value {
  background-color: var(--clr-yellow-500); /* filled */
  transition: width 0.3s ease;
}

progress::-moz-progress-bar {
  background-color: var(--clr-yellow-500);
}

/* Choose pizza swiper */
#pizza-swiper {
  --swiper-navigation-top-offset: 40%;
  --swiper-theme-color: #dfcebe;

  width: 100%;
  max-width: 480px;
  height: auto;
  margin-inline: auto;
}

#pizza-swiper .swiper-wrapper {
  margin-bottom: 40px;
}

#pizza-swiper .slide-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

#pizza-swiper .swiper-button-prev,
#pizza-swiper .swiper-button-next {
  top: 40%;
}

#pizza-swiper .swiper-pagination-bullet {
  background: transparent;
  border: 2px solid var(--swiper-theme-color);
}

#pizza-swiper .swiper-pagination-bullet-active {
  width: 20px;
  background-color: var(--swiper-theme-color);
  border-radius: 4px;
}

#pizza-swiper .pizza-title {
  font-size: 32px;
  color: var(--clr-yellow-500);
}

/* Slice pizza */

.baked-pizza-image-wrapper {
  width: 80%;
  max-width: 300px;
  position: relative;
}

#baked-pizza-image,
#pizza-guidelines-image,
#canvas-slice-pizza {
  position: absolute;
  top: 8%;
  right: 4%;
  touch-action: none;
}

.baked-pizza-image-wrapper img {
  width: 80%;
  height: 90%;
  object-fit: contain;
  display: block;
  pointer-events: none;
  user-select: none;
  -webkit-user-drag: none;
}

#pizza-guidelines-image {
  width: 100%;
  right: -6%;
}

#canvas-slice-pizza {
  border-radius: 50%;
}

#pizza-stand-image {
  width: 100%;
  height: 100%;
}

#canvas-slice-pizza {
  cursor: pointer;
}

/* Sliced pizza step — separated slices */
.sliced-pizza-container {
  width: 80%;
  max-width: 300px;
}

.sliced-pizza-slices {
  position: relative;
  width: 100%;
}

.sliced-pizza-slices__stand {
  width: 100%;
  height: auto;
  display: block;
}

.sliced-pizza-slices__slice {
  position: absolute;
  top: 8%;
  right: 4%;
  width: 80%;
  height: 90%;
  object-fit: contain;
  pointer-events: none;
  user-select: none;
  -webkit-user-drag: none;
}

#feedback {
  position: absolute;
  left: 50%;
  top: 1rem;
  transform: translateX(-50%);
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 0.82rem;
  font-weight: 600;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s;
}
#feedback.show { opacity: 1; }
#feedback.bad  { background: #c0392b; color: #fff; }
#feedback.good { background: #27ae60; color: #fff; }

#progress {
  margin-top: 18px;
  display: flex;
  gap: 12px;
  align-items: center;
}
.dot {
  width: 14px; height: 14px;
  border-radius: 50%;
  background: #333;
  border: 2px solid #555;
  transition: all 0.3s;
}
.dot.done {
  background: #4caf50;
  border-color: #4caf50;
  box-shadow: 0 0 8px #4caf5099;
}
#progress-label { font-size: 0.85rem; color: #888; margin-left: 4px; }

@keyframes pop-in {
  from { transform: scale(0.6); opacity: 0; }
  to   { transform: scale(1);   opacity: 1; }
}

/* ----------------------------------------------------------
   REDEEM PRIZE — MULTI-STEP FORM
   ---------------------------------------------------------- */

.redeem-prize form {
  background-color: var(--clr-neutral-0);
  border-radius: 16px;
  padding: 0;
  width: 100%;
  max-width: 480px;
  overflow: hidden;
  text-align: left;
}

/* Progress bar */
.form-progress-bar {
  display: flex;
  gap: 4px;
  padding: 16px 24px 0;
}

.form-progress-segment {
  flex: 1;
  height: 6px;
  border-radius: 3px;
  background-color: #e0d6cd;
  transition: background-color 0.3s ease;
}

.form-progress-segment.active {
  background-color: var(--clr-red-500);
}

/* Step panels */
.form-step {
  display: none;
  padding: 24px;
}

.form-step.active {
  display: block;
}

.form-step__heading {
  font-family: "Playfair Display", sans-serif;
  font-weight: 900;
  font-style: italic;
  font-size: 24px;
  color: var(--clr-red-500);
  margin-bottom: 8px;
  line-height: 1.2;
}

.form-step__description {
  font-size: 14px;
  margin-bottom: 4px;
  line-height: 1.4;
  color: var(--clr-brown-500);
}

.form-step__disclaimer {
  font-size: 12px;
  margin-bottom: 16px;
  color: var(--clr-brown-500);
}

/* Fields container */
.form-step__fields {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

/* Individual field wrapper */
.form-field {
  margin-bottom: 4px;
}

/* Text inputs */
.form-field__input {
  width: 100%;
  border: none;
  border-bottom: 1px solid #ccc;
  padding: 12px 0;
  font-size: 14px;
  font-family: "Cabin", sans-serif;
  color: var(--clr-brown-500);
  background: transparent;
  outline: none;
  transition: border-color 0.2s ease;
}

.form-field__input:focus {
  border-bottom-color: var(--clr-red-500);
}

.form-field__input.is-invalid {
  border-bottom-color: #dc3545;
}

.form-field__input::placeholder {
  color: #999;
}

/* Select / dropdown */
.form-field__label {
  display: block;
  font-size: 12px;
  color: #999;
  margin-bottom: 0;
  padding-top: 8px;
}

.form-field__select {
  width: 100%;
  border: none;
  border-bottom: 1px solid #ccc;
  padding: 10px 0;
  font-size: 14px;
  font-family: "Cabin", sans-serif;
  color: var(--clr-brown-500);
  background: transparent;
  outline: none;
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23999' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 4px center;
  cursor: pointer;
  transition: border-color 0.2s ease;
}

.form-field__select:focus {
  border-bottom-color: var(--clr-red-500);
}

.form-field__select.is-invalid {
  border-bottom-color: #dc3545;
}

/* Quiz / radio buttons */
.form-field--quiz {
  margin-top: 8px;
}

.form-field__quiz-question {
  font-size: 14px;
  font-weight: 600;
  color: var(--clr-brown-500);
  margin-bottom: 12px;
  line-height: 1.4;
}

.form-field__radio-wrap {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
}

.form-field__radio {
  width: 18px;
  height: 18px;
  accent-color: var(--clr-red-500);
  cursor: pointer;
  flex-shrink: 0;
}

.form-field__radio-label {
  font-size: 14px;
  color: var(--clr-brown-500);
  cursor: pointer;
  line-height: 1.3;
}

/* Checkboxes */
.form-field--checkbox {
  margin-bottom: 8px;
}

.form-field__checkbox-wrap {
  display: flex;
  align-items: flex-start;
  gap: 8px;
}

.form-field__checkbox {
  width: 18px;
  height: 18px;
  accent-color: var(--clr-red-500);
  cursor: pointer;
  flex-shrink: 0;
  margin-top: 2px;
}

.form-field__checkbox-label {
  font-size: 13px;
  color: var(--clr-brown-500);
  cursor: pointer;
  line-height: 1.4;
}

/* Info text (GDPR notice etc.) */
.form-field--text {
  margin-bottom: 12px;
}

.form-field__info-text {
  font-size: 14px;
  color: #777;
  line-height: 1.5;
  margin: 0;
}

/* Validation error messages */
.form-field__error {
  display: none;
  font-size: 12px;
  color: #dc3545;
  margin-top: 4px;
}

.form-field__error.visible {
  display: block;
}

/* Submission error */
.form-submission-error {
  padding: 0 24px 16px;
  font-size: 13px;
  color: #dc3545;
  text-align: center;
}

/* Button row */
.form-step__buttons {
  display: flex;
  justify-content: flex-end;
  gap: 12px;
  margin-top: 24px;
}

.form-step__buttons:has(.form-btn-prev),
.form-step__buttons:has(.share-btn),
.form-step__buttons:has(.download-btn) {
  justify-content: space-between;
}

.share-btn,
.download-btn {
  min-width: unset;
}

.form-btn-prev {
  background-color: #888;
  color: var(--clr-neutral-0);
  font-weight: 700;
  min-width: 120px;
}

.form-btn-prev:hover,
.form-btn-prev:focus-visible {
  background-color: #777;
  color: var(--clr-neutral-0);
}

.form-btn-next,
.form-btn-submit,
.form-btn-explore {
  font-weight: 700;
  min-width: 120px;
}

/* ----------------------------------------------------------
   REDEEM PRIZE — SECTION LAYOUT
   ---------------------------------------------------------- */

/* Override default .step.show centered flex for redeem-prize */
.step.redeem-prize.show {
  display: block;
}

/* Individual section row */
.redeem-prize--form .redeem-section {
  padding: 48px 0;
}
.redeem-prize--blocks .redeem-section {
  padding: 0 24px 48px;
}
@media (min-width: 768px) {
  .redeem-prize--form .redeem-section,
  .redeem-prize--blocks .redeem-section {
    padding: 48px 0;
  }
}

.redeem-prize--form .redeem-section {
  background-color: var(--clr-brown-500);
}

.redeem-prize--blocks .redeem-section {
  background-color: var(--clr-brown-050);
}

.redeem-prize--blocks .redeem-section--reversed {
  background-color: var(--clr-brown-300);
}

.redeem-section-inner {
  display: flex;
  flex-direction: column;
  gap: 32px;
  align-items: center;
}

@media (min-width: 768px) {
  .redeem-section-inner {
    flex-direction: row;
    align-items: center;
    gap: 80px;
  }

  .redeem-section-inner--reversed {
    flex-direction: row-reverse;
  }
}

/* Prize or Image card column */
.redeem-section__prize-card,
.redeem-section__image {
  flex: 1;
  width: 100vw;
  margin-inline: calc(50% - 50vw);
}
@media (min-width: 768px) {
  .redeem-section__prize-card,
  .redeem-section__image {
    flex: 2;
    width: unset;
    margin-inline: unset;
  }
}

.redeem-section__image img {
  width: 100%;
  height: auto;
}

.redeem-section__prize-card {
  text-align: center;
}
@media (min-width: 768px) {
  .redeem-section__prize-card {
    border-radius: 12px;
  }
}

.redeem-prize--form .redeem-section__prize-card {
  background-color: transparent;
  padding: 0;
}

.redeem-prize--blocks .redeem-section__prize-card {
  background-color: var(--clr-brown-500);
  padding: 32px 32px 0;
}

/* Content column */
.redeem-section__content {
  flex: 1;
}

/* Prize card heading */
.redeem-section__heading {
  font-weight: 900;
  font-style: italic;
  font-size: 32px;
  color: var(--clr-yellow-500);
  margin-bottom: 16px;
  line-height: 1.2;
}

@media (min-width: 768px) {
  .redeem-section__heading {
    font-size: 48px;
  }
}

.redeem-prize--form .redeem-section__heading {
  text-align: center;
}

.redeem-prize--form .redeem-section__prize {
  width: 80%;
  margin: 0 auto;
  display: flex;
  flex-direction: row;
  align-items: flex-end;
  position: relative;
}

.redeem-prize--blocks .redeem-section__prize {
  margin: 0 auto;
  display: flex;
  flex-direction: row;
  align-items: flex-end;
}

/* Prize image */
.redeem-section__prize-image {
  max-width: 250px;
  width: 100%;
  height: 400px;
  margin: 0 auto;
  display: block;
  object-fit: contain;
}

/* Prize text */
.redeem-section__prize-text {
  font-weight: 900;
  font-style: italic;
  font-size: 32px;
  color: var(--clr-yellow-500);
  margin: 0;
  line-height: 1.05;
  font-family: "Playfair Display", sans-serif;
}

.redeem-prize--form .redeem-section__prize-text {
  position: absolute;
  left: 56%;
  bottom: 48px;
}

.redeem-prize--blocks .redeem-section__prize-text {
  margin-bottom: 32px;
}

@media (min-width: 768px) {
  .redeem-section__prize-text {
    font-size: 40px;
  }
}

.redeem-prize--form .redeem-section__prize-disclaimer {
  color: var(--clr-yellow-500);
  text-align: right;
  width: 100%;
  display: inline-block;
}

/* --- Form variant --- */
.redeem-prize--form {
  /* Inherits dark background from parent .schar-slice */
}

/* --- Block variant --- */
.redeem-prize--blocks {
  background-color: var(--clr-brown-100);
  border-radius: 0;
  padding: 0;
}

/* Block content (sign-in / join) */
.redeem-block {
  text-align: left;
}

.redeem-block__heading {
  font-weight: 900;
  font-style: italic;
  font-size: 24px;
  color: var(--clr-red-500);
  margin-bottom: 12px;
  line-height: 1.2;
}

@media (min-width: 768px) {
  .redeem-block__heading {
    font-size: 32px;
  }
}

.redeem-block__description {
  font-size: 16px;
  color: var(--clr-brown-500);
  margin-bottom: 24px;
  line-height: 1.5;
}

.redeem-block__cta {
  /* Uses existing .schar-btn--red styles */
}

/* ----------------------------------------------------------
   SCHAR PRODUCTS
   ---------------------------------------------------------- */

.schar-products {
  background-color: var(--clr-brown-100);
  color: var(--clr-brown-500)
}

.schar-products .step-headline {
  color: var(--clr-brown-500);
  text-align: left;
  margin-bottom: 24px;
}

@media (max-width: 768px) {
  #product-swiper {
    width: 100vw;
    margin-left: calc(50% - 50vw);
    padding: 0 1rem;
  }
}

#product-swiper .swiper-wrapper {
  margin-bottom: 40px;
}

#product-swiper .swiper-pagination-bullet {
  background: transparent;
  border: 2px solid var(--clr-brown-500);
}

#product-swiper .swiper-pagination-bullet-active {
  width: 20px;
  background-color: var(--clr-brown-500);
  border-radius: 4px;
}

.product-card {
  background-color: var(--clr-brown-050);
  padding: 44px 24px 16px;
}

.card-title {
  height: 60px;
  overflow: hidden;
  text-overflow: ellipsis;
  -o-text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.product-card .card-image {
  width: 100%;
  max-width: 320px;
  height: auto;
  margin: 0 auto 32px;
  display: block;
}

.product-rating {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 8px;
  margin-bottom: 24px;
}

.product-quantity {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 32px;
}

.card-cta {
  width: 100%;
  max-width: 100%;
}

/* ----------------------------------------------------------
   CTA SECTION
   ---------------------------------------------------------- */
.schar-cta {
  background-color: var(--clr-yellow-500);
  color: var(--clr-brown-500);
}

.schar-cta h2 {
  font-size: clamp(1.6rem, 5vw, 2.5rem);
  font-weight: 900;
  line-height: 1.15;
  color: var(--clr-brown-500);
}

.schar-cta p {
  color: rgba(61, 43, 48, 0.7);
}

/* ----------------------------------------------------------
   MODAL
   ---------------------------------------------------------- */
.modal-content {
  border-radius: 1.25rem;
  border: none;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25);
  overflow: hidden;
}

.modal-header {
  background-color: var(--clr-yellow-500);
  border-bottom: none;
  padding: 1.25rem 1.5rem;
}

.modal-title {
  font-weight: 800;
  font-size: 1.15rem;
  color: var(--clr-brown-500);
}

.modal-body {
  padding: 1.5rem;
  color: #333;
}

.modal-body .form-label {
  color: #333;
}

.modal-body .form-control,
.modal-body .form-check-input {
  border-radius: 0.5rem;
}

.modal-body .form-control:focus {
  border-color: var(--clr-red-500);
  box-shadow: 0 0 0 0.2rem rgba(207, 0, 62, 0.2);
}

.modal-body .form-check-label {
  color: #555;
}

/* Success state */
.schar-modal-success {
  text-align: center;
  padding: 2rem 1rem;
}

.schar-modal-success__icon {
  font-size: 3.5rem;
  color: var(--clr-red-500);
  margin-bottom: 1rem;
  display: block;
}

.schar-modal-success__title {
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
  color: #333;
}

/* ----------------------------------------------------------
   FOOTER — 3 sub-sections
   ---------------------------------------------------------- */
footer {
  font-size: 14px;
}

footer h3 {
  font-size: inherit;
  text-transform: uppercase;
  font-weight: 700;
  font-family: "Cabin", sans-serif;
  margin-bottom: 16px;
}

footer a {
  color: inherit;
  text-decoration: none;
}

footer a:hover {
  text-decoration: underline;
}

/* Sub-section top: yellow bg, brown text (categories + logo/social) */
footer .sub-section-top {
  background-color: var(--clr-yellow-500);
  color: var(--clr-brown-500);
}

.footer-logo {
  width: 80px;
  height: auto;
}

footer .sub-section-top-inner {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: auto;
  align-items: flex-start;
  gap: 32px;
}
@media (min-width: 768px) {
  footer .sub-section-top-inner  {
    grid-template-columns: 1fr 2fr 2fr auto;
  }
}

footer .sub-section-top-inner .product-links a {
  text-transform: uppercase;
  font-weight: 700;
  padding-right: .5rem;
  font-size: .75rem;
}

footer .sub-section-top .product-links,
footer .sub-section-top .useful-links {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: auto;
  gap: 4px;
}
@media (min-width: 768px) {
  footer .sub-section-top .product-links,
  footer .sub-section-top .useful-links {
    grid-template-columns: repeat(2, 1fr);
  }
}

.footer-social {
  display: flex;
  flex-direction: row;
  gap: 4px;
}

.footer-social li img {
  width: 32px;
  height: auto;
}

/* Sub-section middle: red bg, white text (info links) */
footer .sub-section-middle {
  background-color: var(--clr-red-500);
  color: var(--clr-neutral-0);
}

footer .sub-section-middle-inner {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: auto;
}
@media (min-width: 768px) {
  footer .sub-section-middle-inner  {
    grid-template-columns: repeat(2, 1fr);
  }
}

footer .sub-section-middle-inner ul {
  display: flex;
  flex-direction: row;
  gap: 20px;
}

/* Sub-section bottom: dark red bg, white text (legal, research, copyright) */
footer .sub-section-bottom {
  background-color: var(--clr-red-600);
  color: var(--clr-neutral-0);
  text-align: center;
}

#ot-sdk-btn.ot-sdk-show-settings,
#ot-sdk-btn.optanon-show-settings {
  background-color: unset !important;
  font-size: inherit !important;
  padding: inherit !important;
  border: none !important;
  outline: none !important;
  color: var(--clr-neutral-0) !important;
}

#ot-sdk-btn.ot-sdk-show-settings:hover,
#ot-sdk-btn.optanon-show-settings:hover {
  text-decoration: underline !important;
  color: inherit !important;
}


#ot-sdk-btn.ot-sdk-show-settings:active,
#ot-sdk-btn.optanon-show-settings:active {
  border: none !important;
}

.userway_buttons_wrapper {
  top: auto !important;
  bottom: 16px !important;
  left: 16px !important;
  transform: unset !important;
}

.uai {
  background: rgb(61, 43, 48) !important;
}

  /* ----------------------------------------------------------
     SCROLL REVEAL ANIMATION
     ---------------------------------------------------------- */
.schar-reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.schar-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.schar-reveal:nth-child(2) { transition-delay: 0.1s; }
.schar-reveal:nth-child(3) { transition-delay: 0.2s; }
.schar-reveal:nth-child(4) { transition-delay: 0.3s; }

/* ----------------------------------------------------------
   REDUCED MOTION
   ---------------------------------------------------------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .schar-slice__img { transition: none; }
  .schar-reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
  .schar-social-link { transition: none; }
}
