/* ============================================
   SMART BUONO - Landing Page Styles
   Mobile-first responsive design
   ============================================ */

/* --- DESIGN TOKENS --- */
:root {
  --color-primary: #3DBFFF;
  --color-primary-dark: #173a4d;
  --color-text: #1a1a1a;
  --color-text-secondary: #555;
  --color-text-light: #333;
  --color-bg: #ffffff;
  --color-bg-light: #eaf7ff;
  --color-border: #dcdcdc;
  --color-error: #d32f2f;
  --color-success: #2e7d32;
  --font-family: 'Rethink Sans', system-ui, sans-serif;
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 32px;
  --radius-full: 999px;
}

/* --- RESET & BASE --- */
*,
*::before,
*::after {
  box-sizing: border-box;
}

* {
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

body {
  font-family: var(--font-family);
  font-size: 16px;
  line-height: 1.6;
  color: var(--color-text);
  background: var(--color-bg);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

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

ul {
  list-style: none;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

input,
textarea {
  font-family: inherit;
}

/* --- FOCUS VISIBLE --- */
:focus-visible {
  outline: 3px solid var(--color-primary);
  outline-offset: 2px;
  border-radius: 4px;
}

/* --- REDUCED MOTION --- */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* ============================================
   HEADER
   ============================================ */
.header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--color-bg);
  padding: 16px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header__logo {
  display: flex;
  align-items: center;
  line-height: 0;
}

.header__logo-img {
  height: 28px;
  width: auto;
  max-width: 100%;
  object-fit: contain;
}

.header__nav-link {
  background: var(--color-primary);
  color: var(--color-primary-dark);
  font-size: 15px;
  font-weight: 600;
  padding: 13px 26px;
  border-radius: var(--radius-full);
  transition: transform 0.3s ease-out, box-shadow 0.3s ease-out;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
}

.header__nav-link:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(61, 191, 255, 0.35);
}

/* ============================================
   HERO
   ============================================ */
.hero {
  background: var(--color-bg);
  padding: 40px 20px 48px;
  overflow: hidden;
}

.hero__container {
  position: relative;
  width: 100%;
  margin: 0 auto;
}

/* Mobile: show mobile image, hide collage */
.hero__mobile-img {
  display: block;
  width: 100%;
  margin-bottom: 32px;
  border-radius: var(--radius-md);
  overflow: hidden;
}

.hero__mobile-img-element {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: var(--radius-md);
}

.hero__collage {
  display: none;
}

.hero__content {
  text-align: center;
  padding: 0 12px;
}

.hero__title {
  font-size: clamp(2rem, 6vw, 3.25rem);
  font-weight: 800;
  letter-spacing: -1.5px;
  line-height: 1.05;
  margin-bottom: 14px;
}

.hero__subtitle {
  max-width: 420px;
  margin: 0 auto 24px;
  font-size: 16px;
  font-weight: 400;
  color: #444;
  line-height: 1.5;
}

.hero__cta {
  display: inline-block;
  background: var(--color-primary);
  color: var(--color-primary-dark);
  font-size: 15px;
  font-weight: 600;
  padding: 13px 26px;
  border-radius: var(--radius-full);
  transition: transform 0.3s ease-out, box-shadow 0.3s ease-out;
  min-height: 44px;
}

.hero__cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(61, 191, 255, 0.35);
}

.hero__img {
  border-radius: 18px;
  object-fit: cover;
  width: 100%;
  height: 100%;
}

/* ============================================
   BLUE BAND
   ============================================ */
.band {
  background: var(--color-primary);
  text-align: center;
  padding: 48px 20px 56px;
}

.band__label {
  margin-bottom: 16px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  color: var(--color-bg-light);
  text-transform: uppercase;
}

.band__title {
  font-size: clamp(1.75rem, 5vw, 2.625rem);
  font-weight: 500;
  color: var(--color-bg);
  letter-spacing: -0.5px;
  margin-bottom: 14px;
}

.band__text {
  max-width: 680px;
  margin: 0 auto;
  font-size: 16px;
  font-weight: 400;
  color: #f2fbff;
  line-height: 1.5;
}

/* ============================================
   APP SECTION
   ============================================ */
.app {
  background: var(--color-bg);
  padding: 64px 20px;
}

.app__title {
  text-align: center;
  font-size: clamp(1.5rem, 4vw, 2.125rem);
  font-weight: 700;
  letter-spacing: -0.5px;
  line-height: 1.15;
  margin-bottom: 48px;
}

.app__row {
  max-width: 1000px;
  margin: 0 auto 56px;
  display: flex;
  flex-direction: column;
  gap: 32px;
  align-items: center;
}

.app__row:last-child {
  margin-bottom: 0;
}

.app__phones {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 16px;
}


.app__phone-screen {
  width: 150px;
  height: 312px;
  border-radius: 24px;
  object-fit: cover;
}

.app__features {
  display: flex;
  flex-direction: column;
  gap: 28px;
  max-width: 480px;
}

.app__feature-title {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 8px;
}

.app__feature-text {
  font-size: 14px;
  color: var(--color-text-secondary);
  line-height: 1.6;
  max-width: 55ch;
}

/* ============================================
   PARTNERS - GRID STATICA + SCROLL MOBILE
   ============================================ */
.partners {
  background: var(--color-primary);
  text-align: center;
  padding: 48px 20px 56px;
}

.partners__title {
  font-size: clamp(1.25rem, 3.5vw, 1.75rem);
  font-weight: 700;
  color: var(--color-bg);
  margin-bottom: 12px;
}

.partners__text {
  max-width: 620px;
  margin: 0 auto 32px;
  font-size: 14px;
  color: var(--color-bg-light);
  line-height: 1.5;
}

/* Mobile: scroll orizzontale, 2 loghi visibili alla volta */
.partners__grid {
  display: flex;
  flex-wrap: nowrap;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  gap: 12px;
  padding-bottom: 12px;
  max-width: 1200px;
  margin: 0 auto;
  scrollbar-width: thin;
  scrollbar-color: rgba(255, 255, 255, 0.4) transparent;
}

.partners__grid::-webkit-scrollbar {
  height: 4px;
}

.partners__grid::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.4);
  border-radius: 2px;
}

.partners__logo-card {
  background: var(--color-bg);
  border-radius: var(--radius-sm);
  height: 90px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px;
  transition: transform 0.3s ease-out, box-shadow 0.3s ease-out;
  flex: 0 0 calc(50% - 6px);
  scroll-snap-align: start;
}

.partners__logo-card:hover {
  transform: scale(1.08);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
}

.partners__logo {
  width: 100%;
  height: 100%;
  object-fit: contain;
  max-width: 100%;
  max-height: 100%;
}

/* Desktop (1024px+): griglia statica 9 colonne x 2 righe */
@media (min-width: 1024px) {
  .partners {
    padding: 56px 24px 64px;
  }

  .partners__grid {
    display: grid;
    grid-template-columns: repeat(9, 1fr);
    overflow-x: visible;
    gap: 16px;
    padding-bottom: 0;
    scrollbar-width: auto;
  }

  .partners__logo-card {
    height: 100px;
    padding: 16px;
  }
}

/* ============================================
   BENEFITS
   ============================================ */
.benefits {
  background: var(--color-bg);
  padding: 64px 20px 96px;
}

.benefits__header {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 48px;
}

.benefits__title {
  font-size: clamp(1.5rem, 4vw, 2rem);
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -0.5px;
  margin-bottom: 16px;
}

.benefits__title-accent {
  color: var(--color-primary);
}

.benefits__subtitle {
  max-width: 560px;
  margin: 0 auto;
  font-size: 15px;
  color: var(--color-text-secondary);
  line-height: 1.6;
}

.benefits__list {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 48px;
}

.benefits__item {
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: center;
}

.benefits__item-img-wrapper {
  width: 100%;
  max-width: 360px;
}

.benefits__item-img {
  border-radius: var(--radius-md);
  object-fit: cover;
  width: 100%;
  height: auto;
}

.benefits__item-img--full {
  width: 100%;
  max-width: 100%;
  border-radius: var(--radius-md);
}

.benefits__item-full {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.benefits__item-full-caption {
  text-align: center;
  font-size: 16px;
  line-height: 1.6;
  color: var(--color-text-secondary);
  max-width: 720px;
  margin: 0 auto;
}

.benefits__item-content {
  width: 100%;
  max-width: 480px;
}

.benefits__item-title {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 16px;
}

.benefits__item-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.benefits__item-list li {
  font-size: 15px;
  color: var(--color-text-light);
  padding-left: 22px;
  position: relative;
}

.benefits__item-list li::before {
  content: '\2022';
  position: absolute;
  left: 0;
  color: var(--color-primary);
  font-weight: 700;
}

/* ============================================
   CONTACT FORM
   ============================================ */
.contact {
  background: var(--color-bg);
  padding: 24px 20px 80px;
}

.contact__header {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 12px;
}

.contact__title {
  font-size: clamp(1.5rem, 4vw, 2rem);
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -0.5px;
  margin-bottom: 16px;
}

.contact__subtitle {
  max-width: 600px;
  margin: 0 auto 40px;
  font-size: 15px;
  color: var(--color-text-secondary);
  line-height: 1.6;
}

.contact__form {
  max-width: 620px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* Honeypot - visually hidden */
.contact__hp {
  position: absolute;
  left: -9999px;
  opacity: 0;
  height: 0;
  overflow: hidden;
}

.contact__form-row {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact__field {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.contact__label {
  font-size: 14px;
  font-weight: 500;
  color: var(--color-text);
}

.contact__required {
  color: var(--color-error);
}

.contact__input {
  font-size: 14px;
  padding: 13px 16px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  outline: none;
  transition: border-color 0.3s ease-out;
  min-height: 44px;
}

.contact__input:focus {
  border-color: var(--color-primary);
}

.contact__input--error {
  border-color: var(--color-error);
}

.contact__input--textarea {
  resize: vertical;
  min-height: 100px;
}

.contact__error {
  font-size: 12px;
  color: var(--color-error);
  min-height: 0;
  transition: min-height 0.3s ease-out;
}

.contact__error:not(:empty) {
  min-height: 18px;
}

/* Checkbox privacy */
.contact__field--checkbox {
  margin-top: 8px;
}

.contact__checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  cursor: pointer;
  font-size: 14px;
  line-height: 1.5;
  color: var(--color-text-secondary);
}

.contact__checkbox {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  margin-top: 2px;
  cursor: pointer;
  accent-color: var(--color-primary);
  min-width: 20px;
  min-height: 20px;
}

.contact__checkbox-text {
  flex: 1;
}

.contact__link {
  color: var(--color-primary);
  text-decoration: underline;
  transition: color 0.3s ease-out;
}

.contact__link:hover,
.contact__link:focus-visible {
  color: var(--color-primary-dark);
}

.contact__submit {
  align-self: center;
  margin-top: 8px;
  background: var(--color-primary);
  color: var(--color-primary-dark);
  font-size: 15px;
  font-weight: 600;
  padding: 14px 32px;
  border-radius: var(--radius-full);
  transition: transform 0.3s ease-out, box-shadow 0.3s ease-out, opacity 0.3s ease-out;
  min-height: 44px;
  min-width: 44px;
}

.contact__submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(61, 191, 255, 0.35);
}

.contact__submit:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

.contact__feedback {
  text-align: center;
  padding: 14px 20px;
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-weight: 500;
}

.contact__feedback--success {
  background: #e8f5e9;
  color: var(--color-success);
}

.contact__feedback--error {
  background: #ffebee;
  color: var(--color-error);
}

/* ============================================
   CTA FINALE
   ============================================ */
.cta-finale {
  background: var(--color-bg);
  padding: 64px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.cta-finale__content {
  max-width: 600px;
  margin-bottom: 40px;
}

.cta-finale__title {
  font-size: clamp(1.5rem, 4vw, 2.25rem);
  font-weight: 700;
  color: var(--color-text);
  line-height: 1.2;
  letter-spacing: -0.5px;
  margin-bottom: 14px;
}

.cta-finale__text {
  font-size: 15px;
  color: var(--color-text-secondary);
  line-height: 1.6;
  max-width: 55ch;
  margin: 0 auto;
}

.cta-finale__phone {
  position: relative;
}

.cta-finale__phone-screen {
  width: 150px;
  height: 312px;
  border-radius: 24px;
  object-fit: cover;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: none;
}

.footer__wave-section {
  background: var(--color-bg);
  padding-top: 8px;
  position: relative;
  text-align: center;
}

.footer__logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: -40px;
  padding: 12px 24px;
  line-height: 0;
  position: relative;
  z-index: 10;
  /*background: var(--color-bg);
  border-radius: var(--radius-full);*/
}

.footer__logo-img {
  height: 24px;
  width: auto;
  max-width: 100%;
  object-fit: contain;
}

.footer__wave {
  position: relative;
  line-height: 0;
  margin-top: 0;
  margin-bottom: -10px;
  width: 100%;
}

.footer__wave svg {
  width: 100%;
  height: 80px;
  display: block;
}

.footer__content {
  background: var(--color-primary);
  padding: 40px 20px 24px;
  text-align: center;
}

.footer__links {
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: center;
  margin-bottom: 20px;
}

.footer__link {
  font-size: 13px;
  color: var(--color-primary-dark);
  font-weight: 500;
  transition: opacity 0.3s ease-out;
  padding: 4px 0;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
}

.footer__link:hover {
  opacity: 0.8;
}

.footer__company {
  font-size: 12px;
  color: var(--color-primary-dark);
  opacity: 0.75;
  line-height: 1.7;
  margin-bottom: 20px;
}

.footer__copy {
  font-size: 13px;
  color: var(--color-primary-dark);
  opacity: 0.7;
}

/* ============================================
   RESPONSIVE - TABLET (>= 768px)
   ============================================ */
@media (min-width: 768px) {
  .header {
    padding: 18px 24px;
  }

  .header__logo-img {
    height: 32px;
  }

  .header__nav-link {
    padding: 13px 20px;
    font-size: 14px;
  }

  /* Hero tablet: mantieni layout mobile (immagine + testo), migliora padding */
  .hero {
    padding: 48px 32px 56px;
  }

  .hero__mobile-img {
    max-width: 560px;
    margin: 0 auto 40px;
  }

  .hero__subtitle {
    max-width: 520px;
  }

  /* App section: 2-column grid */
  .app {
    padding: 80px 24px;
  }

  .app__row {
    flex-direction: row;
    gap: 48px;
  }

  .app__row--reverse {
    flex-direction: row-reverse;
  }

  .app__phones {
    gap: 18px;
  }

/* Benefits: grid layout */
  .benefits__item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
  }

  .benefits__item-img-wrapper {
    max-width: none;
  }

  .benefits__item-content {
    max-width: none;
  }

  /* Form: 2-column rows */
  .contact__form-row {
    flex-direction: row;
    gap: 16px;
  }

  .contact__form-row .contact__field {
    flex: 1;
  }

  /* Footer */
  .footer__wave svg {
    height: 100px;
  }

  .footer__logo {
    margin-bottom: -50px;
    padding: 16px 32px;
  }

  .footer__logo-img {
    height: 28px;
  }

  .footer__links {
    flex-direction: row;
    gap: 24px;
    justify-content: center;
  }

  .footer__content {
    padding: 48px 24px 28px;
  }
}

/* ============================================
   RESPONSIVE - DESKTOP (>= 1024px)
   ============================================ */
@media (min-width: 1024px) {
  /* Hero: abilita collage da desktop in su */
  .hero {
    padding: 0;
  }

  .hero__mobile-img {
    display: none;
  }

  .hero__collage {
    display: block;
    position: relative;
    height: 750px;
    max-height: 90vh;
    width: 100%;
  }

  .hero__img-wrapper {
    position: absolute;
    overflow: hidden;
    border-radius: 16px;
  }

  .hero__content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    max-width: 620px;
    z-index: 10;
    padding: 0 30px;
    text-align: center;
  }

  .hero__container {
    min-height: 750px;
    max-height: 90vh;
    width: 100%;
    max-width: 100%;
  }

  /* 1. Top left - donna al bar (ROSSO) */
  .hero__img-wrapper--1 {
    top: 30px;
    left: 16%;
    width: 190px;
    height: 228px;
  }

  /* 2. Top right - pagamento smartphone ristorante (VERDE ACQUA) */
  .hero__img-wrapper--2 {
    top: 25px;
    right: 14%;
    width: 280px;
    height: 190px;
  }

  /* 3. Center left - uomo con smartphone (VERDE CHIARO) */
  .hero__img-wrapper--3 {
    top: 280px;
    left: 3%;
    width: 175px;
    height: 224px;
  }

  /* 4. Bottom left - tavolata dall'alto (CORALLO) */
  .hero__img-wrapper--4 {
    top: 525px;
    left: 14%;
    width: 300px;
    height: 215px;
  }

  /* 5. Middle right - donna al supermercato (VIOLA) */
  .hero__img-wrapper--5 {
    top: 235px;
    right: 9%;
    width: 175px;
    height: 210px;
  }

  /* 6. Bottom right - pranzo tra persone (ROSA) */
  .hero__img-wrapper--6 {
    top: 465px;
    right: 14%;
    width: 280px;
    height: 200px;
  }

  .hero__title {
    font-size: 52px;
  }

  /* Band */
  .band {
    padding: 56px 24px 64px;
  }

  /* App */
  .app__title {
    margin-bottom: 56px;
  }

  .app__row {
    margin-bottom: 72px;
  }

  .app__feature-title {
    font-size: 20px;
  }

  /* Benefits */
  .benefits {
    padding: 80px 24px 120px;
  }

  .benefits__list {
    gap: 56px;
  }

  .benefits__header {
    margin-bottom: 56px;
  }

  /* Contact */
  .contact {
    padding: 24px 24px 96px;
  }

  /* CTA Finale */
  .cta-finale {
    padding: 80px 24px;
  }
}

/* ============================================
   RESPONSIVE - LARGE (>= 1280px)
   ============================================ */
@media (min-width: 1280px) {
  .hero__container {
    min-height: 850px;
    max-height: 92vh;
    width: 100%;
    max-width: 100%;
  }

  .hero__collage {
    height: 850px;
    max-height: 92vh;
    width: 100%;
  }

  /* 1. Top left - donna al bar (ROSSO) */
  .hero__img-wrapper--1 {
    top: 40px;
    left: 15%;
    width: 220px;
    height: 264px;
  }

  /* 2. Top right - pagamento smartphone ristorante (VERDE ACQUA) */
  .hero__img-wrapper--2 {
    top: 35px;
    right: 13%;
    width: 320px;
    height: 217px;
  }

  /* 3. Center left - uomo con smartphone (VERDE CHIARO) */
  .hero__img-wrapper--3 {
    top: 325px;
    left: 4%;
    width: 200px;
    height: 256px;
  }

  /* 4. Bottom left - tavolata dall'alto (CORALLO) */
  .hero__img-wrapper--4 {
    top: 600px;
    left: 13%;
    width: 345px;
    height: 240px;
  }

  /* 5. Middle right - donna al supermercato (VIOLA) */
  .hero__img-wrapper--5 {
    top: 270px;
    right: 8%;
    width: 200px;
    height: 240px;
  }

  /* 6. Bottom right - pranzo tra persone (ROSA) */
  .hero__img-wrapper--6 {
    top: 530px;
    right: 13%;
    width: 320px;
    height: 225px;
  }

  .hero__content {
    max-width: 700px;
    padding: 0 40px;
  }
}

/* ============================================
   COOKIE BANNER
   ============================================ */

.cookie-banner {
  position: fixed;
  bottom: 16px;
  left: 16px;
  right: 16px;
  margin: 0 auto;
  max-width: 360px;
  background: var(--color-primary-dark);
  color: #fff;
  z-index: 9999;
  padding: 16px 18px;
  border-radius: var(--radius-md);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.25);
  transform: translateY(20px);
  opacity: 0;
  transition: transform 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              opacity 0.35s ease;
}

.cookie-banner--visible {
  transform: translateY(0);
  opacity: 1;
}

.cookie-banner__text {
  font-size: 0.8rem;
  line-height: 1.55;
  margin: 0 0 12px;
}

.cookie-banner__link {
  color: var(--color-primary);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.cookie-banner__link:hover,
.cookie-banner__link:focus-visible {
  color: #fff;
}

.cookie-banner__btn {
  display: block;
  width: 100%;
  background: var(--color-primary);
  color: var(--color-primary-dark);
  border: none;
  padding: 9px 16px;
  border-radius: var(--radius-full);
  font-family: var(--font-family);
  font-size: 0.8rem;
  font-weight: 700;
  cursor: pointer;
  min-height: 44px;
  transition: background 0.2s, transform 0.1s;
}

.cookie-banner__btn:hover {
  background: #fff;
}

.cookie-banner__btn:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 3px;
}

.cookie-banner__btn:active {
  transform: scale(0.97);
}

@media (prefers-reduced-motion: reduce) {
  .cookie-banner {
    transition: none;
  }
}

@media (min-width: 1024px) {
  .cookie-banner {
    left: auto;
    right: 24px;
    margin: 0;
    width: 280px;
    max-width: none;
    bottom: 24px;
  }
}
