@charset "UTF-8";
.woocommerce-checkout .woocommerce-message:has(a) {
  display: none !important;
}

.woocommerce {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.woocommerce form.woocommerce-checkout {
  max-width: 800px;
  padding: 20px;
}
.woocommerce form.woocommerce-checkout .form-row {
  width: 100%;
  clear: both;
}
.woocommerce form.woocommerce-checkout .form-row .optional {
  display: none;
}
.woocommerce form.woocommerce-checkout .form-row label {
  font-weight: bold;
}
.woocommerce form.woocommerce-checkout .form-row label:has(input[type=checkbox]) {
  line-height: 1.4;
  display: flex;
}
.woocommerce form.woocommerce-checkout .form-row label:has(input[type=checkbox]) a {
  padding-left: 4px;
}
.woocommerce form.woocommerce-checkout .form-row:has(input[type=radio]) .woocommerce-input-wrapper {
  display: flex;
  align-items: center;
}
.woocommerce form.woocommerce-checkout .form-row:has(input[type=radio]) .woocommerce-input-wrapper label {
  margin-right: 20px;
}
.woocommerce form.woocommerce-checkout .form-row:has(input[type=radio]) .woocommerce-input-wrapper label span {
  display: none !important;
}

#customer_details {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
#customer_details .col-1, #customer_details .col-2 {
  width: 100%;
}

.woocommerce form h3 {
  margin-bottom: 12px;
}
.woocommerce form input[type=checkbox] {
  width: 24px !important;
  height: 24px !important;
  min-width: 24px !important;
  min-height: 24px !important;
}
.woocommerce form input:not([type=checkbox]):not([type=radio]) {
  height: 42px !important;
}
.woocommerce form select {
  height: 42px !important;
}
.woocommerce form .form-row .input-checkbox {
  margin: -2px 6px 0 0 !important;
}
.woocommerce #place_order {
  background-color: var(--primary-regular) !important;
}
.woocommerce .woocommerce-checkout #payment {
  background: rgba(128, 110, 153, 0.05) !important;
}
.woocommerce .woocommerce-checkout #payment div.payment_box {
  background-color: #eceff3 !important;
}
.woocommerce .woocommerce-checkout #payment div.payment_box:before {
  border: 1em solid #eceff3;
  border-right-color: transparent;
  border-left-color: transparent;
  border-top-color: transparent;
}

.woocommerce-checkout .woocommerce-checkout-review-order-table tfoot .cart-subtotal {
  display: none;
}

.odex-coupon-block {
  border: 1px solid black;
  border-radius: 4px;
  padding: 12px;
  margin: 0 0 20px 0;
}
.odex-coupon-block .odex-coupon-header {
  display: flex;
  justify-content: space-between;
}
.odex-coupon-block .odex-coupon-header .odex-coupon-label {
  display: flex;
  align-items: center;
}
.odex-coupon-block .odex-coupon-header .odex-toggle-chevron {
  font-size: 10px !important;
}
.odex-coupon-block .odex-coupon-form {
  margin-top: 8px;
}
.odex-coupon-block .odex-coupon-form .odex-coupon-input-group {
  display: flex;
  border: 2px solid black;
}
.odex-coupon-block .odex-coupon-form .odex-coupon-input-group input, .odex-coupon-block .odex-coupon-form .odex-coupon-input-group button {
  border: 0 !important;
}
.odex-coupon-block .odex-coupon-form .odex-coupon-input-group input {
  width: 100%;
}
.odex-coupon-block .odex-coupon-form .odex-coupon-input-group button {
  font-size: 12px !important;
}
.odex-coupon-block .odex-coupon-form .odex-coupon-deposit-note {
  font-size: 12px;
  color: gray;
  padding-top: 8px;
}

nav a {
  text-decoration: none !important;
}

nav ul > li:nth-child(1) > a {
  border-top: 0 !important;
}
nav ul li.menu-item .sub-menu {
  padding-top: 16px;
  border-bottom: 1px solid var(--odex-border);
}
nav ul li.menu-item .sub-menu li.menu-item {
  border-bottom: 1px solid var(--odex-border) !important;
  padding: 8px 12px;
}
nav ul li.menu-item .sub-menu li.menu-item a {
  border-top: 0 !important;
}

#odexHeader {
  transition: transform 400ms cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform;
}
#odexHeader.odex-header--fixed {
  backdrop-filter: blur(12px) saturate(1.4);
  -webkit-backdrop-filter: blur(12px) saturate(1.4);
  background: rgba(255, 255, 255, 0.85);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.04);
}

/* ============================================================
 * ODEX Footer — Tailwind companion
 * Solo animazioni e pseudo-elementi
 * ============================================================ */
.odex-button {
  position: relative;
  overflow: hidden;
}
.odex-button:after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.1);
  transform: translateX(-101%);
  transition: transform 400ms cubic-bezier(0.16, 1, 0.3, 1);
}
.odex-button:hover:after {
  transform: translateX(0);
}

.odex-ft__reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 600ms cubic-bezier(0.16, 1, 0.3, 1), transform 600ms cubic-bezier(0.16, 1, 0.3, 1);
  transition-delay: var(--reveal-delay, 0ms);
}

.odex-ft.is-visible .odex-ft__reveal {
  opacity: 1;
  transform: translateY(0);
}

.odex-ft.is-visible .odex-ft__hero-bg {
  opacity: 1;
}

.odex-ft.is-visible .odex-ft__glow {
  opacity: 1;
}

.odex-ft__hero-heading strong {
  color: var(--odex-accent);
}
.odex-ft__hero-heading .word {
  display: inline-block;
  opacity: 0;
  transform: translateY(40px);
  transition: all 600ms cubic-bezier(0.16, 1, 0.3, 1);
}
.odex-ft.is-visible .odex-ft__hero-heading .word {
  opacity: 1;
  transform: translateY(0);
}

.odex-ft__cta::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.15);
  transform: translateX(-101%);
  transition: transform 400ms cubic-bezier(0.16, 1, 0.3, 1);
}
.odex-ft__cta:hover::after {
  transform: translateX(0);
}
.odex-ft__cta:hover .odex-ft__cta-arrow {
  transform: translateX(4px);
}
.odex-ft__cta:active {
  transform: scale(0.97);
}

.odex-ft__nav-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 20px;
  height: 2px;
  background: var(--odex-accent);
}

.odex-ft__nav-links a {
  display: flex;
  align-items: center;
  gap: 0;
  padding: 9px 0;
  font-size: 14px;
  font-weight: 400;
  color: var(--odex-surface-strong);
  text-decoration: none;
  position: relative;
  transition: color 200ms ease, gap 300ms cubic-bezier(0.16, 1, 0.3, 1);
}
.odex-ft__nav-links a::before {
  content: "";
  display: block;
  width: 0;
  height: 1px;
  background: var(--odex-accent);
  transition: width 300ms cubic-bezier(0.16, 1, 0.3, 1);
  flex-shrink: 0;
}
.odex-ft__nav-links a:hover {
  color: var(--odex-accent);
  gap: 10px;
}
.odex-ft__nav-links a:hover::before {
  width: 14px;
}

@media (prefers-reduced-motion: reduce) {
  .odex-ft__reveal,
  .odex-ft__hero-bg,
  .odex-ft__glow,
  .odex-ft__hero-heading .word,
  .odex-ft__cta {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
  .odex-ft__nav-links a,
  .odex-ft__cta::after {
    transition: none !important;
  }
}
.odex-ft a:focus-visible {
  outline: 2px solid var(--odex-accent);
  outline-offset: 3px;
  border-radius: 2px;
}

.inner-gradient:before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  bottom: 0;
  display: block;
  z-index: 0;
  background: #000000;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0) 80%);
}

/* ─── In-view animations ───
 * * Stato iniziale gestito da `.anim-ready` (applicato da animations.js solo su elementi
 * * che il JS sta davvero animando — protezione anti-FOUC se il JS non parte).
 * * I valori vivono in CSS custom properties impostate dal JS in base ai data-attribute. */
.has-anim-js .anim-ready {
  opacity: 0;
  transform: var(--anim-init-transform, none);
  filter: var(--anim-init-filter, none);
  clip-path: var(--anim-init-clip, none);
  transition: opacity var(--anim-duration, 600ms) var(--anim-easing, cubic-bezier(0.16, 1, 0.3, 1)) var(--anim-delay, 0ms), transform var(--anim-duration, 600ms) var(--anim-easing, cubic-bezier(0.16, 1, 0.3, 1)) var(--anim-delay, 0ms), filter var(--anim-duration, 600ms) var(--anim-easing, cubic-bezier(0.16, 1, 0.3, 1)) var(--anim-delay, 0ms), clip-path var(--anim-duration, 600ms) var(--anim-easing, cubic-bezier(0.16, 1, 0.3, 1)) var(--anim-delay, 0ms);
  will-change: opacity, transform, filter, clip-path;
}

.has-anim-js .anim-ready.is-anim-in {
  opacity: 1;
  transform: none;
  filter: none;
  clip-path: none;
}

@media (prefers-reduced-motion: reduce) {
  .has-anim-js .anim-ready,
  .has-anim-js .anim-ready.is-anim-in {
    opacity: 1 !important;
    transform: none !important;
    filter: none !important;
    clip-path: none !important;
    transition: none !important;
  }
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Be Vietnam Pro", sans-serif;
}

body {
  font-family: "Be Vietnam Pro", sans-serif;
  color: var(--text-dark);
  overflow-x: hidden;
  line-height: 1.6;
}

body {
  cursor: none;
}

#cursor {
  position: fixed;
  top: 0;
  left: 0;
  width: 20px;
  height: 20px;
  border: 1px solid var(--odex-accent);
  border-radius: 50%;
  pointer-events: none;
  z-index: 999999999;
  transform: translate(-50%, -50%);
  transition: width 0.2s, height 0.2s, background-color 0.2s;
  backdrop-filter: blur(1.5px);
  -webkit-backdrop-filter: blur(1.5px);
}
#cursor.hovered {
  width: 50px;
  height: 50px;
  background-color: rgba(var(--odex-accent-rgb), 0.2);
  border-color: var(--odex-accent);
  mix-blend-mode: difference;
  backdrop-filter: blur(0px);
  -webkit-backdrop-filter: blur(0px);
}

p b {
  font-weight: 800;
}

.overlay-light {
  background: linear-gradient(180deg, rgba(var(--odex-overlay-rgb), 0.4) 0%, rgba(var(--odex-overlay-rgb), 0.8) 100%);
}

.overlay-dark {
  background: linear-gradient(180deg, rgba(var(--odex-overlay-rgb), 0.7) 0%, rgba(var(--odex-overlay-rgb), 0.8) 100%);
}

:root {
  --odex-orange: #FF7F00;
  --odex-orange-contrast: #ffffff;
  --odex-orange-rgb: 255, 127, 0;
  --odex-blue: #04A1FF;
  --odex-blue-contrast: #ffffff;
  --odex-blue-rgb: 4, 161, 255;
  --odex-dark: #09090b;
  --odex-dark-accent: #111113;
  --odex-dark-contrast: #ffffff;
  --odex-dark-rgb: 0, 0, 0;
  --odex-light: #FFFFFF;
  --odex-light-contrast: #153567;
  --odex-light-rgb: 255, 255, 255;
  --odex-gray-light: #f8f9fa;
  --odex-gray-light-contrast: #153567;
  --odex-gray-light-rgb: 248, 249, 250;
  --odex-gray-dark: #b7b7b7;
  --odex-gray-dark-contrast: #153567;
  --odex-gray-dark-rgb: 183, 183, 183;
  --odex-primary: var(--odex-blue);
  --odex-primary-contrast: var(--odex-blue-contrast);
  --odex-primary-rgb: var(--odex-blue-rgb);
  --odex-accent: var(--odex-orange);
  --odex-accent-contrast: var(--odex-orange-contrast);
  --odex-accent-rgb: var(--odex-orange-rgb);
  --odex-surface: var(--odex-light);
  --odex-surface-contrast: var(--odex-light-contrast);
  --odex-surface-soft: var(--odex-gray-light);
  --odex-surface-soft-contrast: var(--odex-gray-light-contrast);
  --odex-surface-strong: var(--odex-dark);
  --odex-surface-strong-contrast: var(--odex-dark-contrast);
  --odex-surface-strong-accent: var(--odex-dark-accent);
  --odex-muted: var(--odex-gray-dark);
  --odex-muted-contrast: var(--odex-gray-dark-contrast);
  --odex-overlay-rgb: 15, 23, 42;
  --odex-menu-width: 86vw;
  --odex-menu-max-w: 400px;
  --odex-menu-ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
  --odex-menu-ease-in-expo: cubic-bezier(0.7, 0, 0.84, 0);
  --odex-menu-ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
  --odex-menu-duration: 420ms;
  --odex-menu-stagger: 55ms;
  --odex-menu-bg: #141312;
  --odex-menu-surface: #1c1b19;
  --odex-menu-text: #edeae6;
  --odex-menu-text-muted: #7a7570;
  --odex-menu-accent: #edeae6;
  --odex-menu-border: rgba(255, 255, 255, 0.07);
  --odex-menu-overlay: rgba(0, 0, 0, 0.6);
  --odex-menu-shadow: 0 25px 60px -12px rgba(0, 0, 0, 0.6), 0 0 0 1px rgba(255, 255, 255, 0.04);
  --ft-bg: #09090b;
  --ft-surface: #111113;
  --ft-text: #e4e4e7;
  --ft-muted: #52525b;
  --ft-dim: #2e2e33;
  --ft-accent: var(--odex-primary);
  --ft-accent-glow: rgba(var(--odex-primary-rgb), 0.12);
  --ft-border: rgba(255, 255, 255, 0.05);
  --ft-pad: clamp(20px, 5vw, 64px);
  --ft-ease: cubic-bezier(0.16, 1, 0.3, 1);
  --ft-ease-in: cubic-bezier(0.7, 0, 0.84, 0);
}

.border-odex-orange {
  border-color: var(--odex-orange);
}

.border-odex-orangeContrast {
  border-color: var(--odex-orange-contrast);
}

.border-odex-blue {
  border-color: var(--odex-blue);
}

.border-odex-blueContrast {
  border-color: var(--odex-blue-contrast);
}

.border-odex-dark {
  border-color: var(--odex-dark);
}

.border-odex-darkContrast {
  border-color: var(--odex-dark-contrast);
}

.border-odex-light {
  border-color: var(--odex-light);
}

.border-odex-lightContrast {
  border-color: var(--odex-light-contrast);
}

.border-odex-grayLight {
  border-color: var(--odex-gray-light);
}

.border-odex-grayLightContrast {
  border-color: var(--odex-gray-light-contrast);
}

.border-odex-grayDark {
  border-color: var(--odex-gray-dark);
}

.border-odex-grayDarkContrast {
  border-color: var(--odex-gray-dark-contrast);
}

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

.border-odex-primaryContrast {
  border-color: var(--odex-primary-contrast);
}

.border-odex-accent {
  border-color: var(--odex-accent);
}

.border-odex-accentContrast {
  border-color: var(--odex-accent-contrast);
}

.border-odex-surface {
  border-color: var(--odex-surface);
}

.border-odex-surfaceContrast {
  border-color: var(--odex-surface-contrast);
}

.border-odex-surfaceSoft {
  border-color: var(--odex-surface-soft);
}

.border-odex-surfaceSoftContrast {
  border-color: var(--odex-surface-soft-contrast);
}

.border-odex-surfaceStrong {
  border-color: var(--odex-surface-strong);
}

.border-odex-surfaceStrongAccent {
  border-color: var(--odex-surface-strong-accent);
}

.border-odex-surfaceStrongContrast {
  border-color: var(--odex-surface-strong-contrast);
}

.border-odex-muted {
  border-color: var(--odex-muted);
}

.border-odex-mutedContrast {
  border-color: var(--odex-muted-contrast);
}

.bg-odex-orange {
  background-color: var(--odex-orange);
}

.bg-odex-orangeContrast {
  background-color: var(--odex-orange-contrast);
}

.bg-odex-blue {
  background-color: var(--odex-blue);
}

.bg-odex-blueContrast {
  background-color: var(--odex-blue-contrast);
}

.bg-odex-dark {
  background-color: var(--odex-dark);
}

.bg-odex-darkContrast {
  background-color: var(--odex-dark-contrast);
}

.bg-odex-light {
  background-color: var(--odex-light);
}

.bg-odex-lightContrast {
  background-color: var(--odex-light-contrast);
}

.bg-odex-grayLight {
  background-color: var(--odex-gray-light);
}

.bg-odex-grayLightContrast {
  background-color: var(--odex-gray-light-contrast);
}

.bg-odex-grayDark {
  background-color: var(--odex-gray-dark);
}

.bg-odex-grayDarkContrast {
  background-color: var(--odex-gray-dark-contrast);
}

.bg-odex-primary {
  background-color: var(--odex-primary);
}

.bg-odex-primaryContrast {
  background-color: var(--odex-primary-contrast);
}

.bg-odex-accent {
  background-color: var(--odex-accent);
}

.bg-odex-accentContrast {
  background-color: var(--odex-accent-contrast);
}

.bg-odex-surface {
  background-color: var(--odex-surface);
}

.bg-odex-surfaceContrast {
  background-color: var(--odex-surface-contrast);
}

.bg-odex-surfaceSoft {
  background-color: var(--odex-surface-soft);
}

.bg-odex-surfaceSoftContrast {
  background-color: var(--odex-surface-soft-contrast);
}

.bg-odex-surfaceStrong {
  background-color: var(--odex-surface-strong);
}

.bg-odex-surfaceStrongAccent {
  background-color: var(--odex-surface-strong-accent);
}

.bg-odex-surfaceStrongContrast {
  background-color: var(--odex-surface-strong-contrast);
}

.bg-odex-muted {
  background-color: var(--odex-muted);
}

.bg-odex-mutedContrast {
  background-color: var(--odex-muted-contrast);
}

.text-odex-orange {
  color: var(--odex-orange);
}

.text-odex-orangeContrast {
  color: var(--odex-orange-contrast);
}

.text-odex-blue {
  color: var(--odex-blue);
}

.text-odex-blueContrast {
  color: var(--odex-blue-contrast);
}

.text-odex-dark {
  color: var(--odex-dark);
}

.text-odex-darkContrast {
  color: var(--odex-dark-contrast);
}

.text-odex-light {
  color: var(--odex-light);
}

.text-odex-lightContrast {
  color: var(--odex-light-contrast);
}

.text-odex-grayLight {
  color: var(--odex-gray-light);
}

.text-odex-grayLightContrast {
  color: var(--odex-gray-light-contrast);
}

.text-odex-grayDark {
  color: var(--odex-gray-dark);
}

.text-odex-grayDarkContrast {
  color: var(--odex-gray-dark-contrast);
}

.text-odex-primary {
  color: var(--odex-primary);
}

.text-odex-primaryContrast {
  color: var(--odex-primary-contrast);
}

.text-odex-accent {
  color: var(--odex-accent);
}

.text-odex-accentContrast {
  color: var(--odex-accent-contrast);
}

.text-odex-surface {
  color: var(--odex-surface);
}

.text-odex-surfaceContrast {
  color: var(--odex-surface-contrast);
}

.text-odex-surfaceSoft {
  color: var(--odex-surface-soft);
}

.text-odex-surfaceSoftContrast {
  color: var(--odex-surface-soft-contrast);
}

.text-odex-surfaceStrong {
  color: var(--odex-surface-strong);
}

.text-odex-surfaceStrongAccent {
  color: var(--odex-surface-strong-accent);
}

.text-odex-surfaceStrongContrast {
  color: var(--odex-surface-strong-contrast);
}

.text-odex-muted {
  color: var(--odex-muted);
}

.text-odex-mutedContrast {
  color: var(--odex-muted-contrast);
}

.bg-odex-primary-soft {
  background-color: color-mix(in srgb, var(--odex-primary) 10%, transparent);
}

.bg-odex-primary-strong {
  background-color: color-mix(in srgb, var(--odex-primary) 80%, black);
}

.hover\:bg-odex-primary-strong:hover {
  background-color: color-mix(in srgb, var(--odex-primary) 80%, black);
}

.border-odex-primary-soft {
  border-color: color-mix(in srgb, var(--odex-primary) 30%, transparent);
}

.bg-odex-accent-soft {
  background-color: color-mix(in srgb, var(--odex-accent) 10%, transparent);
}

.bg-odex-accent-strong {
  background-color: color-mix(in srgb, var(--odex-accent) 80%, black);
}

.hover\:bg-odex-accent-strong:hover {
  background-color: color-mix(in srgb, var(--odex-accent) 80%, black);
}

.border-odex-accent-soft {
  border-color: color-mix(in srgb, var(--odex-accent) 30%, transparent);
}

#footer-scripts + div + button {
  display: none !important;
}
#footer-scripts + div + button + div {
  display: none !important;
}
#footer-scripts + div + button + div + div {
  display: none !important;
}
#footer-scripts + button {
  display: none !important;
}
#footer-scripts + div + button + div {
  display: none !important;
}
#footer-scripts + div + button + div + div {
  display: none !important;
}
#footer-scripts + iframe + div + button {
  display: none !important;
}
#footer-scripts + iframe + div + button + div {
  display: none !important;
}
#footer-scripts + iframe + div + button + div + div {
  display: none !important;
}
#footer-scripts + iframe + button + div {
  display: none !important;
}
#footer-scripts + iframe + button + div + div {
  display: none !important;
}
#footer-scripts + iframe + button + div + div + div {
  display: none !important;
}
#footer-scripts + div + iframe + div + button {
  display: none !important;
}
#footer-scripts + div + iframe + div + button + div {
  display: none !important;
}
#footer-scripts + div + iframe + div + button + div + div {
  display: none !important;
}
#footer-scripts + div + iframe + button + div {
  display: none !important;
}
#footer-scripts + div + iframe + button + div + div {
  display: none !important;
}
#footer-scripts + div + iframe + button + div + div + div {
  display: none !important;
}
#footer-scripts + div + div + iframe + button {
  display: none !important;
}
#footer-scripts + div + div + iframe + button + div {
  display: none !important;
}
#footer-scripts + div + div + iframe + button + div + div {
  display: none !important;
}
#footer-scripts + div + div + button {
  display: none !important;
}
#footer-scripts + div + div + button + iframe {
  display: none !important;
}
#footer-scripts + div + div + button + iframe + div {
  display: none !important;
}
#footer-scripts + div + div + button + iframe + div + div {
  display: none !important;
}

button.iubenda-tp-btn,
button[data-tp-float],
button[data-tp-icon],
button[data-iub-enabled="1"][data-tp-float] {
  display: none !important;
  visibility: hidden !important;
  pointer-events: none !important;
}

.grecaptcha-badge {
  visibility: hidden !important;
}

.recaptcha-notice {
  font-size: 12px;
  opacity: 0.7;
  margin-top: 8px;
}
