/** Shopify CDN: Minification failed

Line 350:0 Unexpected "<"
Line 447:0 Unexpected "<"

**/
/*MODIFICHE SCHEDA PRODOTTO*/
.complementary-product {
    padding-top: 0.7rem;
}
.recommendations-product-heading {
    margin-bottom: 0;
  }

/* =========================================
   LUXURY GLASS EFFECT
   per:
   - .product-information--inner
   - .product-description
   - .drawer-tabs-wrapper
========================================= */

:root {
  --glass-bg: rgba(255, 255, 255, 0.34);
  --glass-bg-strong: rgba(255, 255, 255, 0.46);
  --glass-border: rgba(255, 255, 255, 0.42);
  --glass-shadow: 0 10px 30px rgba(20, 20, 20, 0.06);
  --glass-highlight: rgba(255, 255, 255, 0.55);
  --lux-text: #171717;
  --lux-muted: #7e776f;
  --lux-line: rgba(23, 23, 23, 0.08);
  --lux-gold: rgba(183, 154, 106, 0.75);
}

.product-vendor-logo{
  width:100px;
}

/* contenitore principale colonna info */
.product-information--wrapper {
  position: relative;
}

/* pannello vetro */
.product-information--inner {
  position: relative;
  padding: 26px 28px;
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.42) 0%, rgba(255,255,255,0.22) 100%);
  border: 1px solid var(--glass-border);
  box-shadow: var(--glass-shadow);
  backdrop-filter: blur(18px) saturate(140%);
  -webkit-backdrop-filter: blur(18px) saturate(140%);
  overflow: hidden;
}

/* riflesso alto elegante */
.product-information--inner::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      135deg,
      rgba(255,255,255,0.40) 0%,
      rgba(255,255,255,0.14) 16%,
      rgba(255,255,255,0.04) 38%,
      rgba(255,255,255,0.00) 60%
    );
  pointer-events: none;
}

/* bordo luce interno */
.product-information--inner::after {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: 23px;
  border: 1px solid rgba(255,255,255,0.18);
  pointer-events: none;
}

/* descrizione/specs */
.product-information--inner .product-description {
  position: relative;
  margin-top: 24px;
  padding: 6px 0 0;
  border-top: 1px solid rgba(23, 23, 23, 0.08);
  z-index: 1;
}

/* righe info */
.product-information--inner .product-description .product-text {
  position: relative;
  display: block;
  padding: 18px 18px;
  margin: 0 0 8px 0;
  border: 1px solid rgba(255,255,255,0.20);
  border-radius: 16px;
  background: linear-gradient(180deg, rgba(255,255,255,0.20) 0%, rgba(255,255,255,0.10) 100%);
  color: var(--lux-text);
  font-size: 15px;
  line-height: 1.6;
  letter-spacing: 0.01em;
  font-weight: 400;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.22);
  transition:
    transform 0.35s ease,
    background 0.35s ease,
    border-color 0.35s ease,
    box-shadow 0.35s ease;
}

.product-information--inner .product-description .product-text:hover {
  transform: translateY(-1px);
  background: linear-gradient(180deg, rgba(255,255,255,0.28) 0%, rgba(255,255,255,0.14) 100%);
  border-color: rgba(255,255,255,0.34);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.28),
    0 10px 20px rgba(23,23,23,0.04);
}

/* piccolo highlight luxury */
.product-information--inner .product-description .product-text::before {
  content: "";
  position: absolute;
  top: 0;
  left: 18px;
  right: 18px;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(255,255,255,0.55) 50%, transparent 100%);
  opacity: 0.8;
}

/* tabs finali */
.drawer-tabs-wrapper {
  position: relative;
  z-index: 1;
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid rgba(23,23,23,0.08);
}

.drawer-tabs-wrapper .tab {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  padding: 0;
  margin: 0;
  list-style: none;
}

/* singolo tab glass */
.drawer-tabs-wrapper .tab .tab-item {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 58px;
  padding: 14px 16px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,0.22);
  background: linear-gradient(180deg, rgba(255,255,255,0.22) 0%, rgba(255,255,255,0.10) 100%);
  color: var(--lux-text);
  font-size: 12px;
  line-height: 1.2;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 500;
  text-align: center;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.20);
  transition:
    transform 0.3s ease,
    border-color 0.3s ease,
    background 0.3s ease,
    box-shadow 0.3s ease;
}

.drawer-tabs-wrapper .tab .tab-item:hover {
  transform: translateY(-1px);
  border-color: rgba(255,255,255,0.34);
  background: linear-gradient(180deg, rgba(255,255,255,0.30) 0%, rgba(255,255,255,0.14) 100%);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.26),
    0 8px 18px rgba(23,23,23,0.05);
}

/* underline gold luxury */
.drawer-tabs-wrapper .tab .tab-item::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 10px;
  width: 24px;
  height: 1px;
  background: var(--lux-gold);
  transform: translateX(-50%);
  transition: width 0.3s ease;
}

.drawer-tabs-wrapper .tab .tab-item:hover::after,
.drawer-tabs-wrapper .tab .tab-item.active::after,
.drawer-tabs-wrapper .tab .tab-item[aria-selected="true"]::after {
  width: 44px;
}

/* compatibilità e fallback */
@supports not ((backdrop-filter: blur(10px)) or (-webkit-backdrop-filter: blur(10px))) {
  .product-information--inner {
    background: rgba(255, 255, 255, 0.88);
  }

  .product-information--inner .product-description .product-text,
  .drawer-tabs-wrapper .tab .tab-item {
    background: rgba(255, 255, 255, 0.78);
  }
}

/* responsive */
@media screen and (max-width: 989px) {
  .product-information--inner {
    padding: 18px 18px 20px;
    border-radius: 20px;
  }

  .product-information--inner .product-description .product-text {
    font-size: 14px;
    padding: 16px 14px;
    border-radius: 14px;
  }

  .drawer-tabs-wrapper .tab {
    grid-template-columns: 1fr;
  }

  .drawer-tabs-wrapper .tab .tab-item {
    min-height: 50px;
    font-size: 11px;
    letter-spacing: 0.12em;
  }
}
.drawer-tabs-wrapper .tab .tab-item {
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
  text-decoration: none !important;
  min-height: auto;
  padding: 4px 0;
  border-radius: 0;
  color: rgba(23, 23, 23, 0.68);
  font-size: 11px;
  line-height: 1.35;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 400;
  position: relative;
  transform: none !important;
  transition: color 0.25s ease;
}

.drawer-tabs-wrapper .tab .tab-item::before {
  display: none !important;
  content: none !important;
}

.drawer-tabs-wrapper .tab .tab-item::after {
  content: "";
  display: block !important;
  position: absolute;
  left: 50%;
  bottom: -4px;
  width: 0;
  height: 1px;
  background: rgba(183, 154, 106, 0.65);
  transform: translateX(-50%);
  transition: width 0.25s ease;
}

.drawer-tabs-wrapper .tab .tab-item:hover::after,
.drawer-tabs-wrapper .tab .tab-item.active::after,
.drawer-tabs-wrapper .tab .tab-item[aria-selected="true"]::after {
  width: 18px;
}

.drawer-tabs-wrapper .tab .tab-item:hover,
.drawer-tabs-wrapper .tab .tab-item.active,
.drawer-tabs-wrapper .tab .tab-item[aria-selected="true"] {
  color: rgba(23, 23, 23, 0.95);
}
/* =========================================
   PDP DESKTOP - LAYOUT 55 / 45
========================================= */
@media screen and (min-width: 992px) {

  /* container principale */
  .featured-product-grid.main-product-grid.slider-left,
  .featured-product--grid.main-product--grid.slider-left {
    display: flex !important;
    align-items: flex-start;
    justify-content: space-between;
    width: 100%;
    gap: 56px !important;
    padding-inline: 0 !important;
    box-sizing: border-box;
  }

  /* colonna gallery = 55% */
  .featured-product-grid.main-product-grid.slider-left .featured-gallery-card,
  .featured-product--grid.main-product--grid.slider-left .featured-gallery-card {
    flex: 0 0 calc(55% - 28px) !important;
    width: calc(55% - 28px) !important;
    max-width: calc(55% - 28px) !important;
    min-width: 0 !important;
    box-sizing: border-box;
  }

  /* colonna info = 45% */
  .featured-product-grid.main-product-grid.slider-left .product-information--wrapper,
  .featured-product--grid.main-product--grid.slider-left .product-information--wrapper {
    flex: 0 0 calc(45% - 28px) !important;
    width: calc(45% - 28px) !important;
    max-width: calc(45% - 28px) !important;
    min-width: 0 !important;
    padding: 0 !important;
    box-sizing: border-box;
  }

  /* card interna scheda prodotto */
  .featured-product-grid.main-product-grid.slider-left .product-information--inner,
  .featured-product--grid.main-product--grid.slider-left .product-information--inner {
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
    padding: 44px !important;
    box-sizing: border-box;
  }

  /* slider / gallery interna */
  .featured-product-grid.main-product-grid.slider-left .featured-product-slider,
  .featured-product--grid.main-product--grid.slider-left .featured-product-slider {
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
  }
}

/*CAROSELLO VARIANTI*/ 

<style>
/* Disabilita il comportamento carosello del blocco "Goes well with" */
.recommendations-slider.swiper {
  overflow: visible !important;
}

.recommendations-slider .swiper-wrapper {
  display: grid !important;
  grid-template-columns: repeat(6, 1fr) !important;
  gap: 20px !important;
  transform: none !important;
  transition: none !important;
}

.recommendations-slider-item.swiper-slide {
  width: auto !important;
  margin: 0 !important;
}

/* Nasconde eventuali frecce/pallini di navigazione */
.recommendations-slider ~ .swiper-button-next,
.recommendations-slider ~ .swiper-button-prev,
.recommendations-slider ~ .swiper-pagination {
  display: none !important;
}

/* Responsive */
@media (max-width: 989px) {
  .recommendations-slider .swiper-wrapper {
    grid-template-columns: repeat(3, 1fr) !important;
  }
}
@media (max-width: 749px) {
  .recommendations-slider .swiper-wrapper {
    grid-template-columns: repeat(2, 1fr) !important;
  }
}
/* Riduce la dimensione del titolo della newsletter nel footer */
.footer-newsletter-title .h3.heading-font,
.footer-newsletter-title .heading-font {
  font-size: 30px !important;
  line-height: 1.3 !important;
}

/* Versione mobile - ancora più piccolo */
@media screen and (max-width: 749px) {
  .footer-newsletter-title .h3.heading-font,
  .footer-newsletter-title .heading-font {
    font-size: 20px !important;
    line-height: 1.3 !important;
  }
}


/* =========================================
   DRAWER MENU — Ridimensionamento font desktop
   Voci principali più piccole,
   voci secondarie e contatti più grandi
========================================= */
@media screen and (min-width: 992px) {

  /* Voci principali (Servizi, Chi siamo, Journal) — più piccole */
  .header-menu-drawer-text.h2 {
    font-size: clamp(1.6rem, 2.8vw, 2.2rem) !important;
    line-height: 1.15 !important;
  }

  /* Voci secondarie (Servizi Centro Ottico, Lenti, Contatti) — più grandi */
  .header-menu-drawer--links li a {
    font-size: 0.95rem !important;
  }

  /* Info contatti (EMAIL, Orari, Contattaci) — più grandi */
  .header-menu-drawer-contact-info li {
    font-size: 0.95rem !important;
  }

  /* Label in grassetto (EMAIL, Orari, Contattaci per qualsiasi dubbio) */
  .header-menu-drawer-contact-info li strong {
    font-size: 0.8rem !important;
    letter-spacing: 0.06em !important;
    text-transform: uppercase !important;
  }
}

/* =========================================================
   PULSANTE "ACQUISTA CON SHOP" — pillola, senza doppio
   arrotondamento in conflitto
   ========================================================= */

shop-pay-button {
  --shop-pay-button-border-radius: 999px;
  width: 100%;
  display: block;
}


</style>

