/** Shopify CDN: Minification failed

Line 33:10 Expected identifier but found whitespace
Line 33:12 Unexpected "{"
Line 33:21 Expected ":"
Line 33:68 Unexpected "{"
Line 33:77 Expected ":"
Line 33:123 Expected ":"
Line 34:16 Expected identifier but found whitespace
Line 34:18 Unexpected "{"
Line 34:27 Expected ":"
Line 34:78 Expected ":"
... and 44 more hidden warnings

**/
/* ===================================================================
  BLOCCO COMPLETO: BADGE STILE APPLE PRO (Senza Shine Effect)
  - Effetto Glassmorphism e Neomorphism
  - Effetto Hover con sollevamento e glow
  - Pallino pulsante e numero personalizzati
  - Completamente configurabile tramite Shopify
  ===================================================================
*/

/* --- Stile Base e Glassmorphism --- */
.apple-badge {
  display: inline-flex;
  align-items: center;
  position: relative; 
    overflow: visible; /* <-- Modifica questa riga da 'hidden' a 'visible' */

  /* Valori resi configurabili tramite lo schema di Shopify */
  padding: {{ section.settings.badge_padding_v | default: '6' }}px {{ section.settings.badge_padding_h | default: '16' }}px;
  border-radius: {{ section.settings.badge_border_radius | default: '999' }}px;
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Text", system-ui, sans-serif;
  font-weight: {{ section.settings.badge_font_weight | default: '500' }};
  font-size: {{ section.settings.badge_font_size | default: '13' }}px;
  color: {{ section.settings.badge_text_color | default: '#F5F5F7' }};
  
  /* Effetto vetro potenziato */
  background: {{ section.settings.badge_bg_color | default: 'rgba(28, 28, 30, 0.4)' }};
  border: 1px solid {{ section.settings.badge_border_color | default: 'rgba(255, 255, 255, 0.15)' }};
  backdrop-filter: blur({{ section.settings.badge_blur_amount | default: '12' }}px);
  
  /* Ombre per effetto 3D (Neomorphism) */
  box-shadow: 
    inset 0 1px 1px {{ section.settings.badge_highlight_color | default: 'rgba(255, 255, 255, 0.2)' }},
    0 4px 15px {{ section.settings.badge_shadow_color | default: 'rgba(0, 0, 0, 0.6)' }};
  
  /* Transizione fluida per l'effetto hover */
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  user-select: none;
  text-decoration: none;
}

/* Usa questa classe per rimuovere lo spazio */
.apple-badge-container {
  margin-top: -17px!important;
  margin-bottom: 0px !important;
    padding-left: 5px; /* Regola questo valore come preferisci */


}

/* --- Effetto Hover (sollevamento e glow) --- */
.apple-badge:hover {
  transform: translateY(-3px) scale(1.02);
  background: {{ section.settings.badge_bg_hover_color | default: 'rgba(44, 44, 46, 0.5)' }};
  border-color: {{ section.settings.badge_border_hover_color | default: 'rgba(255, 255, 255, 0.25)' }};
  box-shadow: 
    inset 0 1px 1px {{ section.settings.badge_highlight_color | default: 'rgba(255, 255, 255, 0.2)' }},
    0 8px 25px {{ section.settings.badge_shadow_hover_color | default: 'rgba(0, 0, 0, 0.7)' }};
}

/* --- Pallino Pulsante (Rimpicciolito) --- */
.pulse-dot {
  position: relative;
  width: 6px;
  height: 6px;
  margin-right: 6px;
  background-color: {{ section.settings.dot_color | default: '#FF3B30' }};
  border-radius: 50%;
  flex-shrink: 0;
  animation: pulse 1.6s ease-in-out infinite;
}
.pulse-dot::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 16px;
  height: 16px;
  transform: translate(-50%, -50%);
  border: 1px solid {{ section.settings.dot_ring_color | default: 'rgba(255, 59, 48, 0.5)' }};
  border-radius: 50%;
  opacity: 0;
  animation: ring 1.6s ease-out infinite;
}

/* --- Numero (in Grassetto) --- */
.cart-count {
  display: inline-block;
  margin: 0 4px;
  font-weight: 700;
}

/* --- Animazione POP per il numero --- */
.cart-count.pop {
  animation: cartPop 0.5s ease-out;
}

/* ===========================================
  DEFINIZIONE KEYFRAMES PER LE ANIMAZIONI
  ===========================================
*/

@keyframes pulse {
  0% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.3); opacity: 0.6; }
  100% { transform: scale(1); opacity: 1; }
}

@keyframes ring {
  0% { transform: translate(-50%, -50%) scale(0.5); opacity: 0.6; }
  80% { opacity: 0; }
  100% { transform: translate(-50%, -50%) scale(1); opacity: 0; }
}

@keyframes cartPop {
  0% { transform: scale(1); }
  50% { transform: scale(1.4); }
  100% { transform: scale(1); }
}

/* ===========================================
  ADATTAMENTO PER DISPOSITIVI MOBILI
  ===========================================
*/
/* Modifiche specifiche per schermi piccoli (Mobile) */
@media (max-width: 768px) {
  .apple-badge-container {
    /* Qui inserisci i nuovi valori che vuoi per il mobile */
    margin-top: -7px !important;
    padding-left: 0;
  }
}

@media (max-width: 480px) {
  .apple-badge {
    padding: 4px 12px;
    font-size: 11px;
  }
  .pulse-dot {
    width: 6px;
    height: 6px;
    margin-right: 6px;
  }
  .cart-count {
    margin: 0 3px;
  }
}

.rating-widget-123 {
  display: flex;
  align-items: center;
  font-family: Arial, sans-serif;
  padding: 10px 0;
  margin-top: -20px;
}

.profile-images-123 {
  display: flex;
  align-items: center;
  margin-right: 20px;
}

.profile-images-123 img {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  margin-right: -10px;
  border: 2px solid white;
}

.rating-123 {
  display: flex;
  align-items: center;
}

@media (max-width: 768px) {
  .profile-images-123 img {
    width: 26px;
    height: 26px;
  }

  .rating-text-123 {
    font-size: 13px !important;
  }

  .highlight-123 {
    font-size: 13px !important;
  }
}

.custom-features-block {
  --cf-primary-text: #f5f5f7;
  --cf-accent-color: #007aff;
  --cf-hover-bg: rgba(255, 255, 255, 0.08);
  --cf-border-color: rgba(255, 255, 255, 0.15);

  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "Segoe UI",
    system-ui, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  padding: 0;
  margin-top: -20px;
  width: 100%;
  max-width: 100%;
  overflow: hidden;
  box-sizing: border-box;
  isolation: isolate;
}
.custom-features-block * {
  box-sizing: border-box;
}

/* Titolo con effetto acciaio statico */
.cf-list-title {
  font-size: 24px;
  font-weight: 600;
  color: #ffffff; /* Fallback color */

  /* Sostituisci il background bianco con questo gradiente per l'effetto acciaio */
background: linear-gradient(
  110deg,
  #6b6b6b 0%,
  #a8a8a8 15%,
  #c5c5c5 30%,
  #e8e8e8 45%,
  #ffffff 50%,
  #e8e8e8 55%,
  #c5c5c5 70%,
  #a8a8a8 85%,
  #6b6b6b 100%
);

  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-align: left;
  margin: 0 0 10px 0;
  padding: 0;
  margin-left: 0px;
  margin-top: 15px;
}

@media screen and (max-width: 768px) {
  .cf-list-title {
    margin-left: -10px;
    margin-top: 15px;
    font-size: 20px;
  }
}

.cf-container {
  width: 100%;
  max-width: 520px;
  margin: 0;
  padding: 0;
}

.cf-feature-item {
  display: flex;
  align-items: center;
  padding: 10px 20px !important;
  margin: 0 -20px !important;
  border-radius: 12px;
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  cursor: pointer;
  position: relative;
  overflow: hidden;
  width: auto;
}
.cf-feature-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.2),
    transparent
  );
  transition: left 0.5s;
}
.cf-feature-item:hover::before {
  left: 100%;
}
.cf-feature-item:hover {
  background: var(--cf-hover-bg);
  transform: translateX(8px) scale(1.02);
}
.cf-feature-item:active {
  transform: translateX(8px) scale(0.98);
}

.cf-check-icon::after {
  content: "✓";
  color: white;
  font-size: 14px;
  font-weight: 600;
}
.cf-feature-item:hover .cf-check-icon {
  transform: rotate(360deg) scale(1.1);
  box-shadow: 0 4px 16px rgba(0, 122, 255, 0.6);
}

@media (max-width: 768px) {
  .custom-features-block {
    padding: 0;
  }
  .cf-list-title {
    font-size: 20px;
    padding-left: 16px;
  }
  .cf-feature-text {
    font-size: 16px;
  }
  .cf-feature-item {
    padding: 8px 16px !important;
    margin: 0 -16px !important;
  }
  .cf-check-icon {
    width: 22px;
    height: 22px;
    margin-right: 14px;
  }
  .cf-check-icon::after {
    font-size: 12px;
  }
}
@media (hover: none) {
  .cf-feature-item:hover {
    transform: none;
    background: transparent;
  }
  .cf-feature-item:hover .cf-check-icon {
    transform: none;
  }
  .cf-feature-item:hover .cf-feature-text {
    transform: none;
    color: var(--cf-primary-text);
  }
}

.payment-wrapper {
  width: 100%;
  text-align: center;
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Text", system-ui,
    sans-serif;
  margin-top: 20px;
}

.secure-checkout-block {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 15px;
  border-radius: 999px;
  background: transparent;
  box-shadow: none;
  user-select: none;
  margin-bottom: 12px;
}

.secure-dot {
  width: 15px;
  height: 15px;
  margin-right: 8px;
  background-color: #34c759;
  border-radius: 50%;
  flex-shrink: 0;
  animation: pulse-green 1.5s ease-in-out infinite;
}

.secure-text {
  font-size: 15px;
  font-weight: 500;
  color: #ffffff;
  text-align: center;
  white-space: nowrap;
}

@keyframes pulse-green {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.4);
    opacity: 0.6;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}

.unique-payment-options-Abc789 {
  display: inline-flex;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
}

.unique-payment-options-Abc789 img {
  width: 50px;
  height: auto;
  transition: transform 0.2s ease;
}

.unique-payment-options-Abc789 img:hover {
  transform: scale(1.1);
}

@media (prefers-color-scheme: dark) {
  .secure-text {
    color: #f5f5f7;
  }
}

@media (max-width: 480px) {
  .secure-checkout-block {
    padding: 6px 12px;
    margin-bottom: 8px;
  }
  .secure-dot {
    width: 6px;
    height: 6px;
    margin-right: 6px;
  }
  .secure-text {
    font-size: 11px;
  }
  .unique-payment-options-Abc789 {
    gap: 6px;
  }
  .unique-payment-options-Abc789 img {
    width: 32px;
  }
}

@media (max-width: 320px) {
  .unique-payment-options-Abc789 {
    gap: 4px;
  }
  .unique-payment-options-Abc789 img {
    width: 24px;
  }
}

.custom-atc.atcoms {
  background: var(--bg-gr);
  color: var(--atc-color);
}


/* Price colors customization */
.product-info__price .price-list sale-price,
.product-info__price .price-list .price {
  color: var(--price-color, #ffffff) !important;
}

.product-info__price .price-list compare-at-price,
.product-info__price .price-list .price--compare-at {
  color: var(--compare-price-color, #999999) !important;
  text-decoration: line-through;
}

/* Peoples section background */
.apple-badge.peoples-bg {
  background: var(--peoples-bg-color, rgba(28, 28, 30, 0.4)) !important;
}

/* prodotto  */

