/** Shopify CDN: Minification failed

Line 19:20 Expected ")" to end URL token

**/
/* === Why / Misiunea noastră – PATCH === */
.why-section{
  position:relative;
  padding:56px 0;
  text-align:center;
  overflow:hidden; /* ascunde frunza din afara secțiunii */
}

/* frunza decor */
.why-section:after{
  content:"";
  position:absolute; top:50%; right:-8%;
  transform:translateY(-50%);
  background:url({{ 'leaf.png' | asset_url }}) no-repeat center/contain;
  opacity:.15; width:420px; height:420px; pointer-events:none;
}

/* overline + heading */
.why-overline{
  text-transform:uppercase; letter-spacing:.15em;
  color:#f0c200; margin-bottom:.35rem; font-size:1.1rem;
}
.why-heading{
  font-family:'Playfair Display', serif;
  font-size:clamp(28px,3.2vw,40px);
  font-weight:500; color:#fff; margin:0 0 28px;
}

/* GRID – 2 coloane fixe centrate, cu lățime maximă controlată */
/* GRID – pe desktop un singur rând cu 3 coloane egale */
.why-grid{
  display:grid;
  gap:24px;
  width:min(1120px,92vw);      /* aliniat cu restul site-ului */
  margin:0 auto;
  grid-template-columns:repeat(3, minmax(280px, 1fr));
  align-items:stretch;
  grid-auto-rows:1fr;          /* forțează cărțile la aceeași înălțime */
}


/* CARD */
.why-item{
  background:#9a9582;
  padding:28px 32px;
  border-radius:28px;
  display:flex; flex-direction:column;
  align-items:center; justify-content:center; text-align:center;
}
.why-icon img{ width:72px; height:72px; margin-bottom:12px; }
.why-title{
  font-size:clamp(22px,2.2vw,28px);
  font-weight:600; color:#fff; margin:6px 0 8px;
}
.why-text{ color:#f0f0e9; line-height:1.7; max-width:60ch; }

/* forme opționale – păstrează doar dacă le folosești */
.shape-1{ border-radius:28px 0 0 28px }
.shape-2{ border-radius:28px 28px 0 0 }
.shape-3{ border-radius:0 28px 28px 0 }
.shape-4{ border-radius:0 0 28px 28px }
.shape-5{ border-radius:28px }

/* TABLET & MOBIL */
@media (max-width:980px){
  .why-grid{ grid-template-columns:1fr; max-width:720px; }
  .why-item{ padding:24px }
  .why-icon img{ width:64px; height:64px }
}
@media (max-width:600px){
  .why-section{ padding:44px 0 }
  .why-overline{ font-size:1rem }
  .why-heading{ font-size:26px; margin-bottom:20px }
  .why-item{ border-radius:22px; padding:20px }
  .why-icon img{ width:56px; height:56px }
}

/* Dacă vrei scroll orizontal pe mobil în loc de 1 coloană,
   comentează blocul @media (max-width:980px) de mai sus și folosește:
@media (max-width:768px){
  .why-grid{ display:flex; overflow-x:auto; scroll-snap-type:x mandatory; gap:16px; padding-bottom:12px; }
  .why-item{ flex:0 0 86%; scroll-snap-align:center; }
}
*/
