/* Paniez – Shop Design v0.2.7 */

/* === Variables Paniez === */
:root{
  --paniez-green: #7FBF6A;
  --paniez-orange: #F59E0B;
}

/* Card */
body.woocommerce ul.products li.product{
  background:#fff !important;
  border-radius:14px !important;
  padding:16px 16px 18px !important;
  box-shadow:0 8px 24px rgba(0,0,0,.06) !important;
  overflow:hidden !important;
}

/* Image */
body.woocommerce ul.products li.product img{
  border-radius:10px !important;
  filter:saturate(.9) contrast(.95) brightness(.98) !important;
}

/* Title */
body.woocommerce ul.products li.product .woocommerce-loop-product__title{
  font-size:16px !important;
  font-weight:600 !important;
  line-height:1.35 !important;
  margin:6px 0 6px 0 !important;
}

/* Price */
body.woocommerce ul.products li.product .price{
  margin:0 0 10px 0 !important;
}

/* CTA wrapper */
body.woocommerce ul.products li.product .ct-woo-card-actions{
  width:100% !important;
  display:flex !important;
  justify-content:center !important;
}

/* CTA button – GREEN default */
body.woocommerce ul.products li.product a.button{
  background:var(--paniez-green) !important;
  color:#fff !important;
  border-radius:10px !important;
  padding:10px 14px !important;
  font-weight:700 !important;
  transition:background-color .12s ease, transform .12s ease, filter .12s ease !important;
}

/* Hover – ORANGE */
body.woocommerce ul.products li.product a.button:hover{
  background:var(--paniez-orange) !important;
  filter:brightness(0.98) !important;
  transform:translateY(-1px) !important;
}

/* Mobile */
@media (max-width:768px){
  body.woocommerce ul.products{
    display:grid !important;
    grid-template-columns:repeat(2,minmax(0,1fr)) !important;
    gap:12px !important;
  }
  body.woocommerce ul.products li.product{
    padding:12px 12px 14px !important;
    box-shadow:0 6px 18px rgba(0,0,0,.05) !important;
  }
  body.woocommerce ul.products li.product figure{
    margin:0 0 6px 0 !important;
    padding:0 !important;
  }
  body.woocommerce ul.products li.product img{margin:0 !important;}
  body.woocommerce ul.products li.product .woocommerce-loop-product__title{
    font-size:15px !important;
    font-weight:700 !important;
    line-height:1.3 !important;
    margin:4px 0 6px 0 !important;
  }
  body.woocommerce ul.products li.product .price{
    font-size:13px !important;
    margin:0 0 8px 0 !important;
  }
  body.woocommerce ul.products li.product .ct-woo-card-actions{justify-content:stretch !important;}
  body.woocommerce ul.products li.product .ct-woo-card-actions a.button{
    width:100% !important;
    font-size:12.5px !important;
    padding:10px 8px !important;
  }
}
