/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Feb 13 2026 | 17:27:29 */
/* Add your CSS code here.

For example:
.example {
    color: red;
}

For brushing up on your CSS knowledge, check out http://www.w3schools.com/css/css_syntax.asp

End of comment */ 


/* CARD PRODOTTO */
ul.products li.product {
    background: #ffffff;
    border-radius: 16px;
    overflow: hidden;
    padding: 4px !important;
    transition: all .35s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
    border: 1px solid rgba(0,0,0,0.04);
	  margin: 0px 0.8% 2.992em 0 !important;
}

/* HOVER */
ul.products li.product:hover {
    box-shadow: 0 18px 40px rgba(0,0,0,0.08);
    transform: translateY(-6px);
}

/* LINK CONTENITORE */
ul.products li.product a.woocommerce-LoopProduct-link {
    text-decoration: none;
    display: flex;
    flex-direction: column;
    flex: 1;
}

/* IMMAGINE */
ul.products li.product img {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    border-radius: 12px;
    margin-bottom: 18px;
}

/* TITOLO */
ul.products li.product .woocommerce-loop-product__title {
font-size: 12px !important;
font-weight: 500;
letter-spacing: 0.5px;
color: #1f1f1f;
margin-bottom: 8px;
line-height: 1.4;
display: -webkit-box;
-webkit-line-clamp: 2;      /* numero di righe */
-webkit-box-orient: vertical;
overflow: hidden;
text-overflow: ellipsis;
height: 42px;           /* mantiene uniformità */

}

/* PREZZO */
ul.products li.product .price {
    font-size: 18px;
    font-weight: 600;
    color: #425f9c;
    margin-bottom: 16px;
}

/* BOTTONE */
ul.products li.product .button {
    margin-top: auto;
    padding: 10px 16px;
    text-align: center;
    background: transparent;
    border: 1px solid #425f9c;
    color: #425f9c;
    border-radius: 8px;
    font-size: 13px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    transition: all .3s ease;
}

/* HOVER BOTTONE */
ul.products li.product .button:hover {
    background: #425f9c;
    color: #ffffff;
}

/* RIMUOVE DECORAZIONI EXTRA DI ALCUNI TEMI */
ul.products li.product::before,
ul.products li.product::after {
    display: none !important;
}

.woocommerce-LoopProduct-link.woocommerce-loop-product__link {
	text-align:center !important;
}
.attachment-woocommerce_thumbnail.size-woocommerce_thumbnail {
	width: auto !important;
	/* height: auto; */
    display: inline-block !important;
	margin: 0 0 1em !important;
	box-shadow: none !important;
	max-height: 176px !important;
}
/* =========================
   FOOTER BASE
========================= */
#site-footer {
  background-color: #111;
  color: #e5e5e5;
  padding: 60px 20px 40px;
  font-size: 14px;
}

#site-footer a {
  color: #e5e5e5;
  text-decoration: none;
  transition: color 0.3s ease;
}

#site-footer a:hover {
  color: #c9a86a; /* accento elegante */
}

/* =========================
   FOOTER INNER
========================= */
#site-footer .footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
  flex-wrap: wrap;
  flex-direction: row;
}

/* =========================
   BRANDING
========================= */
#site-footer .site-branding {
  max-width: 360px;
}

#site-footer .site-logo img {
  max-width: 160px;
  height: auto;
  margin-bottom: 15px;
}

#site-footer .site-title a {
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 0.04em;
}

#site-footer .site-description {
  margin-top: 10px;
  line-height: 1.6;
  color: #aaa;
}

/* =========================
   MENU FOOTER
========================= */
#site-footer .site-navigation ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: block;
  gap: 20px;
}

#site-footer .site-navigation li {
  margin: 0;
}

#site-footer .site-navigation a {
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  opacity: 0.85;
}

#site-footer .site-navigation a:hover {
  opacity: 1;
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 768px) {
  #site-footer {
    padding: 40px 20px;
    text-align: center;
  }

  #site-footer .footer-inner {
    flex-direction: row;
    align-items: center;
    gap: 30px;
  }

  #site-footer .site-navigation ul {
    justify-content: center;
  }
}

/* CONTENITORE */
.woocommerce-pagination {
    margin: 60px 0 40px;
    display: flex;
    justify-content: center;
}

/* LISTA */
.woocommerce-pagination ul.page-numbers {
    display: flex;
    align-items: center;
    gap: 8px;
    list-style: none;
    padding: 0;
    margin: 0;
}

/* LINK E NUMERI */
.woocommerce-pagination ul.page-numbers li a,
.woocommerce-pagination ul.page-numbers li span {
		display: flex;
    align-items: center;
    justify-content: center;

    width: 38px;
    height: 38px;

    font-size: 13px;
    font-weight: 500;
    color: #1f1f1f;
    text-decoration: none;

    border-radius: 8px;
    transition: all .3s ease;
}

/* HOVER */
.woocommerce-pagination ul.page-numbers li a:hover {
    background: rgba(66,95,156,0.08);
    color: #425f9c;
}

/* PAGINA ATTIVA */
.woocommerce-pagination .page-numbers.current {
    background: #425f9c;
    color: #ffffff;
    font-weight: 600;
}

/* PUNTINI */
.woocommerce-pagination .page-numbers.dots {
    background: transparent;
    cursor: default;
    width: auto;
    padding: 0 6px;
}

/* FRECCIA NEXT */
.woocommerce-pagination .next {
    font-size: 16px;
    font-weight: 600;
}
.woocommerce nav.woocommerce-pagination ul li, .woocommerce nav.woocommerce-pagination ul {
 border-right: 0px !important;
}
 /* MOBILE */
@media (max-width: 768px) {
    .woocommerce-pagination ul.page-numbers {
        gap: 6px;
    }

    .woocommerce-pagination ul.page-numbers li a,
    .woocommerce-pagination ul.page-numbers li span {
        width: 34px;
        height: 34px;
        font-size: 12px;
    }
}
