/* init pmg_style */
@charset "UTF-8";
/* ====================== css/header.css ====================== */
/* ============================================================
   HEADER
============================================================ */
.hdr {
  position: fixed;
  top: 8px;
  left: 8px;
  right: 8px;
  z-index: 1000;
  background: #fff;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  font-family: var(--font);
  border-radius: 8px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}
/* ── Topbar ──────────────────────────────────────────────── */
.hdr-topbar {
  border-bottom: 1px solid #e9ebf3;
}
.hdr-topbar__inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 6px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.hdr-topbar__left, .hdr-topbar__right {
  display: flex;
  align-items: center;
  gap: 20px;
}
.hdr-topbar__link {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 400;
  color: #6e718e;
  text-decoration: none;
  line-height: 1;
  white-space: nowrap;
  transition: color 0.2s;
}
.hdr-topbar__link:hover {
  color: var(--blue);
}
.hdr-topbar__link svg {
  flex-shrink: 0;
}
.hdr-topbar__cerca {
  display: flex;
  align-items: center;
  gap: 6px;
  height: 28px;
  padding: 0 12px;
  background: #f4f5f9;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 500;
  color: #6e718e;
  text-decoration: none;
  white-space: nowrap;
  transition: background 0.2s, color 0.2s;
}
.hdr-topbar__cerca:hover {
  background: var(--blue-50);
  color: var(--blue);
}
/* ── Main Nav ─────────────────────────────────────────────── */
.hdr-nav {
  background: transparent;
}
.hdr-nav__inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
/* Logo */
.hdr-nav__logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  text-decoration: none;
}
.hdr-nav__logo img {
  height: 16px;
  width: auto;
  display: block;
  transition: height 0.2s;
}
@media (max-width: 480px) {
  .hdr-nav__logo img {
    height: 12px;
  }
}
/* Nav items */
.hdr-nav__menu {
  display: flex;
  align-items: center;
  gap: 24px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.hdr-nav__item {
  display: flex;
  align-items: center;
  gap: 4px;
}
.hdr-nav__link {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 16px;
  font-weight: 500;
  color: #17204f;
  text-decoration: none;
  white-space: nowrap;
  transition: color 0.2s;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  font-family: var(--font);
  line-height: 1;
}
.hdr-nav__link:hover, .hdr-nav__link--active {
  color: var(--cyan);
}
.hdr-nav__link svg {
  flex-shrink: 0;
  transition: transform 0.2s;
}
.hdr-nav__item--open .hdr-nav__link {
  color: var(--cyan);
}
.hdr-nav__item--open .hdr-nav__link svg {
  transform: rotate(180deg);
}
/* ── Simple Dropdown (Azienda, Mercati, Tech pills, Area tecnica) ─── */
.hdr-nav__item--has-dropdown {
  position: relative;
}
.hdr-nav__dropdown {
  position: absolute;
  top: calc(100% + 14px);
  left: 0;
  min-width: 200px;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 6px 24px rgba(23, 32, 79, 0.18);
  padding: 8px 0;
  margin: 0;
  list-style: none;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-4px);
  transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s;
  z-index: 1002;
}
.hdr-nav__item--has-dropdown.hdr-nav__item--open > .hdr-nav__dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.hdr-nav__dropdown a {
  display: block;
  padding: 8px 18px;
  font-size: 14px;
  font-weight: 500;
  color: #17204f;
  text-decoration: none;
  white-space: nowrap;
  transition: color 0.15s, background 0.15s;
}
.hdr-nav__dropdown a:hover, .hdr-nav__dropdown a:focus {
  color: var(--cyan);
  background: #f4f5f9;
}
/* ── Hamburger (mobile) ───────────────────────────────────── */
.hdr-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.hdr-hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: #17204f;
  border-radius: 2px;
  transition: transform 0.25s, opacity 0.2s;
  transform-origin: center;
}
/* ── Mega Menu (Prodotti dropdown) ────────────────────────── */
.hdr-mega {
  position: fixed;
  top: 8px;
  left: 8px;
  z-index: 1001;
  background: #fff;
  box-shadow: 0 6px 24px rgba(23, 32, 79, 0.18);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.18s ease;
  font-family: var(--font);
  overflow: hidden;
}
.hdr-mega--open {
  opacity: 1;
  pointer-events: auto;
}
/* Columns wrapper */
.hdr-mega__cols {
  display: flex;
  align-items: stretch;
}
/* Each column */
.hdr-mega__col {
  width: 320px;
  display: flex;
  flex-direction: column;
  background: #fff;
}
.hdr-mega__col--hidden {
  display: none;
}
/* Top area — 101px tall (36px spacer + 65px content) with bottom divider */
.hdr-mega__col-top {
  height: 101px;
  padding-top: 36px;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  flex-shrink: 0;
  background: #fff;
}
.hdr-mega__col-top--empty {
  background: #fff;
}
/* Close button (col 1 only) */
.hdr-mega__close {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
  height: 65px;
  padding: 0 20px;
  background: none;
  border: none;
  cursor: pointer;
  font-family: inherit;
}
.hdr-mega__close-ico {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.hdr-mega__close-text {
  font-size: 20px;
  font-weight: 600;
  color: var(--cyan);
  line-height: 1;
}
/* List */
.hdr-mega__list {
  list-style: none;
  margin: 0;
  padding: 20px;
}
.hdr-mega__item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  height: 45px;
  padding: 0;
  border-bottom: 1px solid #d6d6d6;
  cursor: pointer;
  transition: background 0.1s;
}
.hdr-mega__item:last-child {
  border-bottom: none;
}
.hdr-mega__item a {
  flex: 1;
  font-size: 16px;
  font-weight: 400;
  color: #000;
  text-decoration: none;
  display: block;
  transition: color 0.12s;
  line-height: 1.2;
}
/* Highlighted "Tutte le …" item at top of each column */
.hdr-mega__item--all a {
  color: var(--blue);
  font-weight: 600;
}
.hdr-mega__item:hover a, .hdr-mega__item--active a {
  color: var(--cyan);
}
/* Circle arrow icon (right side of each row) */
.hdr-mega__ico {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
/* ── Mobile Drawer ────────────────────────────────────────── */
.hdr-drawer-overlay {
  position: fixed;
  inset: 0;
  background: rgba(23, 32, 79, 0.45);
  z-index: 1099;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
  display: none;
}
.hdr-drawer-overlay--open {
  opacity: 1;
  pointer-events: auto;
}
.hdr-drawer {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: 320px;
  max-width: 88vw;
  background: #fff;
  z-index: 1100;
  transform: translateX(100%);
  transition: transform 0.3s ease;
  overflow-y: auto;
  box-shadow: -2px 0 24px rgba(23, 32, 79, 0.18);
  font-family: var(--font);
  display: none;
  flex-direction: column;
}
.hdr-drawer--open {
  transform: translateX(0);
}
.hdr-drawer__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 20px;
  border-bottom: 1px solid #e9ebf3;
  flex-shrink: 0;
}
.hdr-drawer__logo img {
  display: block;
  height: 14px;
  width: auto;
}
.hdr-drawer__close {
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.hdr-drawer__nav {
  padding: 8px 20px 32px;
}
.hdr-drawer__list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.hdr-drawer__entry {
  border-bottom: 1px solid #e9ebf3;
}
.hdr-drawer__link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 14px 0;
  font-family: inherit;
  font-size: 16px;
  font-weight: 500;
  color: var(--blue-dark);
  background: none;
  border: none;
  text-decoration: none;
  cursor: pointer;
  text-align: left;
  line-height: 1.2;
}
.hdr-drawer__link--small {
  font-size: 14px;
  color: #6e718e;
  font-weight: 400;
  padding: 10px 0;
}
.hdr-drawer__chev {
  flex-shrink: 0;
  transition: transform 0.2s ease;
  color: var(--blue-dark);
}
.hdr-drawer__entry--open > .hdr-drawer__link .hdr-drawer__chev {
  transform: rotate(180deg);
}
.hdr-drawer__entry--open > .hdr-drawer__link--toggle {
  color: var(--cyan);
}
.hdr-drawer__entry--open > .hdr-drawer__link--toggle .hdr-drawer__chev {
  color: var(--cyan);
}
.hdr-drawer__sub {
  list-style: none;
  margin: 0;
  padding: 0 0 8px 16px;
  margin-left: 4px;
  display: none;
}
.hdr-drawer__entry--open > .hdr-drawer__sub {
  display: block;
}
.hdr-drawer__sub .hdr-drawer__entry {
  border-bottom-color: #f4f5f9;
}
.hdr-drawer__sub .hdr-drawer__link {
  font-size: 15px;
  font-weight: 400;
  padding: 12px 0;
}
.hdr-drawer__sub .hdr-drawer__sub .hdr-drawer__link {
  font-size: 14px;
  color: #6e718e;
}
.hdr-drawer__divider {
  height: 1px;
  background: #e9ebf3;
  margin: 16px 0;
}
/* ── Responsive ───────────────────────────────────────────── */
@media (max-width: 1024px) {
  .hdr-topbar {
    display: none;
  }
  .hdr-nav__menu {
    display: none;
  }
  .hdr-hamburger {
    display: flex;
  }
  .hdr-mega {
    display: none !important;
  }
  .hdr-drawer {
    display: flex;
  }
  .hdr-drawer-overlay {
    display: block;
  }
}
/* ====================== css/style.css ====================== */
/* ============================================================
   GLOBAL
============================================================ */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
:root {
  --blue: #273583;
  --blue-dark: #17204f;
  --blue-navy: #23397c;
  --cyan: #00ace9;
  --gray: #6e718e;
  --blue-25: #f4f5f9;
  --blue-50: #e9ebf3;
  --font: "Host Grotesk", sans-serif;
}
body {
  background: #ffffff;
  font-family: var(--font);
  color: #1a1a2e;
}
/* ============================================================
   SHARED BUTTON (.sge-btn)
============================================================ */
.sge-btn {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 0;
  width: 171px;
  height: 48px;
  padding: 0 6px 0 20px;
  background: #fff;
  border-radius: 999px;
  text-decoration: none;
  font-size: 18px;
  font-weight: 700;
  color: var(--blue);
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
  transition: background 0.25s, color 0.25s, box-shadow 0.2s;
}
.sge-btn:hover {
  background: var(--cyan);
  color: #fff;
  box-shadow: 0 0 28px rgba(0, 0, 0, 0.16);
}
.sge-btn__icon {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--cyan);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transform: rotate(-135deg);
  transition: background 0.25s, transform 0.25s;
}
.sge-btn:hover .sge-btn__icon {
  background: var(--blue);
  transform: rotate(-90deg);
}
.sge-btn__icon img {
  width: 20px;
  height: 20px;
  display: block;
}
/* ============================================================
   HERO
============================================================ */
.sge-hero {
  position: relative;
  min-height: 520px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: #0a2f63;
}
.sge-hero__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.sge-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(7, 35, 76, 0.85) 0%, rgba(7, 35, 76, 0.65) 100%);
}
.sge-hero__inner {
  position: relative;
  z-index: 1;
  width: min(800px, calc(100% - 40px));
  text-align: center;
  padding: 200px 20px 120px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
.sge-hero__eyebrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  font-size: 14px;
  font-weight: 400;
  color: #fff;
  letter-spacing: 0.02em;
}
.sge-hero__title {
  font-size: 50px;
  font-weight: 800;
  line-height: 55px;
  color: #fff;
  margin: 0;
}
.sge-hero__subtitle {
  font-size: 20px;
  font-weight: 400;
  line-height: 26px;
  color: #f4f4f4;
  max-width: 560px;
}
.sge-hero__buttons {
  display: flex;
  gap: 16px;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 16px;
}
.sge-hero__btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  height: 56px;
  padding: 0 24px;
  border-radius: 999px;
  font-size: 18px;
  font-weight: 700;
  text-decoration: none;
  transition: background 0.25s, color 0.25s, border-color 0.25s;
}
.sge-hero__btn--solid {
  background: #fff;
  color: var(--blue);
}
.sge-hero__btn--solid:hover {
  background: var(--blue);
  color: #fff;
}
.sge-hero__btn--solid:hover .sge-hero__btn-icon {
  color: #fff;
}
.sge-hero__btn--outline {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255, 255, 255, 0.2);
  min-width: 170px;
  justify-content: space-between;
}
.sge-hero__btn--outline:hover {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  border-color: transparent;
}
.sge-hero__btn--outline:hover .sge-hero__btn-icon {
  background: transparent;
  color: #fff;
}
.sge-hero__btn-icon {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background 0.25s, color 0.25s;
}
@media (max-width: 768px) {
  .sge-hero__inner {
    padding: 80px 20px 100px;
  }
  .sge-hero__title {
    font-size: 32px;
    line-height: 38px;
  }
  .sge-hero__title br {
    display: none;
  }
  .sge-hero__subtitle {
    font-size: 16px;
  }
  .sge-hero__btn {
    height: 48px;
    font-size: 16px;
  }
}
/* ============================================================
   SEARCH BAR
============================================================ */
.sge-search {
  width: min(1342px, calc(100% - 40px));
  margin: -40px auto 0;
  position: relative;
  z-index: 10;
}
.sge-search__inner {
  background: #fff;
  border-radius: 20px;
  border-top: 9px solid var(--cyan);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
  padding: 24px 34px 20px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.sge-search__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.sge-search__title-row {
  display: flex;
  align-items: center;
  gap: 12px;
}
.sge-search__title {
  font-size: 32px;
  font-weight: 600;
  color: var(--blue);
  line-height: 1;
}
.sge-search__all-link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 18px;
  font-weight: 500;
  color: var(--cyan);
  text-decoration: none;
  transition: opacity 0.2s;
}
.sge-search__all-link:hover {
  opacity: 0.75;
}
.sge-search__filters {
  display: flex;
  gap: 12px;
  align-items: center;
}
.sge-search__select {
  position: relative;
  flex: 1;
  min-width: 0;
  height: 44px;
  padding: 0 16px;
  background: var(--blue-50);
  border: 1px solid #d6d6d6;
  border-radius: 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  font-size: 14px;
  color: #1a1a2e;
  transition: border-color 0.2s;
  user-select: none;
}
.sge-search__select:hover {
  border-color: var(--cyan);
}
.sge-search__select-label {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.sge-search__select svg {
  flex-shrink: 0;
  transition: transform 0.2s;
}
.sge-search__select.is-open svg {
  transform: rotate(180deg);
}
.sge-search__dropdown {
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  right: 0;
  margin: 0;
  padding: 6px 0;
  list-style: none;
  background: #fff;
  border: 1px solid #d6d6d6;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-4px);
  transition: opacity 0.15s, transform 0.15s, visibility 0.15s;
  z-index: 20;
}
.sge-search__select.is-open .sge-search__dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.sge-search__dropdown-item {
  padding: 8px 16px;
  font-size: 14px;
  color: #1a1a2e;
  cursor: pointer;
  transition: background 0.15s;
}
.sge-search__dropdown-item:hover {
  background: var(--blue-50);
}
.sge-search__btn {
  width: 44px;
  height: 44px;
  border-radius: 30px;
  background: var(--blue);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background 0.2s;
}
.sge-search__btn:hover {
  background: var(--blue-dark);
}
@media (max-width: 900px) {
  .sge-search__filters {
    flex-wrap: wrap;
  }
  .sge-search__select {
    flex: 1 0 calc(50% - 6px);
  }
  .sge-search__title {
    font-size: 22px;
  }
}
@media (max-width: 600px) {
  .sge-search__inner {
    padding: 20px 16px 16px;
  }
  .sge-search__title {
    font-size: 18px;
  }
  .sge-search__select {
    flex: 1 0 100%;
  }
  .sge-search__header {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
  .sge-search__title {
    white-space: nowrap;
  }
}
/* ============================================================
   UNA COSA SERIA
============================================================ */
.sge-about {
  width: min(1345px, calc(100% - 40px));
  display: flex;
  align-items: center;
  gap: 70px;
  margin: 80px auto;
}
.sge-about__content {
  flex: 0 0 658px;
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.sge-about__title {
  font-size: 40px;
  font-weight: 700;
  line-height: 1.2;
  color: var(--blue);
}
.sge-about__title span {
  color: var(--cyan);
}
.sge-about__text {
  display: flex;
  flex-direction: column;
  gap: 16px;
  font-size: 18px;
  font-weight: 300;
  line-height: 22px;
  color: var(--gray);
}
.sge-about__text strong {
  font-weight: 700;
  color: var(--gray);
}
.sge-about__image-wrap {
  flex: 1;
  position: relative;
  width: 100%;
  max-width: 620px;
  aspect-ratio: 1.1481481481;
  overflow: hidden;
  border-radius: 22px;
  background: #fff;
  container-type: inline-size;
}
.sge-about__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.sge-about__cutout {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 50%;
  height: 25.2%;
  background: #fff;
  border-top-right-radius: 18px;
  padding: 3cqw 3cqw 0 0;
  margin: 0;
  z-index: 2;
}
.sge-about__cutout::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 100%;
  width: 22px;
  height: 22px;
  background: radial-gradient(circle at top right, #0000 22px, #fff 22.5px);
}
.sge-about__cutout::after {
  content: "";
  position: absolute;
  left: 100%;
  bottom: 0;
  width: 22px;
  height: 22px;
  background: radial-gradient(circle at top right, #0000 22px, #fff 22.5px);
}
.sge-about__badge {
  width: 100%;
  height: 100%;
  background: var(--cyan);
  border-radius: 20px;
  color: #fff;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.sge-about__badge strong {
  display: block;
  font-size: clamp(16px, 6.2cqw, 38px);
  font-weight: 800;
  line-height: 1;
  margin-bottom: clamp(2px, 1.2cqw, 8px);
}
.sge-about__badge em {
  font-size: clamp(9px, 2.8cqw, 17px);
  font-style: italic;
  font-weight: 700;
  line-height: 1.2;
}
@media (max-width: 900px) {
  .sge-about__image-wrap {
    max-width: 100%;
  }
}
@media (max-width: 1200px) {
  .sge-about {
    gap: 40px;
  }
  .sge-about__content {
    flex: 0 0 55%;
  }
}
@media (max-width: 900px) {
  .sge-about {
    flex-direction: column;
    gap: 40px;
    align-items: stretch;
  }
  .sge-about__content {
    flex: none;
    width: 100%;
  }
  .sge-about__image-wrap {
    flex: none;
    width: 100%;
  }
  .sge-about__cutout {
    width: 60%;
  }
  .sge-about__title {
    font-size: 30px;
  }
}
/* ============================================================
   COMPONENTI IN ESCLUSIVA
============================================================ */
.sge-exclusive {
  width: min(1342px, calc(100% - 40px));
  display: flex;
  align-items: center;
  gap: 68px;
  margin: 80px auto;
}
.sge-exclusive__image-wrap {
  flex: 0 0 617px;
}
.sge-exclusive__img {
  width: 100%;
  height: 369px;
  object-fit: cover;
  border-radius: 20px;
  display: block;
}
.sge-exclusive__content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.sge-exclusive__title {
  font-size: 40px;
  font-weight: 700;
  line-height: 1.2;
  color: var(--blue);
}
.sge-exclusive__title span {
  color: var(--cyan);
}
.sge-exclusive__text {
  font-size: 18px;
  font-weight: 300;
  line-height: 22px;
  color: var(--gray);
}
.sge-exclusive__text strong {
  font-weight: 700;
  color: var(--gray);
}
@media (max-width: 900px) {
  .sge-exclusive {
    flex-direction: column;
    gap: 32px;
  }
  .sge-exclusive__image-wrap {
    flex: none;
    width: 100%;
  }
  .sge-exclusive__img {
    height: 240px;
  }
  .sge-exclusive__title {
    font-size: 28px;
  }
}
/* ============================================================
   MERCATI DI RIFERIMENTO
============================================================ */
.sge-markets {
  position: relative;
}
.sge-markets__bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 301px;
  background: linear-gradient(to top, #00ace9, #273583);
  z-index: 0;
  overflow: hidden;
}
.sge-markets__texture {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  mix-blend-mode: overlay;
  opacity: 0.15;
  pointer-events: none;
}
.sge-markets__inner {
  position: relative;
  z-index: 1;
  width: min(1345px, calc(100% - 40px));
  margin: 0 auto;
  padding: 49px 0 40px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.sge-markets__title-row {
  display: flex;
  align-items: center;
  gap: 12px;
}
.sge-markets__title {
  font-size: 40px;
  font-weight: 700;
  color: #fff;
  line-height: 1;
}
/* Mercati swiper */
.sge-markets-swiper {
  width: 100%;
}
.sge-markets-swiper .swiper-wrapper {
  align-items: stretch;
}
@media (max-width: 1199px) {
  .sge-markets-swiper {
    width: calc(100% + 40px);
    margin-left: -20px;
  }
}
.sge-market-card {
  position: relative;
  height: 222px;
  border-radius: 20px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 24px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.25);
}
.sge-market-card__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.sge-market-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(270deg, rgba(0, 0, 0, 0) 0%, rgba(39, 53, 131, 0.8) 71%);
  mix-blend-mode: multiply;
  border-radius: 20px;
}
.sge-market-card__icon-wrap {
  position: relative;
  z-index: 1;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  overflow: hidden;
}
.sge-market-card__icon-wrap img {
  width: 24px;
  height: 24px;
  display: block;
}
.sge-market-card__label {
  position: relative;
  z-index: 1;
  font-size: 16px;
  font-weight: 600;
  color: #fff;
}
/* ── Swiper nav (shared) ────────────────────── */
.sge-swiper-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.sge-swiper-dots {
  display: flex;
  gap: 4px;
  align-items: center;
}
.sge-swiper-dot {
  width: 16px;
  height: 16px;
  border-radius: 999px;
  border: 1px solid var(--blue);
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s;
  background: transparent;
  flex-shrink: 0;
}
.sge-swiper-dot--active {
  background: var(--cyan);
  border-color: var(--cyan);
}
.sge-swiper-arrows {
  display: flex;
  gap: 8px;
}
.sge-swiper-arrow {
  width: 24px;
  height: 24px;
  border: none;
  background: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue);
  padding: 0;
  transition: color 0.2s;
}
.sge-swiper-arrow:hover {
  color: var(--cyan);
}
@media (max-width: 768px) {
  .sge-markets__title {
    font-size: 28px;
  }
  .sge-markets__inner {
    padding: 32px 0 32px;
  }
}
/* ============================================================
   PRODOTTI
============================================================ */
.sge-products {
  margin: 80px 0;
}
.sge-products__inner {
  width: min(1353px, calc(100% - 40px));
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.sge-products__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.sge-products__title-row {
  display: flex;
  align-items: center;
  gap: 12px;
}
.sge-products__title {
  font-size: 40px;
  font-weight: 700;
  color: var(--blue);
}
.sge-products__all-link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 18px;
  font-weight: 500;
  color: var(--cyan);
  text-decoration: none;
  transition: opacity 0.2s;
}
.sge-products__all-link:hover {
  opacity: 0.75;
}
.sge-products-swiper {
  width: 100%;
}
.sge-products-swiper .swiper-slide {
  height: auto;
}
.sge-products-swiper {
  padding-block: 12px;
  margin-block: -12px;
}
@media (max-width: 1023px) {
  .sge-products-swiper {
    width: calc(100% + 40px);
    margin-left: -20px;
  }
}
.sge-product-card {
  position: relative;
  aspect-ratio: 0.81640625;
  cursor: pointer;
}
.sge-product-card__bg {
  position: absolute;
  top: -3.91%;
  left: -4.78%;
  width: calc(100% + 9.56%);
  height: calc(100% + 7.82%);
  display: block;
  pointer-events: none;
}
.sge-product-card__img-wrap {
  position: absolute;
  top: 7.42%;
  right: 11.96%;
  bottom: 30.86%;
  left: 12.44%;
  overflow: hidden;
}
.sge-product-card__product-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}
.sge-product-card__name {
  position: absolute;
  top: 76.95%;
  left: 4.78%;
  right: 28.23%;
  bottom: 4.3%;
  font-size: 16px;
  font-weight: 600;
  color: #1a1a2e;
  line-height: 1.2;
  display: flex;
  align-items: center;
  word-break: break-word;
}
.sge-product-card__arrow {
  position: absolute;
  top: 80.08%;
  left: 75.6%;
  right: 0;
  bottom: 0;
  background: var(--cyan);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.25s;
}
.sge-product-card__arrow img {
  width: 55%;
  height: 55%;
  display: block;
  transform: rotate(-135deg);
  transition: transform 0.25s;
}
.sge-product-card:hover .sge-product-card__arrow {
  background: var(--blue);
}
.sge-product-card:hover .sge-product-card__arrow img {
  transform: rotate(-90deg);
}
@media (max-width: 768px) {
  .sge-products__title {
    font-size: 28px;
  }
}
@media (max-width: 600px) {
  .sge-products__header {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
}
.sge-suppliers {
  width: min(1345px, calc(100% - 40px));
  display: flex;
  align-items: center;
  gap: 70px;
  margin: 80px auto;
}
.sge-suppliers__content {
  flex: 0 0 658px;
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.sge-suppliers__title {
  font-size: 40px;
  font-weight: 700;
  line-height: 1.2;
  color: var(--blue);
}
.sge-suppliers__title span {
  color: var(--cyan);
}
.sge-suppliers__text {
  font-size: 18px;
  font-weight: 300;
  line-height: 22px;
  color: var(--gray);
}
.sge-suppliers__image-wrap {
  flex: 1;
}
.sge-suppliers__img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  border-radius: 20px;
  display: block;
}
@media (max-width: 900px) {
  .sge-suppliers {
    flex-direction: column;
    gap: 40px;
  }
  .sge-suppliers__content {
    flex: none;
    width: 100%;
  }
  .sge-suppliers__image-wrap {
    width: 100%;
    flex: none;
  }
  .sge-suppliers__title {
    font-size: 28px;
  }
  .sge-suppliers__img {
    height: 240px;
  }
}
/* ============================================================
   FOOTER
============================================================ */
.site-footer {
  background: transparent;
  color: #ffffff;
  font-family: var(--font);
  padding-bottom: 24px;
}
.site-footer__container {
  width: min(1349px, calc(100% - 40px));
  border-radius: 20px;
  background: #23397c;
  margin: 0 auto;
  overflow: hidden;
}
/* Newsletter */
.site-footer__newsletter {
  padding: 43px 47px 0;
}
.site-footer__newsletter-inner {
  max-width: 1349px;
  margin: 0 auto;
  padding: 0 0 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 46px;
}
.site-footer__newsletter-title {
  font-size: 34px;
  font-weight: 700;
  line-height: 1.2;
  margin: 0 0 4px;
  color: #ffffff;
}
.site-footer__newsletter-subtitle {
  font-size: 34px;
  font-weight: 700;
  color: var(--cyan);
  margin: 0;
}
.site-footer__newsletter-form {
  flex-shrink: 0;
}
.site-footer__input-row {
  display: flex;
  align-items: center;
  background: #19295b;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 30px;
  overflow: hidden;
  margin-bottom: 14px;
  width: 650px;
}
.site-footer__input {
  flex: 1;
  height: 48px;
  padding: 0 18px;
  border: none;
  background: transparent;
  color: #ffffff;
  font-size: 14px;
  font-family: var(--font);
  outline: none;
}
.site-footer__input::placeholder {
  color: rgba(255, 255, 255, 0.6);
}
.site-footer__submit {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  height: 48px;
  padding: 0 8px 0 16px;
  background: #ffffff;
  color: var(--blue);
  font-size: 18px;
  font-weight: 700;
  font-family: var(--font);
  border: none;
  border-radius: 30px;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.2s;
  margin: 0;
}
.site-footer__submit:hover {
  background: #e8f4fd;
}
.site-footer__submit span {
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--cyan);
  flex-shrink: 0;
}
.site-footer__checkbox-label {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.75);
  cursor: pointer;
  padding-left: 4px;
}
.site-footer__checkbox {
  width: 19px;
  height: 19px;
  accent-color: var(--cyan);
  flex-shrink: 0;
  border: 1px solid rgba(114, 150, 206, 0.5);
  background: #fff;
  border-radius: 5px;
}
.site-footer__checkbox-label a {
  color: var(--cyan);
  text-decoration: underline;
}
/* Footer main */
.site-footer__main {
  padding: 56px 47px 0;
}
.site-footer__main-inner {
  max-width: 1349px;
  margin: 0 auto;
  padding: 0 0 48px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.8fr;
  gap: 60px;
}
.site-footer__col--brand .site-footer__logo {
  display: inline-block;
  margin-bottom: 24px;
  text-decoration: none;
}
.site-footer__col--brand .site-footer__logo img {
  display: block;
  width: 326px;
  max-width: 100%;
  height: auto;
}
.site-footer__col--brand p {
  font-size: 14px;
  line-height: 30px;
  max-width: 310px;
}
.site-footer__nav {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.site-footer__nav a {
  font-size: 14px;
  font-weight: 700;
  color: var(--cyan);
  text-decoration: none;
  transition: opacity 0.2s;
}
.site-footer__nav a:hover {
  opacity: 0.75;
}
.site-footer__col-title {
  font-size: 14px;
  font-weight: 700;
  color: var(--cyan);
  text-transform: uppercase;
  margin: 0 0 22px;
}
.site-footer__contact-info {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.site-footer__contact-info p {
  font-size: 13px;
  line-height: 1.6;
  margin: 0;
}
.site-footer__contact-info a {
  color: var(--cyan);
  text-decoration: none;
}
/* Footer legal */
.site-footer__legal {
  padding: 20px 47px 47px 47px;
}
.site-footer__legal-inner {
  max-width: 1349px;
  margin: 0 auto;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.site-footer__legal-text p {
  font-size: 11px;
  margin: 0 0 2px;
  line-height: 1.5;
  max-width: 580px;
}
.site-footer__legal-links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 24px;
  flex-shrink: 0;
}
.site-footer__legal-links a {
  font-size: 11px;
  font-weight: 700;
  color: var(--cyan);
  text-decoration: none;
  white-space: nowrap;
  text-transform: uppercase;
}
.site-footer__legal-links a:hover {
  opacity: 0.75;
}
@media (max-width: 1100px) {
  .site-footer__newsletter {
    padding-left: 40px;
    padding-right: 40px;
  }
  .site-footer__main {
    padding-left: 40px;
    padding-right: 40px;
  }
  .site-footer__main-inner {
    grid-template-columns: 1fr 1fr;
  }
  .site-footer__legal {
    padding-left: 40px;
    padding-right: 40px;
  }
  .site-footer__input-row {
    width: 400px;
  }
}
@media (max-width: 900px) {
  .site-footer__newsletter-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }
  .site-footer__newsletter-form {
    width: 100%;
    min-width: 0;
    flex-shrink: 1;
  }
  .site-footer__input-row {
    width: 100%;
    min-width: 0;
  }
}
@media (max-width: 680px) {
  .site-footer {
    padding-bottom: 0;
  }
  .site-footer__container {
    width: 100%;
    border-radius: 0;
  }
  .site-footer__newsletter {
    padding: 32px 20px 0;
  }
  .site-footer__newsletter-inner {
    gap: 20px;
    padding: 0 0 28px;
  }
  .site-footer__newsletter-title, .site-footer__newsletter-subtitle {
    font-size: 22px;
    line-height: 1.25;
  }
  .site-footer__newsletter-form {
    width: 100%;
    min-width: 0;
    flex-shrink: 1;
  }
  .site-footer__input-row {
    width: 100%;
    min-width: 0;
  }
  .site-footer__input {
    height: 44px;
    padding: 0 14px;
    font-size: 14px;
    min-width: 0;
  }
  .site-footer__submit {
    height: 44px;
    padding: 0 6px 0 14px;
    font-size: 15px;
    gap: 8px;
  }
  .site-footer__submit span {
    width: 34px;
    height: 34px;
  }
  .site-footer__submit span svg {
    width: 14px;
    height: 14px;
  }
  .site-footer__checkbox-label {
    font-size: 12px;
    line-height: 1.4;
    gap: 8px;
  }
  .site-footer__checkbox {
    width: 17px;
    height: 17px;
  }
  .site-footer__main {
    padding: 36px 20px 0;
  }
  .site-footer__main-inner {
    grid-template-columns: 1fr;
    padding: 0 0 32px;
    gap: 28px;
  }
  .site-footer__col--brand .site-footer__logo {
    margin-bottom: 16px;
  }
  .site-footer__col--brand .site-footer__logo img {
    width: 200px;
    max-width: 100%;
  }
  .site-footer__col--brand p {
    font-size: 13px;
    line-height: 1.7;
    max-width: 100%;
  }
  .site-footer__nav {
    gap: 14px;
  }
  .site-footer__nav a {
    font-size: 13px;
  }
  .site-footer__col-title {
    font-size: 13px;
    margin-bottom: 14px;
  }
  .site-footer__contact-info p, .site-footer__contact-info a {
    font-size: 12px;
    line-height: 1.6;
  }
  .site-footer__legal {
    padding: 16px 20px;
  }
  .site-footer__legal-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    padding: 0;
  }
  .site-footer__legal-text p {
    font-size: 10px;
  }
  .site-footer__legal-links {
    flex-wrap: wrap;
    gap: 10px 14px;
  }
  .site-footer__legal-links a {
    font-size: 10px;
  }
}
/* Extra-narrow phones (≤ 360px) — hide "Iscriviti ora!" text, keep arrow */
@media (max-width: 360px) {
  .site-footer__submit {
    font-size: 0;
    padding: 0 4px;
    gap: 0;
  }
  .site-footer__submit span {
    font-size: 14px;
  }
}
.site-footer__submit {
  transition: background 0.25s, color 0.25s, box-shadow 0.2s;
}
.site-footer__submit span {
  transform: rotate(-135deg);
  transition: background 0.25s, transform 0.25s;
}
.site-footer__submit span img {
  width: 20px;
  height: 20px;
  display: block;
}
.site-footer__submit:hover {
  background: var(--cyan);
  color: #fff;
  box-shadow: 0 0 28px rgba(0, 0, 0, 0.16);
}
.site-footer__submit:hover span {
  background: var(--blue);
  transform: rotate(-90deg);
}
/* ============================================================
   TOPBAR OVERRIDE for icons
============================================================ */
.custom-header-topbar__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 24px;
}
.custom-header-topbar__left {
  display: flex;
  align-items: center;
}
.custom-header-topbar__right {
  display: flex;
  align-items: center;
}
.custom-header-topbar__link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 8px 12px;
  font-size: 13px;
  color: var(--gray);
  text-decoration: none;
  transition: color 0.2s;
  white-space: nowrap;
  font-family: var(--font);
}
.custom-header-topbar__link:hover {
  color: var(--blue);
}
.custom-header-topbar__link--search {
  background: var(--blue-25);
  border-radius: 999px;
  gap: 6px;
}
/* Logo img override */
.custom-header__logo img {
  height: 20px;
  width: auto;
  display: block;
}
.custom-header-topbar__right {
  display: flex;
  align-items: center;
}
.custom-header-topbar__link--search {
  background: var(--blue-25);
  border-radius: 999px;
  gap: 6px;
  margin-left: 4px;
  font-size: 13px;
  color: var(--gray);
}
/* ====================== css/prodotti.css ====================== */
/* ============================================================
   PRODOTTI PAGE
============================================================ */
/* ── Page hero / breadcrumb ──────────────────────────────── */
.pl-hero {
  position: relative;
  background: linear-gradient(180deg, #273583 0%, #00ace9 153%);
  border-radius: 0 0 20px 20px;
  padding: 129px 45px 21px;
  overflow: hidden;
}
.pl-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('../assets/images/home/hero-texture.png') center / cover no-repeat;
  mix-blend-mode: overlay;
  opacity: 0.25;
  pointer-events: none;
}
.pl-hero__inner {
  position: relative;
  max-width: 1360px;
  margin: 0 auto;
}
.pl-breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 18px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.6);
  font-family: var(--font, "Host Grotesk", sans-serif);
}
.pl-breadcrumb li + li::before {
  content: '>';
  margin-right: 8px;
  color: rgba(255, 255, 255, 0.4);
}
.pl-breadcrumb a {
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  transition: color 0.2s;
}
.pl-breadcrumb a:hover {
  color: #fff;
}
.pl-breadcrumb li:last-child {
  color: #fff;
  font-weight: 600;
}
/* ── Main layout ─────────────────────────────────────────── */
.pl-main {
  max-width: 1360px;
  margin: 0 auto;
  padding: 40px 40px 60px;
}
.pl-layout {
  display: flex;
  gap: 32px;
  align-items: flex-start;
}
/* ── Sidebar ─────────────────────────────────────────────── */
.pl-sidebar {
  width: 240px;
  flex-shrink: 0;
  position: sticky;
  top: 100px;
  font-family: var(--font, "Host Grotesk", sans-serif);
}
/* Mobile toggle button (hidden on desktop) */
.pl-sidebar__toggle {
  display: none;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  background: #fff;
  border: 1px solid #e9ebf3;
  border-radius: 12px;
  padding: 12px 16px;
  cursor: pointer;
  font-family: inherit;
}
.pl-sidebar__toggle-left {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  font-weight: 700;
  color: #00ace9;
}
.pl-sidebar__toggle-chevron {
  transition: transform 0.25s;
  flex-shrink: 0;
}
.pl-sidebar__toggle[aria-expanded="true"] .pl-sidebar__toggle-chevron {
  transform: rotate(180deg);
}
/* Sidebar body */
.pl-sidebar__body {
  display: flex;
  flex-direction: column;
  gap: 0;
}
/* Search box */
.pl-sidebar__search {
  display: flex;
  align-items: center;
  gap: 8px;
  border: 1px solid #d6d6d6;
  border-radius: 20px;
  padding: 8px 12px;
  margin-bottom: 20px;
  background: #fff;
}
.pl-sidebar__search input {
  border: none;
  outline: none;
  font-size: 13px;
  color: #1a1a2e;
  width: 100%;
  font-family: inherit;
  background: transparent;
}
.pl-sidebar__search input::placeholder {
  color: #b0b3c6;
}
.pl-sidebar__search svg {
  flex-shrink: 0;
  color: #b0b3c6;
}
/* Filter section */
.pl-filter {
  padding-bottom: 20px;
  margin-bottom: 20px;
  border-bottom: 1px solid #d6d6d6;
}
.pl-filter:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}
.pl-filter__label {
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  color: #00ace9;
  margin: 0 0 16px;
}
.pl-filter__list {
  list-style: none;
  margin: 0 0 12px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.pl-filter__item {
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  user-select: none;
}
.pl-filter__checkbox {
  width: 20px;
  height: 20px;
  border: 1.5px solid #d6d6d6;
  border-radius: 4px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.2s, background 0.2s;
}
.pl-filter__item--checked .pl-filter__checkbox {
  background: #00ace9;
  border-color: #00ace9;
}
.pl-filter__item--checked .pl-filter__checkbox svg {
  display: block;
}
.pl-filter__checkbox svg {
  display: none;
}
.pl-filter__text {
  font-size: 14px;
  color: #6e718e;
  font-weight: 400;
  flex: 1;
  transition: color 0.2s;
}
.pl-filter__item--checked .pl-filter__text {
  color: #273583;
  font-weight: 600;
}
.pl-filter__item:hover .pl-filter__text {
  color: #273583;
}
.pl-filter__count {
  font-size: 14px;
  color: #6f6f6f;
  font-weight: 400;
  margin-left: auto;
  white-space: nowrap;
}
.pl-filter__mostra {
  display: flex;
  align-items: center;
  gap: 4px;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 14px;
  color: #6e718e;
  font-family: inherit;
  padding: 0;
  margin-top: 4px;
  transition: color 0.2s;
}
.pl-filter__mostra:hover {
  color: #273583;
}
/* ── Product list ────────────────────────────────────────── */
.pl-products {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.pl-products__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 4px;
}
.pl-products__count {
  font-size: 14px;
  color: #6e718e;
  font-family: var(--font, "Host Grotesk", sans-serif);
}
/* ── Product card ────────────────────────────────────────── */
.pl-card {
  display: flex;
  flex-direction: column;
  gap: 16px;
  background: #fff;
  border: 1px solid #d6d6d6;
  border-radius: 20px;
  padding: 20px 24px;
  transition: box-shadow 0.2s;
  font-family: var(--font, "Host Grotesk", sans-serif);
}
.pl-card:hover {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}
/* Row 1: image + name  |  buttons */
.pl-card__row1 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.pl-card__left {
  display: flex;
  align-items: center;
  gap: 24px;
  flex: 1;
  min-width: 0;
}
.pl-card__img-wrap {
  width: 130px;
  height: 130px;
  flex-shrink: 0;
}
.pl-card__img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}
.pl-card__name-row {
  display: flex;
  align-items: baseline;
  gap: 12px;
  flex-wrap: wrap;
}
.pl-card__title {
  font-size: 20px;
  font-weight: 600;
  color: #273583;
  margin: 0;
  white-space: nowrap;
}
.pl-card__subtitle {
  font-size: 16px;
  font-weight: 400;
  color: #6e718e;
  margin: 0;
  white-space: nowrap;
}
/* Buttons — stacked right */
.pl-card__actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex-shrink: 0;
}
.pl-card__btn {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  height: 48px;
  width: 273px;
  padding: 0 6px 0 16px;
  background: #fff;
  border: none;
  border-radius: 39px;
  font-size: 18px;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  cursor: pointer;
  white-space: nowrap;
  transition: box-shadow 0.2s;
  font-family: inherit;
}
.pl-card__btn:hover {
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.18);
}
.pl-card__btn-content {
  display: flex;
  align-items: center;
  gap: 10px;
}
.pl-card__btn-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.pl-card__btn-icon img {
  width: 55%;
  height: 55%;
  display: block;
  transform: rotate(-135deg);
  transition: transform 0.25s;
}
.pl-card__btn:hover .pl-card__btn-icon img {
  transform: rotate(-90deg);
}
.pl-card__btn--info {
  color: #00ace9;
}
.pl-card__btn--info .pl-card__btn-icon {
  background: #00ace9;
}
.pl-card__btn--sheet {
  color: #273583;
}
.pl-card__btn--sheet .pl-card__btn-icon {
  background: #273583;
}
/* Row 2: brand logo  |  Dettagli + description */
.pl-card__row2 {
  display: flex;
  align-items: center;
  gap: 24px;
}
.pl-card__brand-wrap {
  width: 158px;
  height: 133px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
}
.pl-card__brand-wrap img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: left center;
}
.pl-card__details {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.pl-card__details-label {
  font-size: 18px;
  font-weight: 600;
  color: #00ace9;
  margin: 0;
  line-height: normal;
}
.pl-card__description {
  font-size: 14px;
  color: #6e718e;
  line-height: 22px;
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.pl-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 40px;
  font-family: var(--font, "Host Grotesk", sans-serif);
}
.pl-pagination__btn {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  border: 1px solid #e9ebf3;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 500;
  color: #6e718e;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
  text-decoration: none;
  font-family: inherit;
}
.pl-pagination__btn:hover, .pl-pagination__btn--active {
  background: #273583;
  color: #fff;
  border-color: #273583;
}
/* ── Responsive ───────────────────────────────────────────── */
@media (max-width: 1200px) {
  .pl-card__btn {
    width: 220px;
    font-size: 15px;
  }
}
@media (max-width: 1024px) {
  .pl-main {
    padding: 32px 24px 48px;
  }
  .pl-layout {
    gap: 24px;
  }
  .pl-sidebar {
    width: 200px;
  }
  .pl-card__row1 {
    flex-direction: column;
    align-items: flex-start;
  }
  .pl-card__actions {
    flex-direction: row;
  }
  .pl-card__btn {
    width: auto;
    flex: 1;
  }
}
@media (max-width: 768px) {
  /* Sidebar: colapsibil pe mobile */
  /* Card */
  /* Row 1: imagine + titlu deasupra, butoane jos */
  /* Butoane full-width stivuite */
  /* Row 2: brand deasupra detaliilor */
  .pl-hero {
    padding: 110px 20px 20px;
  }
  .pl-breadcrumb {
    font-size: 14px;
  }
  .pl-main {
    padding: 24px 16px 40px;
  }
  .pl-layout {
    flex-direction: column;
  }
  .pl-sidebar {
    width: 100%;
    position: static;
  }
  .pl-sidebar__toggle {
    display: flex;
  }
  .pl-sidebar__body {
    overflow: hidden;
    max-height: 0;
    transition: max-height 0.3s ease;
  }
  .pl-sidebar__body--open {
    max-height: 1000px;
  }
  .pl-sidebar__search {
    margin-top: 16px;
  }
  .pl-card {
    padding: 16px;
    gap: 12px;
  }
  .pl-card__row1 {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
  .pl-card__left {
    gap: 12px;
  }
  .pl-card__img-wrap {
    width: 80px;
    height: 80px;
  }
  .pl-card__title {
    font-size: 17px;
  }
  .pl-card__subtitle {
    font-size: 14px;
  }
  .pl-card__actions {
    flex-direction: column;
    width: 100%;
  }
  .pl-card__btn {
    width: 100%;
    font-size: 15px;
    height: 44px;
  }
  .pl-card__row2 {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
  .pl-card__brand-wrap {
    width: 120px;
    height: auto;
  }
  .pl-card__details-label {
    font-size: 15px;
  }
  .pl-card__description {
    font-size: 13px;
    line-height: 20px;
    display: block;
    -webkit-line-clamp: unset;
    overflow: visible;
  }
}
/* ====================== css/medical-market.css ====================== */
.mm-text--cyan {
  color: #00ace9;
}
/* ═══════════════════════════════════════════════════════════
   HERO  (Figma: 285:5533  1440×550, pt-200 pb-120 px-80)
═══════════════════════════════════════════════════════════ */
.mm-hero {
  position: relative;
  overflow: hidden;
}
.mm-hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.mm-hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.mm-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(16, 21, 52, 0) 0%, #101534 100%);
}
.mm-hero__breadcrumb {
  position: absolute;
  top: 120px;
  left: 45px;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 8px;
  list-style: none;
  margin: 0;
  padding: 0;
  font-family: var(--font, "Host Grotesk", sans-serif);
  font-size: 18px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.6);
}
.mm-hero__breadcrumb li + li::before {
  content: '>';
  margin-right: 8px;
  color: rgba(255, 255, 255, 0.4);
}
.mm-hero__breadcrumb a {
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  transition: color 0.2s;
}
.mm-hero__breadcrumb a:hover {
  color: #fff;
}
.mm-hero__breadcrumb li:last-child {
  color: #fff;
  font-weight: 600;
}
.mm-hero__inner {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
  padding: 200px 80px 120px;
}
.mm-hero__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  max-width: 800px;
  width: 100%;
  text-align: center;
}
.mm-hero__pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 16px;
  background: #00ace9;
  border-radius: 999px;
  font-family: var(--font);
  font-size: 14px;
  font-weight: 400;
  line-height: 14px;
  color: #fff;
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  align-self: center;
}
.mm-hero__title {
  font-family: var(--font);
  font-size: 50px;
  font-weight: 800;
  line-height: 55px;
  color: #fff;
  margin: 0;
}
.mm-hero__subtitle {
  font-family: var(--font);
  font-size: 20px;
  font-weight: 400;
  line-height: 26px;
  color: #f4f4f4;
  max-width: 560px;
  margin: 0;
}
/* ═══════════════════════════════════════════════════════════
   BODY WRAPPER
═══════════════════════════════════════════════════════════ */
.mm-body {
  max-width: 1440px;
  margin: 0 auto;
  padding: 80px 44px 80px;
  display: flex;
  flex-direction: column;
  gap: 80px;
}
/* ═══════════════════════════════════════════════════════════
   CONTENT BLOCKS (text + image)
═══════════════════════════════════════════════════════════ */
.mm-content-block {
  display: flex;
  gap: 70px;
  align-items: flex-start;
  width: 100%;
}
.mm-content-block--text-left {
  flex-direction: row;
}
.mm-content-block--image-left {
  flex-direction: row;
}
.mm-content-block__text {
  flex: 1 1 658px;
  max-width: 658px;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 50px;
}
.mm-content-block__title {
  font-family: var(--font);
  font-size: 40px;
  font-weight: 700;
  line-height: 1.2;
  color: #273583;
  text-transform: lowercase;
  margin: 0;
}
.mm-content-block__title::first-letter {
  text-transform: uppercase;
}
.mm-content-block__body {
  display: flex;
  flex-direction: column;
  gap: 0;
  font-family: var(--font);
  font-size: 18px;
  font-weight: 300;
  line-height: 22px;
  color: #6e718e;
}
.mm-content-block__body p:last-child {
  margin-bottom: 0;
}
.mm-content-block__intro-label {
  font-family: var(--font);
  font-size: 18px;
  font-weight: 700;
  color: #00ace9;
  line-height: 22px;
  margin: 0 0 24px;
}
.mm-content-block__body strong {
  font-weight: 700;
  color: #4a4d63;
}
.mm-content-block__media {
  flex: 1 1 617px;
  max-width: 617px;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.mm-content-block__media--only-img .mm-content-block__img-wrap {
  height: 368px;
}
.mm-content-block__img-wrap {
  border-radius: 20px;
  overflow: hidden;
  height: 380px;
  width: 100%;
}
.mm-content-block__img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.mm-content-block__bullets {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.mm-content-block__bullets-label {
  font-family: var(--font);
  font-size: 18px;
  font-weight: 700;
  color: #00ace9;
  text-transform: uppercase;
  line-height: 44px;
  margin: 0;
}
.mm-content-block__bullet-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  font-family: var(--font);
  font-size: 18px;
  font-weight: 700;
  color: #6e718e;
  line-height: 44px;
}
.mm-content-block__bullet-list li {
  display: flex;
  align-items: center;
  gap: 20px;
}
.mm-bullet-icon {
  width: 15px;
  height: 15px;
  min-width: 15px;
  flex-shrink: 0;
}
/* ═══════════════════════════════════════════════════════════
   PRODOTTI CORRELATI
═══════════════════════════════════════════════════════════ */
.mm-correlati.sge-products {
  margin: 0;
  padding: 0;
}
.mm-correlati .sge-products__inner {
  width: 100%;
  margin: 0;
}
.mm-correlati-swiper {
  width: 100%;
}
.mm-correlati-swiper .swiper-slide {
  height: auto;
}
.mm-correlati-swiper {
  padding-block: 12px;
  margin-block: -12px;
}
@media (max-width: 680px) {
  .mm-correlati-swiper {
    width: calc(100% + 40px);
    margin-left: -20px;
  }
}
@media (min-width: 681px) and (max-width: 1023px) {
  .mm-correlati-swiper {
    width: calc(100% + 64px);
    margin-left: -32px;
  }
}
/* ═══════════════════════════════════════════════════════════
   PRODUCTS WITH FILTERS LAYOUT
═══════════════════════════════════════════════════════════ */
.mm-products-layout {
  display: flex;
  gap: 80px;
  align-items: flex-start;
  width: 100%;
}
.pl-sidebar__heading {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font);
  font-size: 16px;
  font-weight: 700;
  color: #00ace9;
  margin-bottom: 32px;
}
.pl-sidebar__heading img {
  width: 16px;
  height: 16px;
  object-fit: contain;
  flex-shrink: 0;
}
.mm-products__count--cyan {
  font-family: var(--font);
  font-size: 16px;
  font-weight: 600;
  color: #00ace9 !important;
}
/* ═══════════════════════════════════════════════════════════
   RESPONSIVE — TABLET  (≤ 1100px)
═══════════════════════════════════════════════════════════ */
@media (max-width: 1100px) {
  /* Hero */
  /* Products layout */
  .mm-hero__inner {
    padding: 160px 40px 80px;
  }
  .mm-hero__title {
    font-size: 36px;
    line-height: 44px;
  }
  .mm-hero__subtitle {
    font-size: 17px;
  }
  .mm-body {
    padding: 60px 32px 60px;
    gap: 40px;
  }
  .mm-content-block {
    flex-direction: column !important;
    gap: 36px;
  }
  .mm-content-block__text, .mm-content-block__media {
    flex: unset;
    max-width: 100%;
    width: 100%;
  }
  .mm-content-block__img-wrap {
    height: 280px;
  }
  .mm-content-block__media--only-img .mm-content-block__img-wrap {
    height: 280px;
  }
  .mm-products-layout {
    flex-direction: column;
    gap: 32px;
  }
  .pl-sidebar {
    width: 100% !important;
    position: static !important;
  }
  .pl-sidebar__heading {
    display: none;
  }
  .pl-sidebar__toggle {
    display: flex !important;
  }
  .pl-sidebar__body {
    display: none;
  }
  .pl-sidebar__body--open {
    display: flex !important;
    flex-direction: column;
  }
}
/* ═══════════════════════════════════════════════════════════
   RESPONSIVE — MOBILE  (≤ 680px)
═══════════════════════════════════════════════════════════ */
@media (max-width: 680px) {
  /* Product cards */
  .mm-hero__breadcrumb {
    font-size: 14px;
    left: 20px;
    top: 80px;
  }
  .mm-hero__inner {
    padding: 120px 20px 60px;
  }
  .mm-hero__title {
    font-size: 26px;
    line-height: 34px;
  }
  .mm-hero__subtitle {
    font-size: 15px;
  }
  .mm-body {
    padding: 40px 20px 60px;
    gap: 36px;
  }
  .mm-content-block__text {
    gap: 24px;
  }
  .mm-content-block__title {
    font-size: 26px;
  }
  .mm-content-block__body {
    font-size: 15px;
    line-height: 22px;
  }
  .mm-content-block__img-wrap {
    height: 220px;
  }
  .mm-content-block__media--only-img .mm-content-block__img-wrap {
    height: 220px;
  }
  .mm-content-block__bullets-label {
    font-size: 14px;
    line-height: 32px;
  }
  .mm-content-block__bullet-list {
    font-size: 14px;
    line-height: 32px;
  }
  .pl-card__row1 {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
  .pl-card__actions {
    width: 100%;
  }
  .pl-card__btn {
    width: 100%;
  }
  .pl-card__row2 {
    flex-direction: column;
    gap: 12px;
  }
}
/* ====================== css/product-page.css ====================== */
/* ============================================================
   PRODUCT DETAIL PAGE
============================================================ */
/* ── Hero / Breadcrumb ──────────────────────────────────── */
.pp-hero {
  position: relative;
  background: linear-gradient(180deg, #273583 0%, #00ace9 153%);
  border-radius: 0 0 20px 20px;
  overflow: hidden;
  padding: 129px 45px 21px;
}
.pp-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('../assets/images/home/hero-texture.png') center / cover no-repeat;
  mix-blend-mode: overlay;
  opacity: 0.25;
  pointer-events: none;
}
.pp-hero__inner {
  position: relative;
  max-width: 1360px;
  margin: 0 auto;
}
.pp-breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 18px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.6);
  font-family: var(--font, "Host Grotesk", sans-serif);
}
.pp-breadcrumb li + li::before {
  content: '>';
  margin-right: 8px;
  color: rgba(255, 255, 255, 0.4);
}
.pp-breadcrumb a {
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  transition: color 0.2s;
}
.pp-breadcrumb a:hover {
  color: #fff;
}
.pp-breadcrumb li:last-child {
  color: #fff;
  font-weight: 600;
}
/* ── Main layout ────────────────────────────────────────── */
.pp-main {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 44px;
}
.pp-layout {
  display: flex;
  gap: 22px;
  align-items: stretch;
}
/* ── Left content area ──────────────────────────────────── */
.pp-content {
  flex: 1;
  min-width: 0;
  padding: 82px 0 54px;
  display: flex;
  flex-direction: column;
  gap: 60px;
}
/* ── 1. Title card ─────────────────────────────────────── */
.pp-title-card {
  background: #fff;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  border-radius: 20px;
  display: flex;
  align-items: center;
  gap: 32px;
  padding: 20px 32px;
}
.pp-title-card__img {
  width: 169px;
  height: 169px;
  flex-shrink: 0;
  object-fit: contain;
  display: block;
}
.pp-title-card__names {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.pp-title-card__title {
  display: flex;
  align-items: baseline;
  gap: 8px;
  font-size: 40px;
  font-weight: 600;
  color: #273583;
  line-height: normal;
  margin: 0;
  white-space: nowrap;
}
.pp-title-card__subtitle {
  font-size: 30px;
  font-weight: 400;
  color: #00ace9;
  line-height: normal;
  margin: 0;
}
/* ── 2. Brand + Dettagli row ────────────────────────────── */
.pp-brand-row {
  display: flex;
  gap: 24px;
  align-items: flex-start;
}
.pp-brand-row__logo {
  width: 200px;
  height: 130px;
  flex-shrink: 0;
  object-fit: contain;
  object-position: left center;
  display: block;
}
.pp-brand-row__details {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.pp-brand-row__label {
  font-size: 18px;
  font-weight: 700;
  color: #00ace9;
  margin: 0;
  line-height: normal;
}
.pp-brand-row__text {
  font-size: 16px;
  font-weight: 400;
  color: #6e718e;
  line-height: 22px;
  margin: 0;
}
/* ── 3. Description + Gallery ───────────────────────────── */
.pp-desc-section {
  display: flex;
  gap: 15px;
  align-items: flex-start;
  min-height: 644px;
}
/* Text column */
.pp-desc-col {
  flex: 0 0 408px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.pp-desc-col__heading {
  font-size: 18px;
  font-weight: 600;
  color: #00ace9;
  margin: 0;
  line-height: normal;
}
.pp-desc-col__body {
  font-size: 18px;
  font-weight: 400;
  color: #6e718e;
  line-height: 22px;
  margin: 0;
}
/* Bullet list */
.pp-bullet-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.pp-bullet-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 18px;
  font-weight: 400;
  color: #6e718e;
  line-height: 22px;
  padding: 10px 0;
}
.pp-bullet-icon {
  width: 15px;
  height: 15px;
  flex-shrink: 0;
  margin-top: 4px;
  display: block;
}
/* Gallery column */
.pp-gallery {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 20px;
  padding: 10px;
}
.pp-gallery__main {
  width: 100%;
  max-width: 455px;
  aspect-ratio: 1;
  border: 1px solid #d6d6d6;
  border-radius: 20px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.pp-gallery__main img {
  width: 92%;
  height: 57%;
  object-fit: contain;
  display: block;
}
.pp-gallery__thumbs {
  display: flex;
  gap: 23px;
  align-items: flex-start;
  width: 100%;
  max-width: 455px;
  flex-shrink: 0;
}
.pp-gallery__thumb {
  flex: 1;
  aspect-ratio: 1;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid #d6d6d6;
  cursor: pointer;
  transition: border-color 0.2s;
}
.pp-gallery__thumb--active {
  border-color: #00ace9;
  border-width: 1px;
}
.pp-gallery__thumb img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  transition: opacity 0.2s;
}
.pp-gallery__thumb:not(.pp-gallery__thumb--active) img {
  opacity: 0.5;
}
.pp-gallery__thumb:hover img {
  opacity: 1;
}
/* ── 4. Related products ─────────────────────────────────── */
.pp-related {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.pp-related__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.pp-related__title-row {
  display: flex;
  align-items: center;
  gap: 12px;
}
.pp-related__title {
  font-size: 18px;
  font-weight: 700;
  color: #00ace9;
  margin: 0;
  white-space: nowrap;
}
.pp-related__icon {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  color: #00ace9;
}
.pp-related__all {
  display: flex;
  align-items: center;
  gap: 4px;
  text-decoration: none;
  color: #00ace9;
  font-size: 18px;
  font-weight: 500;
  font-family: var(--font);
  white-space: nowrap;
  transition: opacity 0.2s;
}
.pp-related__all:hover {
  opacity: 0.75;
}
.pp-related__all svg {
  flex-shrink: 0;
}
/* Swiper container */
.pp-related-swiper {
  width: 100%;
  overflow: hidden;
  /* vertical room so overflow:hidden doesn't clip the card drop-shadow top/bottom;
       negative margin cancels it in flow so spacing is unchanged */
  padding-block: 12px;
  margin-block: -12px;
}
.pp-related-swiper .swiper-slide {
  height: auto;
}
@media (max-width: 479px) {
  .pp-related-swiper {
    width: calc(100% + 24px);
    margin-left: -12px;
  }
}
@media (min-width: 480px) and (max-width: 767px) {
  .pp-related-swiper {
    width: calc(100% + 32px);
    margin-left: -16px;
  }
}
.pp-related-swiper .sge-product-card {
  display: block;
  text-decoration: none;
}
.pp-related__nav {
  margin-top: 4px;
}
/* ── Right sidebar / form ────────────────────────────────── */
.pp-sidebar {
  background: #FAFAFA;
  width: 434px;
  flex-shrink: 0;
  padding: 83px 0 54px;
}
.pp-form-panel {
  position: sticky;
  top: 120px;
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 0 4px 24px rgba(39, 53, 131, 0.08);
}
.pp-form-sub {
  width: 100%;
}
.pp-form-sub__inner {
  padding: 32px 31px 0px;
  display: flex;
  flex-direction: column;
}
.pp-form-button-area {
  position: relative;
  margin: 0 max(32px, calc((100% - 300px) / 2));
  height: 68px;
  background: #f1f1f1;
  border-radius: 26px 26px 0 0;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  padding: 0 7px 7px;
}
.pp-form-button-area::before, .pp-form-button-area::after {
  content: "";
  position: absolute;
  bottom: 0;
  width: 42px;
  height: 42px;
  background: #fff;
  pointer-events: none;
}
.pp-form-button-area::before {
  left: -42px;
  border-bottom-right-radius: 20px;
  box-shadow: 18px 18px 0 0 #f1f1f1;
}
.pp-form-button-area::after {
  right: -42px;
  border-bottom-left-radius: 20px;
  box-shadow: -18px 18px 0 0 #f1f1f1;
}
.pp-form-panel__title {
  font-size: 22px;
  font-weight: 700;
  color: #273583;
  text-align: left;
  margin: 0 0 28px 0;
  line-height: normal;
  font-family: var(--font);
  letter-spacing: -0.01em;
}
.pp-form-input-wrap {
  margin-bottom: 20px;
}
.pp-form-input {
  display: block;
  width: 100%;
  height: 44px;
  border: 1.5px solid #d6d6d6;
  border-radius: 28px;
  padding: 0 24px;
  background: #fff;
  font-size: 15px;
  color: #6e718e;
  font-family: var(--font);
  outline: none;
  transition: border-color 0.2s;
  box-sizing: border-box;
}
.pp-form-input:focus {
  border-color: #00ace9;
}
.pp-form-input::placeholder {
  color: #6e718e;
}
.pp-form-privacy {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-family: var(--font);
  color: #6e718e;
  margin-top: 16px;
  margin-bottom: 34px;
  cursor: pointer;
}
.pp-form-privacy__checkbox {
  width: 19px;
  height: 19px;
  border: 1px solid rgba(114, 150, 206, 0.5);
  border-radius: 5px;
  flex-shrink: 0;
  appearance: none;
  -webkit-appearance: none;
  background: #fff;
  cursor: pointer;
  position: relative;
  transition: border-color 0.2s, background 0.2s;
}
.pp-form-privacy__checkbox:checked {
  background: #273583;
  border-color: #273583;
}
.pp-form-privacy__checkbox:checked::after {
  content: '';
  position: absolute;
  inset: 3px;
  background: url("data:image/svg+xml,%3Csvg viewBox='0 0 10 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 4l3 3 5-6' stroke='white' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center / contain no-repeat;
}
.pp-form-privacy a {
  color: #00ace9;
  text-decoration: underline;
  font-weight: 700;
}
/* Submit button */
.pp-form-submit {
  position: relative;
  z-index: 2;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  height: 54px;
  padding: 6px 7px 6px 22px;
  background: #00ace9;
  border: none;
  border-radius: 999px;
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  font-family: var(--font);
  cursor: pointer;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  transition: background 0.2s, box-shadow 0.2s;
  text-decoration: none;
}
.pp-form-submit:hover {
  background: #273583;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.18);
}
.pp-form-submit__left {
  display: flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
}
.pp-form-submit__icon {
  margin-left: auto;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background 0.2s;
}
.pp-form-submit__icon img {
  width: 20px;
  height: 20px;
  display: block;
  transform: rotate(-135deg);
  transition: transform 0.25s, filter 0.2s;
  /* white SVG -> #00ace9 */
  filter: brightness(0) saturate(100%) invert(54%) sepia(94%) saturate(2052%) hue-rotate(166deg) brightness(99%) contrast(101%);
}
.pp-form-submit:hover .pp-form-submit__icon {
  background: rgba(255, 255, 255, 0.9);
}
.pp-form-submit:hover .pp-form-submit__icon img {
  transform: rotate(-90deg);
  filter: brightness(0) saturate(100%) invert(13%) sepia(64%) saturate(3654%) hue-rotate(232deg) brightness(95%) contrast(86%);
}
.pp-gallery__thumb {
  cursor: pointer;
}
@media (max-width: 768px) {
  .hdr-nav__menu--open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    padding: 16px 24px;
    gap: 16px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    z-index: 100;
  }
}
/* ── Responsive ──────────────────────────────────────────── */
@media (max-width: 1280px) {
  .pp-gallery__main {
    max-width: 380px;
  }
  .pp-gallery__thumbs {
    max-width: 380px;
    gap: 17px;
  }
  .pp-desc-col {
    flex: 0 0 360px;
  }
}
@media (max-width: 1100px) {
  .pp-sidebar {
    width: 360px;
  }
  .pp-title-card__title {
    font-size: 30px;
  }
  .pp-title-card__subtitle {
    font-size: 22px;
  }
  .pp-desc-section {
    flex-direction: column;
    gap: 32px;
    min-height: unset;
  }
  .pp-desc-col {
    flex: none;
    width: 100%;
  }
  .pp-gallery {
    align-items: center;
  }
  .pp-gallery__main {
    max-width: 380px;
  }
  .pp-gallery__thumbs {
    max-width: 380px;
    justify-content: center;
    gap: 14px;
  }
}
@media (max-width: 960px) {
  .pp-layout {
    flex-direction: column;
    align-items: stretch;
  }
  .pp-sidebar {
    width: 100%;
    padding: 0 0 40px;
  }
  .pp-form-panel {
    position: static;
    max-width: 500px;
    margin: 0 auto;
  }
  .pp-content {
    padding-top: 40px;
    padding-bottom: 0;
  }
  .pp-gallery__main {
    max-width: 420px;
  }
  .pp-gallery__thumbs {
    max-width: 420px;
    gap: 14px;
  }
}
@media (max-width: 768px) {
  /* Title card */
  /* Form */
  .pp-hero {
    padding: 110px 20px 20px;
  }
  .pp-main {
    padding: 0 16px;
  }
  .pp-content {
    padding: 32px 0 32px;
    gap: 36px;
  }
  .pp-title-card {
    flex-wrap: wrap;
    gap: 12px;
    padding: 16px 18px;
  }
  .pp-title-card__img {
    width: 90px;
    height: 90px;
  }
  .pp-title-card__title {
    font-size: 24px;
    gap: 6px;
  }
  .pp-title-card__subtitle {
    font-size: 18px;
  }
  .pp-brand-row {
    flex-direction: column;
    gap: 16px;
  }
  .pp-brand-row__logo {
    height: 70px;
    width: 130px;
  }
  .pp-desc-col__heading {
    font-size: 16px;
  }
  .pp-desc-col__body, .pp-bullet-list li {
    font-size: 15px;
    line-height: 20px;
  }
  .pp-bullet-list li {
    padding: 8px 0;
  }
  .pp-gallery {
    padding: 0;
    align-self: stretch;
  }
  .pp-gallery__main {
    max-width: none;
  }
  .pp-gallery__thumbs {
    max-width: none;
    gap: 10px;
  }
  .pp-breadcrumb {
    font-size: 14px;
  }
  .pp-related__header {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
  .pp-related__title {
    white-space: normal;
    font-size: 16px;
  }
  .pp-form-sub__inner {
    padding: 24px 20px 24px;
  }
  .pp-form-panel__title {
    font-size: 18px;
  }
  .pp-form-input {
    height: 48px;
    font-size: 14px;
  }
}
/* ·· 480px — small mobile ·· */
@media (max-width: 480px) {
  /* Gallery */
  /* Form */
  .pp-main {
    padding: 0 12px;
  }
  .pp-content {
    gap: 28px;
  }
  .pp-title-card__title {
    font-size: 20px;
  }
  .pp-title-card__subtitle {
    font-size: 16px;
  }
  .pp-title-card__img {
    width: 76px;
    height: 76px;
  }
  .pp-gallery__thumbs {
    gap: 8px;
  }
  .pp-form-sub__inner {
    padding: 20px 16px 24px;
  }
  .pp-form-input {
    height: 44px;
    font-size: 13px;
  }
}

/* end pmg_style */
/* init pmg_footer */

/* end pmg_footer */
/* init pmg_header */

/* end pmg_header */
/* init pmg_cercatraiprodotti */

/* end pmg_cercatraiprodotti */
/* init pmg_herohome */

/* end pmg_herohome */
/* init pmg_home-about */

/* end pmg_home-about */
/* init pmg_home-exclusive */

/* end pmg_home-exclusive */
/* init pmg_home-markets-swiper */

/* end pmg_home-markets-swiper */
/* init pmg_home-products-swiper */

/* end pmg_home-products-swiper */
/* init pmg_home-suppliers */

/* end pmg_home-suppliers */
/* init pmg_menumobile */

/* end pmg_menumobile */
/* init pmg_section */

/* end pmg_section */
/* init pmg_testosemplice */

/* end pmg_testosemplice */