/* /design_sandbox/assets/css/sandbox.css */

/* ===============================
   TOKENS
   =============================== */
:root{
  --color-white:#fff;
  --color-nav-text:#fff;
  --color-cta-text:#E10600;

  --font-ui: "Inter", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;

  /* Header */
  --header-h: 146.57px;
  --header-bar-w: 1440px;

  /* Global paddings */
  --page-pad: 48px;
  --page-max: 1440px;

  /* Menu */
  --menu-gap: 42px;

  /* Header guards (IMPORTANT) */
  --nav-guard-left: 300px;   /* minim ca să nu intre peste logo */
  --nav-guard-right: 300px;  /* îl ținem egal ca să rămână nav-ul centrat real */

  /* CTA */
  --cta-w: 185px;
  --cta-h: 44px;
  --cta-radius: 49px;

  /* Click-area logo */
  --logo-hit-x: 28px;
  --logo-hit-y: 6px;
  --logo-hit-w: 280px;
  --logo-hit-h: 130px;

  .products__carousel-wrap{
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 26px;
    width: 100%;
  }
  /* Site BG (full width) */
  --site-bg: radial-gradient(71.75% 71.75% at 50% 50%, #E20613 0%, #8D1003 76%, #8D1003 100%);
  --site-bg-shadow: drop-shadow(0 4px 4px rgba(0,0,0,.25));

  /* Hero */
  --hero-bg: #BDE7F1;
  --btn-blue: #043C7A;

  /* Hero paddings */
  --hero-pad-top: 56px;
  --hero-pad-bot: 84px;

  /* Left block offset (tu ai cerut ~200px) */
  --hero-left-offset: clamp(50px, 70px, 12vw, 200px);

  /* Prize group margin-left (editabil) */
  --prizes-ml: 160px;

  /* Buttons group extra offset (editabil, ca să pice sub grupul de premii) */
  --actions-ml: 360px;
}

/* ===============================
   RESET / BASE
   =============================== */
*{ box-sizing:border-box; }
html,body{ height:100%; }
body{
  margin:0;
  font-family:var(--font-ui);
  color:#111;
  background: var(--site-bg);
  filter: var(--site-bg-shadow);
  overflow-x: hidden;
}

/* ===============================
   HEADER (full width, bar left, sliver repeat)
   =============================== */
.site-header{
  position:relative;
  width:100%;
  height:var(--header-h);
  overflow:visible; /* permite “bula” peste hero */
  z-index: 50;      /* peste hero */
}

/* Layer 1: sliver repeat-x full width */
.site-header__bg{
  position:absolute;
  inset:0;
  z-index:0;
  background-image: url("/assets/ui/desktop/sliver.png");
  background-repeat: repeat-x;
  background-position: left top;
  background-size: auto 100%;
}

/* Layer 2: meniu_logo.png fix 1440px, aliniat la stânga */
.site-header__bg::after{
  content:"";
  position:absolute;
  left:0;
  top:0;
  width:var(--header-bar-w);
  height:100%;
  background-image: url("/assets/ui/desktop/meniu_logo.png");
  background-repeat:no-repeat;
  background-position:left top;
  background-size: var(--header-bar-w) 100%;
}

/* Click area invizibil peste logo */
.site-header__logo-hit{
  position:absolute;
  left:var(--logo-hit-x);
  top:var(--logo-hit-y);
  width:var(--logo-hit-w);
  height:var(--logo-hit-h);
  z-index:60;
  text-decoration:none;
}

/* content over bg */
.site-header__content{
  position:relative;
  z-index:2;
  height:100%;
  width:100%;
}

  .products__nav:active{ transform: translateY(-50%); }

  /* Swiper overrides (desktop locked) */
  .products__carousel.products-swiper { display: block; max-width: 1097px; margin: 0 auto; }
  .products__list.swiper-wrapper {
    display: flex;
    gap: 0;
    justify-content: flex-start;
    width: auto;
    flex-wrap: nowrap;
  }
  .products-swiper { overflow: hidden; position: relative; }
  .products-swiper .swiper-wrapper { display: flex; }
  .products-swiper .swiper-slide { width: 349.632px; height: auto; }
  .product-card.swiper-slide { height: auto; }

  /* dacă ai overflow hidden undeva pe carousel și îți taie săgețile */
  .products__carousel:not(.products-swiper) { overflow: visible; }
/*
  GRID: [guard stânga] [NAV] [guard dreapta]
  Guard-urile egale => NAV rămâne centrat “real” în viewport.
*/
.site-header__inner{
  height:100%;
  width:100%;
  display:grid;
  grid-template-columns:
    minmax(var(--nav-guard-left), 1fr)
    auto
    minmax(var(--nav-guard-right), 1fr);
  align-items:center;
  padding: 0 var(--page-pad);
}

/* NAV în coloana centrală */
.site-header__nav{
  grid-column: 2;
  display:flex;
  justify-content:center;
  align-items:center;
  min-width:0;
}

.site-header__menu{
  list-style:none;
  margin:0;
  padding:0;
  display:flex;
  align-items:center;
  gap:var(--menu-gap);
}

.site-header__menu a{
  color:var(--color-nav-text);
  text-decoration:none;
  font-family:var(--font-ui);
  font-size:18px;
  font-weight:400;
  text-transform:uppercase;
  letter-spacing:0.2px;
  white-space:nowrap;
}

.site-header__menu a:hover{
  text-decoration:underline;
  text-underline-offset:6px;
}

/* CTA “stă” în dreapta, dar fără să strice centrul */
.site-header__cta{
  grid-column: 3;
  display:flex;
  justify-content:flex-end;
  align-items:center;
}

/* Mobile header/menu hidden by default (enabled in mobile CSS at <=900px) */
.site-header__mobile,
.site-header__mobile-menu{
  display:none;
}

.btn-cta{
  width:var(--cta-w);
  height:var(--cta-h);
  border-radius:var(--cta-radius);
  background:var(--color-white);
  display:inline-flex;
  align-items:center;
  justify-content:center;
  text-decoration:none;

  color:var(--color-cta-text);
  font-family:var(--font-ui);
  font-size:18px;
  font-weight:500;
  text-transform:uppercase;

  box-shadow:0 6px 18px rgba(0,0,0,.18);
}
.btn-cta:hover{ filter:brightness(.98); }
.btn-cta:active{ transform:translateY(1px); }

/* ===============================
   HERO BLUE
   =============================== */
.hero-blue{
  width:100%;
  background:var(--hero-bg);
  position:relative;
  overflow:hidden;

  /* lipire de linia aurie */
  margin-top:-27px;
  z-index:10; /* sub header */
}

/* 2 coloane, full width, fără “centrare de container” care să taie dreapta */
.hero-blue__inner{
  width:100%;
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:40px;
  align-items:center;
  padding: var(--hero-pad-top) 0 var(--hero-pad-bot);
}

/* LEFT block: offset mare (tu ai cerut ~200px) */
.hero-blue__left{
  padding-left: var(--hero-left-offset);
  position:relative;
  z-index:2;
  max-width: 820px;
}

/* prize group wrapper */
.hero-blue__prizes{
  width:100%;
  display:flex;
  justify-content:flex-start;
  margin: 0 0 18px;
}

/* IMPORTANT: fără limitări de mărime (cum ai cerut) */
.hero-blue__prizes-img{
  display:block;
  width:auto;
  height:auto;
  margin-left: var(--prizes-ml);
  user-select:none;
  -webkit-user-drag:none;
}

/* buttons */
.hero-blue__actions{
  display:flex;
  gap:34px;
  justify-content:center;
  align-items:flex-start;
  margin-top:10px;

  /* ca să pice sub grupul de premii (editabil) */
  margin-left: var(--actions-ml);
}

.hero-blue__action{ text-align:center; }

.hero-blue__btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  height:44px;
  padding:0 26px;
  border-radius:100px;
  background:var(--btn-blue);
  color:#FFF;
  text-decoration:none;

  font-family:var(--font-ui);
  font-size:18px;
  font-weight:500;
  text-transform:uppercase;
  white-space:nowrap;
}

.hero-blue__sub{
  margin-top:10px;
  color:var(--btn-blue);
  text-align:center;
  font-family:var(--font-ui);
  font-size:18px;
  font-weight:500;
  line-height:normal;
}

/* RIGHT: lipit de dreapta (cum ai cerut) */
.hero-blue__right{
  position:relative;
  z-index:1;
  display:flex;
  justify-content:flex-end;
  align-items:center;

  /* varianta ta, ca să “iasă” până la marginea viewportului */
  margin-right: calc(100% - 50vw);
  padding-right:0;
}

/* IMPORTANT: fără max-height / max-width */
.hero-blue__scene{
  display:block;
  width:auto;
  height:auto;
  max-width:none;
  margin-left:auto;
}

/* Mobile hero layout hidden on desktop */
.hero-blue__mobile{
  display:none;
}


/* ===============================
   “DESKTOP ÎNGUST” (ex. 1280 la zoom 150%)
   - micșorăm MENIUL și ajustăm offset-urile,
     fără să stricăm PNG-urile din hero.
   =============================== */
@media (max-width: 1360px){
  :root{
    --page-pad: 28px;

    --menu-gap: 26px;

    /* hero offsets mai mici, ca să nu se înghesuie */
    --hero-left-offset: 140px;
    --prizes-ml: 80px;
    --actions-ml: 260px;

    /* CTA puțin mai mic */
    --cta-w: 160px;
  }

  .site-header__menu a{ font-size:16px; }
}

/* dacă chiar se strânge tare, mai reducem gap-ul */
@media (max-width: 1280px){
  :root{
    --menu-gap: 20px;
    --nav-guard-left: 280px;
    --nav-guard-right: 280px;

    --hero-left-offset: 110px;
    --prizes-ml: 40px;
    --actions-ml: 50px;
      /* Hero paddings */
  --hero-pad-top: 36px;
  --hero-pad-bot: 78px;
  }

  .site-header__menu a{ font-size:15px; }

.hero-blue__prizes-img {
    display: block;
    max-width: 457px;
    height: auto;
    margin-left: var(--prizes-ml);
    user-select: none;
    -webkit-user-drag: none;
}
.hero-blue__scene {
    display: block;
    max-width: 512px !important;
    height: auto;
    max-width: none;
    margin-left: auto;
}
.hero-blue__inner {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    padding: var(--hero-pad-top) 0 var(--hero-pad-bot);
}
.hero-blue__actions {
    display: flex;
    gap: 34px;
    justify-content: center;
    align-items: flex-start;
    margin-top: 10px;
    margin-left: var(--actions-ml);
}
}
/* Mobile fallback (tu deja ascunzi nav la <900) */
@media (max-width: 900px){
  .site-header__nav{ display:none; }

  .hero-blue__inner{
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .hero-blue__right{
    margin-right: 0;
    justify-content:center;
  }

  .hero-blue__scene{
    max-width: 92vw; /* aici e ok să limitezi ca să nu rupă layout-ul pe mobile */
  }

  .hero-blue__left{
    padding-left: 16px;
    max-width: none;
  }

  .hero-blue__prizes{
    justify-content:center;
  }

  .hero-blue__actions{
    margin-left: 0;
    justify-content:center;
    flex-wrap:wrap;
  }
}

@media (max-width: 520px){
  :root{
    --logo-hit-w: 220px;
    --logo-hit-h: 110px;
  }

  .hero-blue__actions{
    flex-direction:column;
    gap:18px;
  }
}
/* ===============================
   MID CARD (cutia albă peste albastru + roșu)
   =============================== */

:root{
  --mid-card-max: 1180px;
  --mid-card-radius: 17px;
  --mid-card-pad-y: 26px;
  --mid-card-pad-x: 34px;

  /* cât intră peste albastru (negativ = urcă în albastru) */
  --mid-card-overlap: 68px;

  --mid-card-gap: 36px;
  --mid-step-gap: 42px;

  --mid-icon-size: 44px;
  --mid-packshots-w: 360px;
}

.mid-card{
  position: relative;
  z-index: 30;                 /* peste hero + roșu */
  margin-top: calc(var(--mid-card-overlap) * -1);
  margin-bottom: 34px;         /* spațiu până la conținutul roșu */
}

.mid-card__inner{
  max-width: var(--mid-card-max);
  margin: 0 auto;
  background: #FFF;
  border-radius: var(--mid-card-radius);
  padding: var(--mid-card-pad-y) var(--mid-card-pad-x);
  display: grid;
  grid-template-columns: var(--mid-packshots-w) 1fr;
  gap: var(--mid-card-gap);
  align-items: center;
  box-shadow: 0 10px 30px rgba(0,0,0,.18);
}

.mid-card__packshots img{
  display:block;
  width: 100%;
  height: auto;
}

.mid-card__steps{
  display:flex;
  align-items:flex-start;
  justify-content: space-between;
  gap: var(--mid-step-gap);
}

.mid-card__step{
  flex: 1 1 0;
  min-width: 0;
  display:flex;
  flex-direction: column;
  align-items:center;
  text-align:center;
}

.mid-card__icon{
  width: var(--mid-icon-size);
  height: auto;
  display:block;
  margin-bottom: 12px;
}

.mid-card__txt{
  color: #043C7A;
  text-align: center;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}

.mid-card__u{
  color: inherit;
  text-decoration-line: underline;
  text-decoration-style: solid;
  text-decoration-skip-ink: auto;
  text-decoration-thickness: auto;
  text-underline-offset: auto;
  text-underline-position: from-font;
}
.mid-card__u:visited,
.mid-card__u:hover,
.mid-card__u:active,
.mid-card__u:focus{
  color: inherit;
}

/* ===============================
   Desktop îngust (zoom 150% ~ 1280)
   =============================== */
@media (max-width: 1280px){
  :root{
    --mid-card-max: 1040px;
    --mid-packshots-w: 320px;
    --mid-card-gap: 26px;
    --mid-step-gap: 28px;
    --mid-icon-size: 40px;
    --mid-card-overlap: 58px;
  }

  .mid-card__txt{ font-size: 16px; }
}

/* ===============================
   Sub 980px: stack elegant
   =============================== */
@media (max-width: 980px){
  :root{
    --mid-card-max: 92vw;
    --mid-packshots-w: 1fr;
    --mid-card-overlap: 44px;
  }

  .mid-card__inner{
    grid-template-columns: 1fr;
    justify-items: center;
    text-align:center;
  }

  .mid-card__packshots img{
    width: min(420px, 90%);
  }

  .mid-card__steps{
    width: 100%;
    justify-content: center;
    flex-wrap: wrap;
    gap: 22px 26px;
  }

  .mid-card__step{
    flex: 0 1 220px;
  }
}
/* ===============================
   FORM (MECANISM) — Figma match
   =============================== */

:root{
  --form-max: 593px;
  --form-field-h: 58px;

  --form-border: #EC1C24;
  --form-input-text: #3E3E3E;

  --form-btn-w: 217px;
  --form-btn-h: 47px;

  --form-btn-text: #77101E;
  --form-btn-gold: #FFED9B;
}

.bp-form{
  position: relative;
  width: 100%;
  padding: 64px 0 96px;
  color: #fff;
}

.bp-form__inner{
  max-width: 860px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.bp-form__header{
  text-align: center;
  margin-bottom: 26px;
}

.bp-form__title{
  color: #FFF;
  text-align: center;
  font-family: "Henriette", Georgia, "Times New Roman", serif;
  font-size: 30px;
  font-style: normal;
  font-weight: 400;
  line-height: 140%;
}

.bp-form__subtitle{
  margin-top: 4px;
  color: #FFF;
  text-align: center;
  font-family: "Henriette", Georgia, "Times New Roman", serif;
  font-size: 30px;
  font-style: italic;
  font-weight: 700;
  line-height: 140%;
}

.bp-form__form{
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.bp-form__grid{
  width: min(100%, calc(var(--form-max) * 1));
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px 16px;
  align-items: center;
}

.bp-field--full{ grid-column: 1 / -1; }
.bp-field--half{ grid-column: auto; }

.bp-input{
  width: 100%;
  height: var(--form-field-h);
  border-radius: 10px;
  border: 2px solid var(--form-border);
  background: #FFF;

  padding: 0 22px;

  color: var(--form-input-text);
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 300;
  line-height: 140%;

  outline: none;
}

.bp-input::placeholder{
  color: var(--form-input-text);
  opacity: 1;
}

.bp-input:focus{
  box-shadow: 0 0 0 3px rgba(236, 28, 36, 0.18);
}

.bp-form .invalid-feedback{
  color: #fff;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.35);
}

/* Captcha row */
.bp-captcha{
  width: 100%;
  height: var(--form-field-h);
  display: flex;
  align-items: center;
  gap: 12px;
}

.bp-captcha__img{
  height: var(--form-field-h);
  width: auto;
  border-radius: 10px;
  display: block;
}

.bp-captcha__reload{
  height: var(--form-field-h);
  width: var(--form-field-h);
  border-radius: 10px;
  border: 0;
  cursor: pointer;
  background: var(--form-btn-gold);
  color: #111;
  font-size: 22px;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 18px rgba(0,0,0,.18);
}

.bp-captcha__reload:active{ transform: translateY(1px); }

/* Checks */
.bp-form__checks{
  width: min(100%, var(--form-max));
  margin-top: 14px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.bp-check{
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
}

.bp-check__box{
  width: 18px;
  height: 18px;
  border-radius: 4px;
  accent-color: #fff; /* ok modern browsers */
}

.bp-check__text{
  color: #FFF;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 140%;
}

.bp-link{
  color: #FFF;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.bp-link--gold{
  color: gold;
}

/* Disclaimer */
.bp-form__disclaimer{
  width: min(100%, var(--form-max));
  margin: 10px 0 0;
  color: rgba(255,255,255,.9);
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-size: 12px;
  font-weight: 400;
  line-height: 140%;
}

.bp-form__status{
  width: min(100%, var(--form-max));
  margin-top: 10px;
  min-height: 20px;
}

/* Actions */
.bp-form__actions{
  width: min(100%, var(--form-max));
  margin-top: 18px;
  display: flex;
  justify-content: center;
  gap: 22px;
}

.bp-btn{
  width: var(--form-btn-w);
  height: var(--form-btn-h);
  border-radius: 100px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  cursor: pointer;
  border: 0;

  color: var(--form-btn-text);
  text-align: center;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  text-transform: uppercase;

  box-shadow: 0 10px 18px rgba(0,0,0,.22);
}

.bp-btn--white{ background: #FFF; }
.bp-btn--gold{ background: var(--form-btn-gold); }

.bp-btn:active{ transform: translateY(1px); }

/* Desktop îngust (zoom 150% / ~1280) */
@media (max-width: 1280px){
  .bp-form{ padding: 54px 0 82px; }

  .bp-form__grid{
    width: min(100%, 560px);
    gap: 12px 14px;
  }

  :root{
    --form-max: 560px;
  }
}

/* Dacă se strânge prea tare (fără a intra în mobile) */
@media (max-width: 980px){
  .bp-form__grid{
    grid-template-columns: 1fr;
  }
  .bp-field--half{ grid-column: 1 / -1; }
  .bp-form__actions{
    flex-direction: column;
    align-items: center;
  }
}
/* ===============================
   DAILY GAME (Maestrul Brânzeturilor)
   =============================== */

.daily-game{
  padding: 56px 0 90px;
}

.daily-game__head{
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 48px;
  text-align: center;
}

.daily-game__title{
  color:#FFF;
  text-align:center;
  font-family: Henriette, Georgia, "Times New Roman", serif;
  font-size: 30px;
  font-style: normal;
  font-weight: 400;
  line-height: 140%;
}

.daily-game__subtitle{
  margin-top: 6px;
  color:#FFF;
  font-family: Henriette, Georgia, "Times New Roman", serif;
  font-size: 30px;
  font-style: italic;
  font-weight: 700;
  line-height: 140%;
}

.daily-game__card{
  position: relative;
  max-width: 980px;
  margin: 26px auto 0;
  border-radius: 17px;
  background: #FFF url("/assets/ui/desktop/fundal text.png") center/cover no-repeat;
  box-shadow: 0 12px 28px rgba(0,0,0,.18);
  padding: 52px 70px 60px;
  overflow: hidden;
}

.daily-game__flags{
  position: absolute;
  top: 0;
  height: 110px;
  width: auto;
  user-select: none;
  -webkit-user-drag: none;
  pointer-events: none;
}

.daily-game__flags--left{
  left: 0;
}

.daily-game__flags--right{
  right: 0;
}

.daily-game__bonjour{
  display:block;
  margin: 0 auto 18px;
  width: auto;
  height: auto;
  user-select:none;
  -webkit-user-drag:none;
}

.daily-game__h2{
  margin: 0 0 18px;
  color: #77101E;
  text-align: center;
  font-family: Henriette, Georgia, "Times New Roman", serif;
  font-size: 55px;
  font-style: normal;
  font-weight: 700;
  line-height: 94%;
}

.daily-game__p{
  margin: 0 auto 26px;
  max-width: 720px;
  color: #77101E;
  text-align: center;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-size: 20px;
  font-style: normal;
  font-weight: 300;
  line-height: 150%;
}

.daily-game__btn{
  width: 211px;
  height: 50px;
  margin: 0 auto;
  border-radius: 100px;
  background: #77101E;

  display: flex;
  
  align-items: center;
  justify-content: center;

  color: #FFF;
  text-align: center;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 140%;
  text-decoration: none;
}

.daily-game__btn:hover{ filter: brightness(1.05); }
.daily-game__btn:active{ transform: translateY(1px); }

/* Desktop îngust (ex. 1280 la zoom 150%) */
@media (max-width: 1280px){
  .daily-game{
    padding: 46px 0 76px;
  }

  .daily-game__head{
    padding: 0 28px;
  }

  .daily-game__card{
    max-width: 920px;
    padding: 44px 46px 52px;
  }

  .daily-game__flags{
    height: 96px;
  }

  .daily-game__h2{
    font-size: 46px;
  }

  .daily-game__p{
    font-size: 18px;
  }
}

/* Tablet-ish */
@media (max-width: 900px){
  .daily-game__head{
    padding: 0 16px;
  }

  .daily-game__card{
    margin-top: 18px;
    padding: 34px 22px 40px;
  }

  .daily-game__flags{
    display: none;
  }

  .daily-game__h2{
    font-size: 40px;
  }

  .daily-game__title,
  .daily-game__subtitle{
    font-size: 26px;
  }
}

/* ===============================
   PRODUSE PARTICIPANTE
   =============================== */
.products{
  width:100%;
  background:#F1E4DF;
  padding: 56px 0 72px;
}

.products__inner{
  max-width: var(--page-max);
  margin: 0 auto;
  padding: 0 var(--page-pad);
  text-align: center;
  position: relative;
}

.products__title{
  margin: 0 0 8px;
  color:#77101E;
  text-align:center;
  font-family: Henriette, serif;
  font-size: 30px;
  font-style: normal;
  font-weight: 800;
  line-height: 140%;
}

.products__subtitle{
  margin: 0 0 28px;
  color:#77101E;
  text-align:center;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 140%;
}

.products__carousel-wrap{
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 26px;
  width: 100%;
}

.products__carousel{
  position: relative;
  width: 100%;
  overflow: hidden;
}

.products__list{
  display:flex;
  align-items:stretch;
  justify-content:center;
  gap: 26px;
  width: 100%;
}

.products__nav{
  appearance:none;
  border:0;
  background:transparent;
  color:#E10600;
  font-size: 28px;
  line-height: 1;
  padding: 0;
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor:pointer;
  user-select:none;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
}

.products__nav:active{ transform: translateY(-50%); }

.products__nav--prev { left: 8px; }
.products__nav--next { right: 8px; }
.products__nav svg { width: 15px; height: 15px; display: block; }
.products__nav path { fill: #ED1C2E; stroke: #ED1C2E; stroke-width: 2px; }

.product-card{
  width: 349.632px;
  height: 364px;
  border-radius: 10px;
  background:#FFF;
  box-shadow: 0 4px 10px rgba(0,0,0,.25);
  overflow:hidden;
  text-align:left;
  display:flex;
  flex-direction: column;
}

.product-card__img{
  height: 210px;
  display:flex;
  align-items:center;
  justify-content:center;
  padding: 18px 18px 10px;
}

.product-card__img img{
  display:block;
  max-width: 100%;
  max-height: 100%;
  width:auto;
  height:auto;
}

.product-card__meta{
  padding: 10px 18px 18px;
}

.product-card__name{
  color:#77101E;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 600;
  line-height: 140%;
  margin: 0 0 4px;
}

.product-card__size{
  color:#77101E;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 140%;
  margin: 0;
}

/* Swiper overrides (desktop locked) */
.products__carousel.products-swiper { display: block; max-width: 1097px; margin: 0 auto; }
.products__list.swiper-wrapper {
  display: flex;
  gap: 0;
  justify-content: flex-start;
  width: auto;
  flex-wrap: nowrap;
}
.products-swiper { overflow: hidden; position: relative; }
.products-swiper .swiper-wrapper { display: flex; }
.products-swiper .swiper-slide { width: 349.632px; height: auto; }
.product-card.swiper-slide { height: auto; }

/* dacă ai overflow hidden undeva pe carousel și îți taie săgețile */
.products__carousel:not(.products-swiper) { overflow: visible; }
@media (max-width: 1280px){
  .products{
    padding: 46px 0 64px;
  }
  .products__list{
    gap: 18px;
  }
  .product-card{
    width: 320px;
    height: 340px;
  }
}

/* sub ~980: 2 pe rând (fără carousel JS) */
@media (max-width: 980px){
  .products__carousel{
    gap: 12px;
  }
  .products__list{
    flex-wrap: wrap;
  }
  .product-card{
    width: min(360px, 92vw);
    height: auto;
  }
}

/* pe mobil: ascund săgețile (orice “carusel” real îl facem după) */
@media (max-width: 640px){
  .products__nav{ display:none; }
}

/* ===============================
   PAGINI: CÂȘTIGĂTORI / COOKIES
   =============================== */
.mecanica-castigatori{
  max-width: 1440px;
  margin: 30px auto 24px;
  padding: 24px 24px 18px;
  background: #FFF;
  border-radius: 10px;
}

.mecanica-castigatori .title-castigatori{
  margin: 0 auto;
}
/* ===============================
   FOOTER (full width + bg image + inner radial card)
   =============================== */

.site-footer{
  width:100%;
  position:relative;
  padding: 470px 0 80px;

  background-image: url("/assets/ui/desktop/RGB%20Paris%201.png");
  background-repeat: no-repeat;
  background-position: center top;

  /* NU mai taie lateralele */
  background-size: 100% auto; /* echivalent “folosește toată lățimea” */
  /* alternativ: background-size: contain; */
}


.site-footer__inner{
  width: 100%;
  padding: 0 var(--page-pad);
  display: flex;
  justify-content: center;
}

.site-footer__card{
  width: min(1321px, 100%);
  border-radius: 17px;
  background: radial-gradient(71.75% 71.75% at 50% 50%, #E20613 0%, #8D1003 76%, #8D1003 100%);
  padding: 34px 56px 30px;
  box-shadow: 0 10px 28px rgba(0,0,0,.25);
}

.site-footer__text{
  margin: 0;
  color: #FFF;
  text-align: center;
  font-family: var(--font-ui);
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 140%;
}

.site-footer__social{
  margin-top: 18px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 18px;
}

.site-footer__social-link{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  text-decoration: none;
}

.site-footer__social-link img{
  display: block;
  width: auto;
  height: 28px;
  user-select: none;
  -webkit-user-drag: none;
}

.site-footer__divider{
  margin: 18px auto 16px;
  width: min(860px, 100%);
  height: 1px;
  background: #FFF;
  opacity: .9;
}

.site-footer__links{
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  text-align: center;
}

.site-footer__link,
.site-footer__sep{
  color: #FFF;
  font-family: var(--font-ui);
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 140%;
  letter-spacing: 0.18px;
}

.site-footer__link{
  text-decoration: none;
}

.site-footer__link:hover{
  text-decoration: underline;
  text-underline-offset: 4px;
}

/* îngustări (desktop mic / zoom) */
@media (max-width: 1280px){
  .site-footer{
    padding: 254px 0 66px;
  }
  .site-footer__card{
    padding: 28px 30px 26px;
  }
  .site-footer__link,
  .site-footer__sep{
    font-size: 16px;
  }
}

/* ===============================
   SANDBOX PLACEHOLDERS (dev only)
   =============================== */
.sandbox-main{
  width:100%;
  padding: 32px 0 0;
  position:relative;
  z-index:1;
}

.sandbox-card{
  max-width:var(--page-max);
  margin: 0 auto;
  padding:18px var(--page-pad);
  background:#dbe8ff;
  border-radius:10px;
  min-height:240px;
  box-shadow:0 2px 0 rgba(0,0,0,.04) inset;
}
.sandbox-card__title{
  font-size:12px;
  opacity:.75;
}

.sandbox-footer{
  padding:36px 0 60px;
  text-align:center;
  color:#eee;
  font-size:11px;
}
