/* ═══════════════════════════════════════════════════
   PDP — Vehicle Detail Page Redesign
   Style Motor · 2026
   ═══════════════════════════════════════════════════ */

/* --- CSS Variables --- */
:root {
  --pdp-bg-primary: #FFFFFF;
  --pdp-bg-secondary: #F7F8FA;
  --pdp-bg-tertiary: #ECEEF2;
  --pdp-text-primary: #1A1D23;
  --pdp-text-secondary: #5A5F6B;
  --pdp-text-tertiary: #8B909E;
  --pdp-border-secondary: #D1D5DB;
  --pdp-border-tertiary: #E5E7EB;
  --pdp-green: #e7505a;
  --pdp-green-dark: #c0392b;
  --pdp-green-bg: #fef2f2;
  --pdp-amber-bg: #FAEEDA;
  --pdp-amber-text: #633806;
  --pdp-amber-border: #FAC775;
  --pdp-red: #e7505a;
  --pdp-radius-md: 8px;
  --pdp-radius-lg: 12px;
}

/* --- Page Grid --- */
.pdp-container {
  max-width: 1200px !important;
  margin: 0 auto !important;
  padding: 90px 16px 20px !important;
  width: 100% !important;
  box-sizing: border-box !important;
  float: none !important;
  font-family: "Roboto Condensed", sans-serif !important;
}
.pdp-grid {
  display: grid !important;
  grid-template-columns: 1fr 400px !important;
  gap: 32px !important;
  align-items: start !important;
}
@media (max-width: 991px) {
  .pdp-grid {
    grid-template-columns: 1fr !important;
    gap: 16px !important;
  }
  /* Nascondi colonna destra su mobile — usiamo il duplicato inline */
  .pdp-conversion {
    display: none !important;
  }
  .pdp-mobile-conversion {
    display: block !important;
  }
}
/* Reset framework overrides */
.pdp-container, .pdp-container *, .pdp-container *::before, .pdp-container *::after {
  box-sizing: border-box !important;
  font-family: "Roboto Condensed", sans-serif !important;
}
.pdp-container img {
  max-width: 100% !important;
}
.pdp-container .pdp-left,
.pdp-container .pdp-conversion {
  min-width: 0 !important;
  overflow: hidden !important;
}

/* --- Gallery --- */
.pdp-gallery {
  position: relative;
}
.pdp-gallery-main {
  width: 100% !important;
  max-width: 100% !important;
  padding-bottom: 75%; /* 4:3 ratio fallback */
  border-radius: var(--pdp-radius-lg);
  overflow: hidden !important;
  background: var(--pdp-bg-secondary);
  position: relative !important;
  cursor: pointer;
  max-height: 500px;
}
@media (max-width: 991px) {
  .pdp-gallery-main {
    padding-bottom: 66% !important;
    max-height: 350px !important;
    border-radius: 0 !important;
  }
  .pdp-container {
    padding: 70px 0 20px !important;
  }
  .pdp-title, .pdp-subtitle, .pdp-ref, .pdp-specs, .pdp-tabs, .pdp-proposals {
    padding-left: 16px !important;
    padding-right: 16px !important;
  }
  /* ── MOBILE: Gerarchia visiva forte ── */
  .pdp-title { font-size: 30px !important; font-weight: 800 !important; margin-top: 20px !important; }
  .pdp-subtitle { font-size: 19px !important; color: #555 !important; margin-bottom: 8px !important; }
  .pdp-benefit { font-size: 16px !important; padding: 12px 16px !important; margin-bottom: 12px !important; }
  .pdp-ref { font-size: 14px !important; color: #777 !important; opacity: 1 !important; margin-bottom: 4px !important; }

  /* ── MOBILE: Prezzo dominante ── */
  .pdp-price-main { font-size: 42px !important; font-weight: 800 !important; }
  .pdp-price-old { font-size: 19px !important; }
  .pdp-price-discount { font-size: 15px !important; padding: 4px 12px !important; }
  .pdp-price-warranty { font-size: 17px !important; font-weight: 700 !important; }

  /* ── MOBILE: Finance chiaro ── */
  .pdp-finance-amount { font-size: 32px !important; font-weight: 800 !important; }
  .pdp-finance-label { font-size: 15px !important; }

  /* ── MOBILE: CTA impossibili da ignorare ── */
  .pdp-cta { font-size: 19px !important; padding: 18px 20px !important; font-weight: 700 !important; }
  .pdp-cta--print { font-size: 16px !important; }
  .pdp-cta-tertiary-text { font-size: 16px !important; }

  /* ── MOBILE: Specs con contrasto ── */
  .pdp-spec { padding: 16px 10px !important; }
  .pdp-spec-value { font-size: 20px !important; font-weight: 700 !important; }
  .pdp-spec-label { font-size: 11px !important; letter-spacing: 1px !important; font-weight: 700 !important; margin-bottom: 6px !important; }

  /* ── MOBILE: Contenuti leggibili ── */
  .pdp-tab-btn { font-size: 17px !important; padding: 14px 16px !important; }
  .pdp-optional-item { font-size: 16px !important; padding: 10px 14px !important; }
  .pdp-data-table td { font-size: 17px !important; padding: 12px 0 !important; }
  .pdp-description { font-size: 17px !important; line-height: 1.7 !important; }
  .pdp-warranty-row { font-size: 17px !important; }
  .pdp-form-input { font-size: 17px !important; padding: 14px 16px !important; }
  .pdp-trust-text { font-size: 15px !important; }
  .pdp-badge { font-size: 14px !important; padding: 6px 12px !important; }
  .pdp-gallery-count { font-size: 14px !important; }
  .pdp-urgency { font-size: 16px !important; font-weight: 700 !important; }
}
.pdp-gallery-main img {
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  transition: opacity 0.3s;
  max-width: none !important;
}
.pdp-gallery-badges {
  position: absolute;
  top: 12px;
  left: 12px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  z-index: 2;
}
.pdp-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 6px 12px;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 600;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.pdp-badge--dark {
  background: rgba(0,0,0,0.65);
  color: #fff;
}
.pdp-badge--green {
  background: rgba(29,158,117,0.9);
  color: #fff;
}
.pdp-badge--red {
  background: rgba(231,80,90,0.9);
  color: #fff;
}
.pdp-gallery-count {
  position: absolute;
  bottom: 12px;
  right: 12px;
  background: rgba(0,0,0,0.6);
  color: #fff;
  padding: 5px 10px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 600;
  z-index: 2;
}
.pdp-gallery-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.9);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: #333;
  z-index: 3;
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
  transition: background 0.2s;
}
.pdp-gallery-nav:hover { background: #fff; }
.pdp-gallery-nav--prev { left: 10px; }
.pdp-gallery-nav--next { right: 10px; }

.pdp-thumbs {
  display: flex;
  gap: 8px;
  margin-top: 10px;
  overflow-x: auto;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.pdp-thumbs::-webkit-scrollbar { display: none; }
.pdp-thumb {
  flex-shrink: 0;
  width: 60px;
  height: 45px;
  border-radius: 6px;
  overflow: hidden;
  cursor: pointer;
  border: 2px solid transparent;
  opacity: 0.6;
  transition: all 0.2s;
}
.pdp-thumb.active,
.pdp-thumb:hover {
  border-color: var(--pdp-green);
  opacity: 1;
}
.pdp-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* --- Title --- */
.pdp-title {
  font-size: 34px;
  font-weight: 800;
  color: var(--pdp-text-primary);
  margin: 24px 0 6px;
  line-height: 1.15;
  letter-spacing: -0.01em;
}
.pdp-subtitle {
  font-size: 20px;
  color: var(--pdp-text-secondary);
  margin: 0 0 10px;
  font-weight: 400;
  line-height: 1.3;
}
.pdp-ref {
  font-size: 15px;
  color: #888;
  font-family: monospace;
  letter-spacing: 0.5px;
  margin-bottom: 6px;
}

/* --- Specs Strip --- */
.pdp-specs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--pdp-border-tertiary);
  border-radius: var(--pdp-radius-md);
  overflow: hidden;
  margin: 20px 0;
}
.pdp-spec {
  background: var(--pdp-bg-secondary);
  padding: 16px 12px;
  text-align: center;
}
.pdp-spec-label {
  font-size: 11px;
  color: var(--pdp-text-tertiary);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 6px;
  font-weight: 700;
}
.pdp-spec-value {
  font-size: 20px;
  font-weight: 700;
  color: var(--pdp-text-primary);
}
@media (max-width: 575px) {
  .pdp-specs { grid-template-columns: repeat(2, 1fr); }
}

/* --- Tab Panel --- */
.pdp-tabs-nav {
  display: flex;
  border-bottom: 2px solid var(--pdp-border-tertiary);
  margin-bottom: 0;
  gap: 0;
}
.pdp-tab-btn {
  padding: 12px 20px;
  font-size: 15px;
  font-weight: 600;
  color: var(--pdp-text-tertiary);
  background: none;
  border: none;
  border-bottom: 2px solid transparent;
  margin-bottom: -2px;
  cursor: pointer;
  transition: all 0.2s;
  white-space: nowrap;
}
.pdp-tab-btn:hover { color: var(--pdp-text-secondary); }
.pdp-tab-btn.active {
  color: var(--pdp-green);
  border-bottom-color: var(--pdp-green);
}
.pdp-tab-content {
  display: none;
  padding: 20px 0;
}
.pdp-tab-content.active { display: block; }

.pdp-optionals-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
}
.pdp-optional-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  background: var(--pdp-bg-secondary);
  border-radius: 6px;
  font-size: 15px;
  color: var(--pdp-text-primary);
}
.pdp-optional-check {
  color: var(--pdp-green);
  font-weight: 700;
}
.pdp-description {
  font-size: 15px;
  line-height: 1.7;
  color: var(--pdp-text-secondary);
}
.pdp-warranty-info {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.pdp-warranty-row {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  background: var(--pdp-green-bg);
  border-radius: var(--pdp-radius-md);
  font-size: 15px;
  color: var(--pdp-green-dark);
}
@media (max-width: 575px) {
  .pdp-optionals-grid {
    grid-template-columns: 1fr 1fr !important;
    gap: 4px 12px !important;
  }
  .pdp-optional-item {
    padding: 6px 8px !important;
    font-size: 13px !important;
    background: transparent !important;
    border-bottom: 1px solid var(--pdp-border-tertiary);
    border-radius: 0 !important;
  }
}

/* --- Banner Prenotata --- */
.pdp-prenotata-banner {
  display: flex;
  align-items: flex-start;
  padding: 16px 18px;
  background: #fff3cd;
  border: 2px solid #f59e0b;
  border-radius: 10px;
  margin-bottom: 16px;
  color: #92400e;
}
.pdp-prenotata-banner svg {
  color: #d97706;
  margin-top: 1px;
}

/* --- Urgency Bar --- */
.pdp-urgency {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 18px;
  background: var(--pdp-amber-bg);
  border: 1px solid var(--pdp-amber-border);
  border-radius: var(--pdp-radius-md);
  font-size: 16px;
  font-weight: 700;
  color: var(--pdp-amber-text);
  margin-bottom: 16px;
}

/* --- Sticky Conversion Column --- */
.pdp-conversion {
  position: sticky;
  top: 20px;
}
@media (max-width: 991px) {
  .pdp-conversion { position: static; }
}

/* --- Price Card --- */
.pdp-price-card {
  background: var(--pdp-bg-primary);
  border: 1px solid var(--pdp-border-tertiary);
  border-radius: var(--pdp-radius-lg);
  padding: 24px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.06);
}
.pdp-price-old {
  font-size: 18px;
  color: var(--pdp-text-tertiary);
  text-decoration: line-through;
  margin: 0;
}
.pdp-price-discount {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 3px 10px;
  background: var(--pdp-red);
  color: #fff;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 700;
  margin-left: 8px;
}
.pdp-price-main {
  font-size: 42px;
  font-weight: 800;
  color: var(--pdp-text-primary);
  margin: 8px 0;
  line-height: 1.1;
  letter-spacing: -0.02em;
}
.pdp-price-warranty {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 17px;
  color: var(--pdp-green);
  font-weight: 700;
  margin-bottom: 16px;
}
.pdp-divider {
  border: none;
  border-top: 1px solid var(--pdp-border-tertiary);
  margin: 16px 0;
}
.pdp-finance {
  padding: 14px;
  background: var(--pdp-bg-secondary);
  border-radius: var(--pdp-radius-md);
  margin-bottom: 20px;
}
.pdp-finance-amount {
  font-size: 28px;
  font-weight: 800;
  color: var(--pdp-text-primary);
}
.pdp-finance-label {
  font-size: 15px;
  color: var(--pdp-text-tertiary);
  line-height: 1.5;
  margin-top: 4px;
}

/* --- CTA Stack --- */
.pdp-cta-stack {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.pdp-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px 24px;
  border-radius: var(--pdp-radius-md);
  font-size: 18px;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.2s;
  text-align: center;
}
.pdp-cta--primary {
  background: var(--pdp-green);
  color: #fff;
  border: none;
}
.pdp-cta--primary:hover {
  background: #c0392b;
  color: #fff;
  text-decoration: none;
}
.pdp-cta--secondary {
  background: transparent;
  color: var(--pdp-text-primary);
  border: 2px solid var(--pdp-border-secondary);
}
.pdp-cta--secondary:hover {
  border-color: var(--pdp-text-primary);
  text-decoration: none;
  color: var(--pdp-text-primary);
}
.pdp-cta--tertiary {
  background: transparent;
  color: var(--pdp-text-secondary);
  border: none;
  font-size: 14px;
}
.pdp-cta--tertiary:hover {
  color: var(--pdp-green);
  text-decoration: underline;
}

/* --- Trust Grid --- */
.pdp-trust {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 10px;
  margin-top: 20px;
}
.pdp-trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px;
  background: var(--pdp-bg-secondary);
  border-radius: var(--pdp-radius-md);
}
.pdp-trust-icon {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
  color: var(--pdp-green);
}
.pdp-trust-text {
  font-size: 14px;
  font-weight: 600;
  color: var(--pdp-text-primary);
  line-height: 1.3;
}

/* --- Data Table (in tab) --- */
.pdp-data-table {
  width: 100%;
  border-collapse: collapse;
}
.pdp-data-table tr { border-bottom: 1px solid var(--pdp-border-tertiary); }
.pdp-data-table tr:last-child { border: none; }
.pdp-data-table td {
  padding: 10px 0;
  font-size: 15px;
}
.pdp-data-table td:first-child {
  color: var(--pdp-text-tertiary);
  width: 40%;
}
.pdp-data-table td:last-child {
  color: var(--pdp-text-primary);
  font-weight: 500;
}

/* --- Other Proposals --- */
.pdp-proposals {
  margin-top: 40px;
}
.pdp-proposals-title {
  font-size: 22px;
  font-weight: 700;
  color: var(--pdp-text-primary);
  margin-bottom: 20px;
}
.pdp-proposals-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.pdp-proposal-card {
  border-radius: var(--pdp-radius-lg);
  overflow: hidden;
  border: 1px solid var(--pdp-border-tertiary);
  transition: box-shadow 0.2s;
  text-decoration: none;
  color: inherit;
  display: block;
}
.pdp-proposal-card:hover {
  box-shadow: 0 4px 16px rgba(0,0,0,0.1);
  text-decoration: none;
  color: inherit;
}
.pdp-proposal-img {
  aspect-ratio: 16/10;
  overflow: hidden;
}
.pdp-proposal-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.pdp-proposal-info {
  padding: 12px;
}
.pdp-proposal-name {
  font-size: 15px;
  font-weight: 600;
  color: var(--pdp-text-primary);
}
.pdp-proposal-meta {
  font-size: 13px;
  color: var(--pdp-text-tertiary);
  margin-top: 4px;
}
.pdp-proposal-price {
  font-size: 17px;
  font-weight: 700;
  color: var(--pdp-red);
  margin-top: 6px;
}
.pdp-proposal-placeholder {
  width: 100%;
  height: 100%;
  background: #f5f5f5;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 140px;
}
.pdp-proposal-placeholder span {
  font-size: 12px;
  color: #bbb;
  font-style: italic;
}
@media (max-width: 767px) {
  .pdp-proposals-grid { grid-template-columns: repeat(2, 1fr); }
}

/* --- Views counter animation --- */
.pdp-views-dot {
  display: inline-block;
  width: 6px;
  height: 6px;
  background: #ef4444;
  border-radius: 50%;
  animation: pdp-pulse 2s infinite;
  margin-right: 4px;
}
@keyframes pdp-pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}

/* --- Status badge --- */
/* --- WhatsApp CTA --- */
.pdp-cta--whatsapp {
  background: #25D366 !important;
  color: #fff !important;
  border: none !important;
}
.pdp-cta--whatsapp:hover {
  background: #1DA851 !important;
  color: #fff !important;
  text-decoration: none !important;
}

/* --- Inline Form --- */
.pdp-inline-form {
  margin-top: 16px;
}
.pdp-form-input {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid var(--pdp-border-tertiary);
  border-radius: var(--pdp-radius-md);
  font-size: 15px;
  margin-bottom: 8px;
  background: #fff;
  color: var(--pdp-text-primary);
  outline: none;
  transition: border-color 0.2s;
  font-family: inherit;
  resize: none;
}
.pdp-form-input:focus {
  border-color: var(--pdp-green);
  box-shadow: 0 0 0 3px rgba(231,80,90,0.1);
}
.pdp-form-input::placeholder {
  color: var(--pdp-text-tertiary);
}

/* --- Lightbox Fullscreen --- */
.pdp-lightbox {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.95);
  z-index: 99999;
  align-items: center;
  justify-content: center;
}
.pdp-lightbox.active {
  display: flex;
}
.pdp-lightbox img {
  width: 94vw !important;
  height: 94vh !important;
  object-fit: contain !important;
  border-radius: 0 !important;
  position: static !important;
  max-width: none !important;
}
@media (min-width: 992px) {
  .pdp-lightbox img {
    width: 90vw !important;
    height: 90vh !important;
  }
}
.pdp-lb-close {
  position: absolute;
  top: 16px;
  right: 20px;
  background: none;
  border: none;
  color: #fff;
  font-size: 40px;
  cursor: pointer;
  z-index: 100000;
  line-height: 1;
  padding: 0;
}
.pdp-lb-close:hover { opacity: 0.7; }
.pdp-lb-prev, .pdp-lb-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.15);
  border: none;
  color: #fff;
  font-size: 48px;
  cursor: pointer;
  z-index: 100000;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  padding: 0;
  transition: background 0.2s;
}
.pdp-lb-prev:hover, .pdp-lb-next:hover { background: rgba(255,255,255,0.3); }
.pdp-lb-prev { left: 16px; }
.pdp-lb-next { right: 16px; }
.pdp-lb-counter {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255,255,255,0.7);
  font-size: 14px;
  font-weight: 600;
}

/* --- Benefit subheadline --- */
.pdp-benefit {
  margin-top: 12px;
  margin-bottom: 16px;
  padding: 12px 16px;
  font-size: 16px;
  color: #444;
  font-style: italic;
  background: #f9f9f9;
  border-left: 4px solid #e63012;
  border-radius: 0 6px 6px 0;
  line-height: 1.5;
  display: block;
}

/* --- Revision line --- */
.pdp-revision-line {
  font-size: 16px;
  color: #555;
  margin: 8px 0 16px;
}

/* --- Print / download scheda tecnica --- */
.pdp-cta--print {
  background: transparent !important;
  color: #555 !important;
  border: 1px solid #ccc !important;
  font-size: 15px;
  margin-top: 8px;
}
.pdp-cta--print:hover {
  background: #f5f5f5 !important;
  color: #333 !important;
  border-color: #999 !important;
  text-decoration: none !important;
}

/* --- Call outline button --- */
.pdp-cta--call-outline {
  background: transparent !important;
  color: var(--pdp-red) !important;
  border: 2px solid var(--pdp-red) !important;
}
.pdp-cta--call-outline:hover {
  background: var(--pdp-red) !important;
  color: #fff !important;
  text-decoration: none !important;
}

/* --- Tertiary CTA text --- */
.pdp-cta-tertiary-text {
  text-align: center;
  font-size: 15px;
  color: #666;
  margin: 4px 0 0;
}
.pdp-cta-tertiary-text a {
  color: var(--pdp-red);
  font-weight: 600;
  text-decoration: none;
}
.pdp-cta-tertiary-text a:hover {
  text-decoration: underline;
}

/* --- Discount pill --- */
.pdp-price-discount {
  background: #fdecea;
  color: var(--pdp-red);
  border-radius: 20px;
}

/* --- Sticky bar mobile --- */
.pdp-sticky-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: #fff;
  border-top: 1px solid #e0e0e0;
  padding: 12px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.10);
}
.pdp-sticky-price {
  display: flex;
  flex-direction: column;
  justify-content: center;
  font-size: 18px;
  font-weight: 700;
  color: #1a1a1a;
  line-height: 1.1;
}
.pdp-sticky-price::before {
  content: 'Prezzo';
  font-size: 10px;
  color: #999;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  display: block;
  margin-bottom: 2px;
}
.pdp-sticky-wa {
  flex: 1;
  background: #25D366;
  color: #fff !important;
  border: none;
  border-radius: 8px;
  padding: 13px 20px;
  font-size: 15px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-decoration: none !important;
}
.pdp-sticky-wa:hover {
  background: #1DA851;
  color: #fff !important;
  text-decoration: none !important;
}
/* Sticky solo su mobile */
@media (min-width: 992px) {
  .pdp-sticky-bar { display: none !important; }
}
/* Padding body per sticky */
body.has-sticky-cta { padding-bottom: 72px; }

/* --- Mobile conversion block --- */
.pdp-mobile-conversion {
  display: none;
}

.pdp-status-prenotata {
  display: inline-block;
  padding: 4px 12px;
  background: #FEF3C7;
  color: #92400E;
  border-radius: 4px;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
}
