/** Shopify CDN: Minification failed

Line 572:0 Expected "}" to go with "{"

**/

/* === DESKTOP ONLY: FORM NEWSLETTER === */
@media (min-width: 769px) {
  .newsletter-card {
  background: #fff;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  max-width: 450px;
  width: 100%;
  margin: 0 auto;
}
.newsletter-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.form-input {
  padding: 0.8rem;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 1rem;
  width: 100%;
}
.form-submit {
  padding: 0.8rem;
  background: #29a267;
  color: white;
  font-weight: bold;
  border: none;
  border-radius: 6px;
  cursor: pointer;
}
.form-success {
  display: none;
  margin-top: 1.5rem;
  background: #e6fff0;
  color: #1a7f55;
  padding: 1rem;
  border-radius: 6px;
  font-weight: 500;
  text-align: center;
}

/* === DESKTOP ONLY: HEADER === */  
@media (min-width: 769px) {
  .cs-header {
    background: #fff;
    border-bottom: 1px solid #eee;
    position: relative;
    width: 100%;
    z-index: 100;
  }

  .cs-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 2rem 3rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 4rem;
  }

  .cs-logo {
    max-height: 90px;
    height: auto;
    width: auto;
    object-fit: contain;
    display: block;
  }

  .cs-nav {
    display: flex !important;
    flex-direction: row;
    gap: 3rem;
    margin-left: auto;
  }

  .cs-nav a {
    font-size: 1.8rem; /* ~22px */
    font-weight: 600;
    color: #155e3d;
    text-decoration: none;
    padding: 0.5rem 0;
    border-bottom: 2px solid transparent;
    transition: all 0.3s ease;
  }

  .cs-nav a:hover {
    color: #f15c22;
    border-color: #f15c22;
  }

  .cs-mobile-layout,
  .cs-toggle {
    display: none !important;
  }
}

/* === SECTIONS === */
.cs-section {
  padding: 5rem 2rem;
  text-align: center;
}

/* === PARTNER SLIDER DESKTOP === */
.partner-slider {
  width: 100vw;
  max-width: 100vw;
  margin: 0;
  padding: 2rem 0;
  background: #fff;
  overflow: hidden;
  position: relative;
  left: 50%;
  transform: translateX(-50%);
}

.partner-slider::before,
.partner-slider::after {
  content: '';
  position: absolute;
  top: 0;
  width: 50px;
  height: 100%;
  z-index: 10;
  pointer-events: none;
}

.partner-slider::before {
  left: 0;
  background: linear-gradient(to right, white 0%, transparent 100%);
}

.partner-slider::after {
  right: 0;
  background: linear-gradient(to left, white 0%, transparent 100%);
}

.slide-track {
  display: flex;
  width: fit-content;
  animation: scroll-loop 40s linear infinite;
}

.slide {
  flex-shrink: 0;
  width: 180px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 1rem;
}

.slide img {
  max-height: 60px;
  max-width: 120px;
  object-fit: contain;
  filter: grayscale(100%);
  opacity: 0.8;
  transition: transform 0.3s ease, opacity 0.3s ease, filter 0.3s ease;
}

.slide img:hover {
  filter: grayscale(0%);
  opacity: 1;
  transform: scale(1.05);
}

@keyframes scroll-loop {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* === FIX: rimuove interferenze globali === */
.partner-slider,
.partner-slider * {
  border-radius: 0 !important;
  box-shadow: none !important;
}

html {
  scroll-behavior: smooth;
}
.hero-section {
  padding: 4rem 2rem 6rem;
  background: #fdfcf8;
  text-align: center;
}

.hero-inner {
  max-width: 800px;
  margin: 0 auto;
}

.hero-title {
  font-size: 3rem;
  font-weight: 600;
  color: #155e3d;
  margin-bottom: 1.5rem;
}

.hero-subtitle {
  font-size: 1.3rem;
  color: #333;
  margin-bottom: 2rem;
  line-height: 1.6;
}

.hero-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
}

.hero-input {
  padding: 0.9rem 1rem;
  width: 100%;
  max-width: 400px;
  border-radius: 6px;
  border: 1px solid #ccc;
  font-size: 1.3rem;
}

.hero-button {
  padding: 0.9rem 2rem;
  background-color: #29a267;
  color: white;
  border: none;
  border-radius: 6px;
  font-weight: bold;
  font-size: 1.3rem;
  cursor: pointer;
  transition: background 0.3s ease;
}

.hero-button:hover {
  background-color: #218655;
}

.hero-success {
  display: none;
  margin-top: 1.5rem;
  background: #e6fff0;
  color: #1a7f55;
  padding: 1rem;
  border-radius: 6px;
  font-weight: 500;
  text-align: center;
}

@media (min-width: 769px) {
  .hero-title {
    font-size: 3rem;
  }

  .hero-subtitle {
    font-size: 1.5rem;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
  }

  .hero-input,
  .hero-button {
    font-size: 1.5rem;
    max-width: 480px;
  }

  .hero-button {
    font-weight: 500;
  }
}

@media (min-width: 769px) {
  .hero-checkbox {
    max-width: 440px;
    font-size: 1rem;
    justify-content: flex-start;
  }

  .hero-checkbox input[type="checkbox"] {
    margin-top: 0.2rem;
  }
}

  
@media (min-width: 769px) {
  .why-cards {
    flex-direction: row;
    justify-content: center;
  }

  .why-title {
    font-size: 3rem;
  }

  .why-heading {
    font-size: 2rem;
    max-width: 280px;
  }

  .why-text {
    font-size: 1.5rem;
    max-width: 280px;
  }
}
@media (min-width: 769px) {
.quote-section {
  background: #155e3d;
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  padding: 1rem 2rem 5rem;
  text-align: center;
}

  .quote-text {
    font-size: 2.6rem;
    max-width: none;
  }
}
@media (min-width: 769px) {
.quote-section {
  background: #155e3d;
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  padding: 2rem 2rem 2rem;
  text-align: center;
}

  .quote-icon {
    font-size: 5rem;
    margin-bottom: 0.1rem;
  }

  .quote-text {
    font-size: 2.6rem;
  }
}

  @media (min-width: 769px) {
  .slider-title {
    font-size: 3rem;
    font-weight: 600;
  }

  .slider-subtitle {
    font-size: 1.5rem;
  }
  .slider-description {
    font-size: 1.5rem;
  }

.slider-separator {
  border: none;
  height: 1px;
  background-color: #ccc;
  max-width: 200px;
  margin: 3rem auto;
  opacity: 0.5;
}

  .slider-subtitle-title {
    font-size: 3rem;
    font-weight: 600;    
  }
}

@media (min-width: 769px) {
  .features-grid {
    flex-direction: row;
    justify-content: space-between;
  }

  .feature-item {
    flex: 1;
  }

  .features-title {
    font-size: 3rem;
  }

  .feature-text {
    font-size: 1.5rem;
  }
}

@media (min-width: 769px) {
  .cta-title {
    font-size: 3rem;
  }

  .cta-subtitle {
    font-size: 1.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
  }

  .cta-form {
    flex-direction: column;
    align-items: center;
  }

  .cta-input,
  .cta-button {
    font-size: 1.2rem;
    max-width: 420px;
    width: 100%;
  }

  .cta-input {
    border-radius: 8px;
    margin: 0;
  }

  .cta-button {
    border-radius: 8px;
    margin-top: 1rem;
  }

  .cta-checkbox {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    width: 100%;
    max-width: 420px;
    margin-top: 1rem;
    box-sizing: border-box;
  }

  .cta-checkbox input[type="checkbox"] {
    margin-right: 0.75rem;
    flex-shrink: 0;
    margin-top: 0.2rem;
  }

  .checkbox-label {
    flex: 1;
    font-size: 1.2rem;
    color: #555;
    font-weight: 500;
    line-height: 1.4;
    word-break: break-word;
  }

  .checkbox-label a {
    color: #155e3d;
    text-decoration: underline;
    font-weight: 600;
  }

   .cta-inner {
    max-width: 700px;
    width: 100%;
    padding: 3rem 2rem;
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    overflow: hidden; /* 👈 Evita che il box si allarghi */
    box-sizing: border-box;
  }
}


@media (min-width: 769px) {
  .instagram-title {
    font-size: 3rem;
  }

  .instagram-subtitle {
    font-size: 1.5rem;
  }
}

  .privacy-modal {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0,0,0,0.6);
  justify-content: center;
  align-items: center;
  padding: 2rem;
}

.privacy-modal-content {
  background: #fff;
  padding: 2rem;
  border-radius: 12px;
  max-width: 600px;
  width: 100%;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
  position: relative;
  max-height: 90vh;
  overflow-y: auto;
}

.privacy-modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  font-size: 1.5rem;
  cursor: pointer;
  color: #999;
}

.privacy-modal-content h2 {
  color: #155e3d;
  margin-bottom: 1rem;
}

.privacy-modal-body p {
  font-size: 1rem;
  color: #333;
  line-height: 1.6;
  margin-bottom: 1rem;
}

@media (min-width: 769px) {
  .contact-title {
    font-size: 3rem;
  }

  .contact-email,
  .contact-follow {
    font-size: 1.4rem;
  }

  .contact-socials {
    font-size: 1.6rem;
    gap: 2rem;
  }

  .contact-socials a i {
  margin-right: 0.5rem;
  font-size: 1.3em;
  vertical-align: middle;
}

}
.custom-success-box {
  background: #e6fff0;
  color: #1a7f55;
  border-left: 6px solid #29a267;
  padding: 1.5rem;
  border-radius: 10px;
  font-size: 1.05rem;
  font-weight: 500;
  margin: 2rem auto;
  max-width: 600px;
  text-align: center;
  box-shadow: 0 3px 10px rgba(0,0,0,0.05);
}

.custom-success-box strong {
  display: block;
  margin-top: 0.5rem;
  font-weight: 700;
  color: #1a7f55;
}
