/* =========================================================
   NEON DARK THEME — Videogame WhatsApp-like wallpaper
   Layout invariato, colori rinnovati
   ========================================================= */


.btn-add {
  display: inline-block;
  background: #7a1430;
  color: #fff;
  padding: 12px 18px;
  border: 0;
  border-radius: 10px;
  font-weight: 800;
  cursor: pointer;
}

.btn-add:hover {
  filter: brightness(1.03);
}



/* --------- DOLCI-VEGANI.PHP --------- */

:root {
  --brand: #7a1430;
  --text: #1a1a1a;
  --muted: #6a6a6a;
  --border: rgba(0, 0, 0, .08);
  --bg-page: #fff;
  --bg-soft: #efefef;
  --shadow: 0 10px 30px rgba(0, 0, 0, .08);
  --radius-lg: 14px;
  --radius-md: 10px;
  --radius-sm: 4px;
  --container-max: 1240px;
  --content-max: 900px;
  --topbar-h: 118px;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background: var(--bg-page);
  color: var(--text);
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial;
  overflow-x: hidden;
  line-height: 1.5;
}

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

a {
  color: var(--text);
  text-decoration: none;
}

a:hover {
  color: var(--brand);
}

/* --------- LAYOUT HELPERS --------- */

.container {
  width: min(100%, calc(var(--container-max) + 40px));
  margin: 0 auto;
  padding: 0 20px;
}

.content-narrow {
  width: min(100%, var(--content-max));
  margin: 0 auto;
}

.section-pad-top {
  padding-top: 40px;
}

.section-pad-bottom {
  padding-bottom: 60px;
}

.mt-xl {
  margin-top: 60px;
}

.mt-lg {
  margin-top: 40px;
}

.mt-md {
  margin-top: 24px;
}

.mt-sm {
  margin-top: 12px;
}

.flex-row {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

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



/* --------- BREADCRUMB + HERO PRODOTTO --------- */

.page {
  padding: 28px 0 64px;
}

.breadcrumbs {
  font-size: 14px;
  color: #6b6b6b;
  margin: 8px 0 22px;
}

.breadcrumbs a {
  color: #6b6b6b;
}

.breadcrumbs a:hover {
  color: var(--brand);
}

.product {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 28px;
}

@media (max-width:1020px) {
  .product {
    grid-template-columns: 1fr;
  }
}

/* GALLERY */

.gallery {
  display: grid;
  gap: 14px;
}

.gallery-main {
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  background: #fff;
  box-shadow: var(--shadow);
}

.gallery-main img {
  display: block;
  width: 100%;
  height: auto;
}

.gallery-thumbs {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(90px, 1fr));
  gap: 10px;
  max-height: 260px;
  overflow-y: auto;
  padding-right: 4px;
}

.thumb {
  position: relative;
  border-radius: 10px;
  border: 1px solid var(--border);
  background: #fff;
  cursor: pointer;
  overflow: hidden;
  outline: 0;
  padding: 0;
}

.thumb img {
  width: 100%;
  height: 90px;
  object-fit: cover;
  display: block;
  border-radius: 10px;
}

.thumb.active {
  border: 2px solid var(--brand);
}

.thumb.active img {
  outline: 2px solid var(--brand);
  outline-offset: -2px;
}

/* PANNELLO INFO PRODOTTO (DESTRA) */
.p-kicker {
  font-weight: 700;
  color: #333;
  margin: 0 0 6px;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: .03em;
}

.p-title {
  margin: 6px 0 4px;
  font-family: "Playfair Display", serif;
  font-weight: 800;
  font-size: clamp(22px, 2.6vw, 30px);
  color: var(--text);
  line-height: 1.2;
}

.price {
  font-size: 28px;
  font-weight: 800;
  margin: 8px 0 12px;
}

.desc p {
  margin: 0 0 12px;
  line-height: 1.7;
  color: #222;
  font-size: 16px;
}

.small-cover {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 10px 0;
}

.small-cover img {
  width: 84px;
  height: auto;
  border-radius: 8px;
  border: 1px solid var(--border);
}

.note {
  color: var(--muted);
  font-size: 12px;
}

.buy {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 20px 0 16px;
}

.qty {
  width: 64px;
  height: 40px;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 0 10px;
  font-size: 15px;
}

.btn {
  display: inline-block;
  background: var(--brand);
  color: #fff;
  padding: 12px 14px;
  border-radius: var(--radius-md);
  font-weight: 800;
  border: 0;
  cursor: pointer;
  font-family: inherit;
  font-size: 15px;
  line-height: 1.2;
}

.btn:hover {
  filter: brightness(1.04);
}

.meta {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  color: #6b6b6b;
  font-size: 13px;
  margin-top: 6px;
}

.meta a {
  color: #6b6b6b;
  text-decoration: none;
}

.meta a:hover {
  color: var(--brand);
}

/* --------- DETTAGLI LUNGHI PRODOTTO --------- */

.tabs {
  border-bottom: 1px solid var(--border);
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  font-size: 15px;
  line-height: 1.4;
  color: var(--text);
  margin-bottom: 24px;
}

.tab {
  padding: 10px 0;
  font-weight: 600;
  color: var(--text);
}

.tab.active {
  border-bottom: 2px solid var(--brand);
}

.headline {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  color: var(--brand);
  line-height: 1.3;
  margin: 0 0 24px;
}

.headline.h-main {
  font-size: clamp(24px, 1vw + 20px, 32px);
  text-transform: uppercase;
  letter-spacing: .02em;
}

.headline.h-md {
  font-size: clamp(20px, 0.5vw + 18px, 26px);
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 8px;
}

.headline.h-sm {
  font-size: clamp(19px, 0.4vw + 17px, 24px);
  margin-bottom: 20px;
}

.para {
  font-size: 16px;
  line-height: 1.6;
  color: var(--text);
  margin: 0 0 16px;
}

.para.italic {
  font-style: italic;
}

.para.big-claim {
  font-size: 18px;
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  line-height: 1.5;
  margin-bottom: 24px;
}

.list-dots {
  font-size: 16px;
  line-height: 1.6;
  color: var(--text);
  padding-left: 20px;
  margin: 0 0 24px;
}

.list-dots li {
  margin: 0 0 12px;
}

.list-compact li {
  margin-bottom: 8px;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
  font-size: 16px;
  line-height: 1.4;
  color: var(--text);
  margin-top: 16px;
}

.btn-buy-sm {
  background: var(--brand);
  color: #fff;
  border: 0;
  border-radius: var(--radius-sm);
  padding: 10px 16px;
  font-weight: 600;
  font-size: 15px;
  line-height: 1.2;
  cursor: pointer;
}

.mini-cover {
  width: 140px;
  max-width: 40vw;
  border: 1px solid rgba(0, 0, 0, .15);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow);
}

/* --------- CERTIFICAZIONE + VIDEO --------- */
/*
.cert-block {
  text-align: center;
}

.cert-line {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 20px;
  line-height: 1.4;
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  color: var(--brand);
  margin-bottom: 24px;
}

.cert-line img {
  height: 28px;
  width: auto;
  border-radius: 2px;
  box-shadow: var(--shadow);
}

/*
.video-frame {
  max-width: 480px;
  margin: 0 auto;
  box-shadow: var(--shadow);
  border: 1px solid rgba(0, 0, 0, .1);
  border-radius: var(--radius-sm);
  overflow: hidden;
}

.video-inner {
  position: relative;
  padding-bottom: 177%;
  /* formato verticale tipo reel */
/* height: 0;
  overflow: hidden;
}
/*
.video-inner iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}*/

/* --------- PRODOTTI CORRELATI --------- */

.related-products {
  padding-top: 40px;
  padding-bottom: 60px;
}

.related-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
}

.related-card {
  max-width: 260px;
  font-size: 15px;
  line-height: 1.4;
  color: var(--text);
}

.related-card-cover {
  width: 260px;
  border: 1px solid rgba(0, 0, 0, .1);
  border-radius: var(--radius-sm);
  overflow: hidden;
  background: #fff;
  box-shadow: var(--shadow);
  margin-bottom: 12px;
}

.related-meta {
  color: var(--muted);
  font-size: 12px;
  margin-bottom: 4px;
}

.related-name {
  font-weight: 600;
  color: var(--brand);
  margin-bottom: 4px;
  text-decoration: none;
  display: inline-block;
}

.related-price {
  font-weight: 600;
  margin-bottom: 12px;
}

.related-btn {
  background: var(--brand);
  color: #fff;
  border: 0;
  border-radius: var(--radius-sm);
  padding: 10px 16px;
  font-weight: 600;
  font-size: 14px;
  line-height: 1.2;
  cursor: pointer;
  margin-bottom: 12px;
}

.related-stars {
  color: #000;
  font-size: 14px;
  letter-spacing: 2px;
}

/* --------- FOOTER --------- */

footer.footer {
  background: var(--bg-soft);
  border-top: 1px solid var(--border);
  margin-top: 40px;
  font-size: 14px;
  line-height: 1.5;
  color: var(--text);
}

.footer-top {
  max-width: var(--container-max);
  width: 100%;
  padding: 40px 20px 24px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: flex-start;
  justify-content: space-between;
}

.footer-brandblock {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: flex-start;
}

.footer-logo-col {
  text-align: center;
}

.footer-logo-mark {
  width: 60px;
  height: 60px;
  background: var(--brand);
  -webkit-mask: url('/images/logo_AL.png') center/contain no-repeat;
  mask: url('/images/logo_AL.png') center/contain no-repeat;
  margin: 0 auto 10px;
}

.footer-logo-text {
  font-family: 'Playfair Display', serif;
  font-weight: 600;
  font-size: 13px;
  color: var(--brand);
  letter-spacing: .03em;
  text-align: center;
  line-height: 1.3;
}

.footer-col-title {
  font-family: 'Playfair Display', serif;
  font-weight: 600;
  font-size: 16px;
  color: var(--brand);
  margin: 0 0 12px;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 14px;
  line-height: 1.6;
}

.footer-links a {
  color: var(--text);
  text-decoration: none;
}

.footer-links a:hover {
  color: var(--brand);
}

.footer-right {
  display: flex;
  flex-direction: column;
  gap: 16px;
  text-align: right;
  flex: 1;
  min-width: 240px;
  font-size: 13px;
  line-height: 1.5;
}

.social-row {
  color: #000;
  display: flex;
  gap: 8px;
  justify-content: flex-end;
  font-size: 13px;
}

.footer-legal a {
  color: var(--text);
  text-decoration: none;
}

.footer-legal a:hover {
  color: var(--brand);
}

.footer-bottom {
  border-top: 1px solid var(--border);
  font-size: 13px;
  line-height: 1.5;
  color: var(--text);
  text-align: center;
  padding: 14px 20px 40px;
}

.footer-bottom div {
  margin-bottom: 6px;
}

/* NAVBAR (uguale stile) */
.container {
  width: min(100%, calc(var(--container) + 40px));
  margin: 0 auto;
  padding: 0 20px
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 50;
  height: var(--topbar-h);
  background: #fff;
  box-shadow: 0 1px 0 rgba(0, 0, 0, .06)
}

.topbar-inner {
  height: 100%;
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 24px
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px
}

.logo-mono {
  width: 110px;
  height: 110px;
  background: var(--brand);
  display: block;
  -webkit-mask: url('images/logo_AL.png') center/contain no-repeat;
  mask: url('images/logo_AL.png') center/contain no-repeat
}

.brand .brand-name {
  font-family: "Playfair Display", serif;
  font-weight: 700;
  font-size: clamp(16px, 1.3vw + 14px, 26px);
  letter-spacing: .2px;
  color: #7a1430
}

nav.nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 36px
}

.lang {
  display: flex;
  gap: 10px
}

.lang img {
  width: 28px;
  height: 28px;
  border-radius: 2px
}

.menu {
  display: flex;
  gap: 28px;
  list-style: none;
  margin: 0;
  padding: 0
}

.menu a {
  font-size: 16px;
  font-weight: 600;
  color: #111;
  text-decoration: none;
  padding: 8px 0
}

.menu a.active {
  color: var(--brand)
}

.nav-toggle {
  position: absolute;
  opacity: 0;
  pointer-events: none
}

.burger {
  display: none;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  border: 1px solid rgba(0, 0, 0, .08);
  align-items: center;
  justify-content: center;
  cursor: pointer
}

.burger span,
.burger span::before,
.burger span::after {
  content: "";
  display: block;
  width: 22px;
  height: 2px;
  background: #111;
  position: relative;
  transition: .2s
}

.burger span::before {
  position: absolute;
  top: -7px;
  left: 0
}

.burger span::after {
  position: absolute;
  top: 7px;
  left: 0
}

.nav-toggle:checked+.burger span {
  background: transparent
}

.nav-toggle:checked+.burger span::before {
  transform: translateY(7px) rotate(45deg)
}

.nav-toggle:checked+.burger span::after {
  transform: translateY(-7px) rotate(-45deg)
}

@media (max-width:960px) {
  :root {
    --topbar-h: 84px
  }

  .burger {
    display: flex
  }

  .menu {
    position: absolute;
    top: var(--topbar-h);
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    gap: 12px;
    padding: 16px 20px;
    background: #fff;
    border-top: 1px solid var(--border);
    box-shadow: 0 10px 30px rgba(0, 0, 0, .08)
  }

  .nav-toggle:checked~.menu {
    display: flex
  }


  .logo-mono {
    width: 56px;
    height: 56px
  }
}


/* ===================== FOOTER ===================== */
footer.site-footer {
  background: #efefef;
  border-top: 1px solid rgba(0, 0, 0, .08);
  margin-top: 0;
  padding: 28px 0 40px;
  font-size: 14px;
  color: #333;

}

.footer-top {
  display: grid;
  gap: 24px;
  grid-template-columns: 1fr;
}

@media(min-width:780px) {
  .footer-top {
    grid-template-columns: auto 1fr auto;
    align-items: start;
  }
}

.footer-brand-block {
  text-align: center;
}

@media(min-width:780px) {
  .footer-brand-block {
    text-align: left;
  }
}

.footer-logo {
  font-family: "Playfair Display", serif;
  font-size: 14px;
  line-height: 1.4;
  font-weight: 600;
  color: var(--brand);
  display: inline-block;
}

.footer-social {
  text-align: center;
  margin: 12px 0;
  font-size: 0;
}

.footer-social a {
  display: inline-block;
  font-size: 14px;
  color: #000;
  margin: 0 4px;
  text-decoration: none;
}

.footer-services {
  text-align: center;
}

@media(min-width:780px) {
  .footer-services {
    text-align: left;
  }
}

.footer-services h4 {
  margin: 0 0 10px;
  font-size: 15px;
  font-weight: 600;
  color: #333;
}

.footer-services ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-services li {
  margin: 4px 0;
}

.footer-services a {
  color: #333;
  text-decoration: none;
}

.footer-services a:hover {
  color: var(--brand);
}

.footer-meta {
  text-align: center;
  font-size: 13px;
}

@media(min-width:780px) {
  .footer-meta {
    text-align: right;
  }
}

.footer-meta-row {
  margin: 4px 0;
}

.footer-lang {
  margin-top: 6px;
}

.footer-bottom {
  border-top: 1px solid rgba(0, 0, 0, .08);
  margin-top: 24px;
  padding-top: 16px;
  text-align: center;
  font-size: 13px;
  color: #4a4a4a;
  line-height: 1.5;
}

@media(min-width:780px) {
  .footer-bottom {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    text-align: left;
  }
}

.footer-copy {
  margin-bottom: 8px;
}

.footer-legal {
  margin-bottom: 8px;
}




/* Dropdown Academy */
.has-dropdown {
  position: relative;
  z-index: 999;
}

/* TRIGGER: solo l'omino utente, niente freccia */
.has-dropdown>a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 999px;
  border: 1px solid rgba(0, 0, 0, .15);
  background: #fff;
  padding: 0;
}

/* Omino stilizzato (testa + spalle, niente mezzaluna) */
.has-dropdown>a::before {
  content: "";
  display: block;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #7a1430;
  /* testa */
  box-shadow:
    0 9px 0 0 #7a1430,
    /* collo */
    0 14px 0 5px #7a1430;
  /* spalle/torace */
}


/* Tendina */
.has-dropdown .dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 210px;
  margin-top: 6px;
  padding: 8px 0;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, .12);
  list-style: none;
  opacity: 0;
  visibility: hidden;
  transform: translateY(6px);
  transition: all .18s ease;
  z-index: 80;
}

.has-dropdown .dropdown li {
  margin: 0;
}

.has-dropdown .dropdown a {
  display: block;
  padding: 7px 14px;
  font-size: 14px;
  font-weight: 500;
  color: #111;
  white-space: nowrap;
}

.has-dropdown .dropdown a:hover {
  color: var(--brand);
  background: rgba(122, 20, 48, 0.04);
}

/* Apertura: hover/focus (desktop) + classe .open (JS / mobile) */
/* Apertura SOLO con classe .open (click), + focus per accessibilità */
.has-dropdown.open>.dropdown,
.has-dropdown:focus-within>.dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}


/* Icona tools separata */
.tools-item a {
  display: inline-flex;
  align-items: center;
  padding: 0;
}

.nav-tools-icon {
  width: 20px;
  height: 20px;
  object-fit: contain;
  vertical-align: middle;
}

/* Mobile: dropdown inline sotto la voce, ma si apre/chiude a click */
@media (max-width:960px) {
  .has-dropdown {
    position: static;
  }

  .has-dropdown .dropdown {
    position: static;
    box-shadow: none;
    border-radius: 0;
    margin-top: 0;
    padding: 4px 0 0;
  }

  .has-dropdown .dropdown a {
    padding-left: 14px;
    font-size: 15px;
  }

  .tools-item a {
    padding-top: 4px;
  }

  nav.nav {
    justify-content: space-between;
    align-items: center;
  }

  /* Le bandiere restano visibili, allineate a sinistra */
  .nav .lang {
    order: 1;
    margin-right: auto;
  }

  /* Burger subito dopo le bandiere */
  .burger {
    display: flex;
    order: 2;
  }

  /* Omino utente subito dopo il burger, inline */
  nav.nav>.has-dropdown {
    order: 3;
    margin-left: 8px;
  }

  /* Il menu mobile viene dopo tutto il resto */
  .menu {
    order: 4;
    position: absolute;
    top: var(--topbar-h);
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    gap: 12px;
    padding: 16px 20px;
    background: #fff;
    border-top: 1px solid var(--border);
    box-shadow: 0 10px 30px rgba(0, 0, 0, .08);
  }

}



/* ========== Stili per myAlert / operationConfirm (modal) ========== */
/*.oc-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10000;
}

.oc-dialog {
  background: #fff;
  border-radius: 10px;
  padding: 14px 16px 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, .35);
  max-width: 420px;
  min-width: 260px;
  max-height: calc(100vh - 100px);
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 13px;
}

.oc-title {
  font-weight: 700;
  font-size: 13px;
  color: #111827;
}

.oc-text {
  font-size: 13px;
  color: #374151;
  overflow-y: auto;
}

.oc-buttons {
  margin-top: 6px;
  display: flex;
  justify-content: flex-end;
  gap: 8px;
}

.oc-buttons button {
  padding: 6px 12px;
  border-radius: 6px;
  border: 1px solid #d1d5db;
  background: #fff;
  cursor: pointer;
  font-size: 12px;
}

.oc-buttons .oc-continua {
  background: #2563eb;
  color: #fff;
  border-color: #1d4ed8;
}*/


/* ========== Stili per myAlert / operationConfirm (modal) ========== */
.oc-overlay {
  position: fixed;
  inset: 0;
  background: radial-gradient(circle at top, rgba(255, 247, 245, 0.95), rgba(0, 0, 0, 0.60));
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10000;
}

/* dialog in stile Vegan Pastry Academy + rosa decorativa */
.oc-dialog {
  position: relative;
  background: #ffffff;
  border-radius: 14px;
  padding: 16px 18px 14px;
  box-shadow: 0 18px 45px rgba(0, 0, 0, .35);
  max-width: 420px;
  min-width: 260px;
  max-height: calc(100vh - 120px);
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 13px;
  border: 1px solid rgba(0, 0, 0, .06);
}

/* barra alta sottile color brand */
.oc-dialog::after {
  content: "";
  position: absolute;
  inset: 0;
  height: 4px;
  border-radius: 14px 14px 0 0;
  background: linear-gradient(90deg, #7a1430, #d65a84);
  pointer-events: none;
}

/* rosa in alto a destra – cambia il path con il tuo file */
.oc-dialog::before {
  content: "";
  position: absolute;
  top: -18px;
  right: -6px;
  width: 68px;
  height: 68px;
  /*background-image: url('/images/rosa.png');*/
  /* <--- CAMBIA QUESTO PERCORSO */
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  opacity: 0.9;
  pointer-events: none;
}

.oc-title {
  font-weight: 700;
  font-size: 13px;
  color: #7a1430;
  /* colore brand */
  padding-top: 4px;
}

.oc-text {
  font-size: 13px;
  color: #374151;
  overflow-y: auto;
  max-height: calc(100vh - 210px);
}

/* pulsanti */
.oc-buttons {
  margin-top: 8px;
  display: flex;
  justify-content: flex-end;
  gap: 8px;
}

.oc-buttons button {
  padding: 6px 13px;
  border-radius: 999px;
  border: 1px solid rgba(0, 0, 0, .10);
  background: #ffffff;
  cursor: pointer;
  font-size: 12px;
  color: #374151;
  transition: background .15s ease, border-color .15s ease, transform .08s ease;
}

.oc-buttons button:hover {
  background: #f9fafb;
  border-color: rgba(0, 0, 0, .18);
  transform: translateY(-1px);
}

/* pulsante principale in colore brand */
.oc-buttons .oc-continua {
  background: #7a1430;
  color: #ffffff;
  border-color: #7a1430;
}

.oc-buttons .oc-continua:hover {
  background: #8f1838;
  border-color: #8f1838;
}