/*
Theme Name: Chateau Child
Theme URI: https://chateau.qodeinteractive.com
Template: chateau
Author: Mikado Themes
Author URI: https://qodeinteractive.com
Description: Winery and Wine Shop Theme
Tags: one-column,two-columns,three-columns,four-columns,left-sidebar,right-sidebar,custom-menu,featured-images,flexible-header,post-formats,sticky-post,threaded-comments,translation-ready
Version: 1.1.1758540564
Updated: 2025-09-22 11:29:24

*/

/* Filtro categorie */
.custom-filter {
  margin-bottom: 20px;
  text-align: center;
}

.filter-btn {
  display: inline-block;
  margin: 0 5px 10px;
  padding: 8px 15px!important;
  border: 1px solid #003333;
  cursor: pointer;
  transition: all 0.3s ease;
}

.filter-btn.active,
.filter-btn:hover {
  background: #003333!important;
  color: #fff!important;
}


/* Griglia prodotti */
.custom-products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

@media (max-width: 1024px) {
  .custom-products-grid {
    grid-template-columns: repeat(2, 1fr);
	gap: 10px;
  }
}

/* Card prodotto */
.custom-product-card {
  border: 1px solid #B98D58;
  padding: 20px;
  text-align: center;
  background: #fff;
  transition: box-shadow 0.3s ease;
}

.custom-product-card:hover {
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

/* Immagine */
.custom-product-card .product-image img {
  max-width: 100%;
  height: auto;
  margin-bottom: 15px;
}

/* Titolo */
.custom-product-card .product-title {
  font-size: 16px;
  margin: 10px 0 20px;
  color: #003333;
  min-height: 40px; /* uniforma l'altezza */
}

/* Bottone */
.custom-product-card .custom-btn {
  font-family: "Barlow Condensed", sans-serif;
  display: inline-block;
  padding: 10px 20px;
  border: 1px solid #B98D58;
  background: #fff;
  color: #003333;
  text-transform: uppercase;
  font-size: 14px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.custom-product-card .custom-btn:hover {
  background: #003333;
  color: #fff;
}

/*Custom Product*/
.custom-single-product{
	display:flex;
	gap:40px;
	align-items:flex-start;
	margin-bottom:1rem;
}

.custom-single-product .product-image{
	flex:1;
	border: 1px solid #B98D58;
	padding: 1rem .75rem;
}

.custom-single-product .product-summary{
	flex:2;
}

.custom-single-product .product-category a,
.woocommerce-breadcrumb{
	color: #B89949;
	font-family: "Ibarra Real Nova", serif;
    font-style: italic;
    font-size: 20px;
	letter-spacing: .02em;
}

.woocommerce-breadcrumb{
	font-size: 16px;
}

.torna-al-catalogo{
	margin-bottom: 1rem;
    text-align: right;	
}

.torna-al-catalogo a.button{
	border: 1px solid #B89949!important;
	font-size: 14px;
    line-height: 2.14286em;
    font-weight: 500;
    font-family: "Barlow Condensed", sans-serif;
    letter-spacing: .175em;
    position: relative;
    display: inline-flex
;
    vertical-align: middle;
    width: auto;
    margin: 0;
    text-decoration: none;
    text-transform: uppercase;
    border-radius: 0;
    outline: 0;
    transition: color .2s 
ease-out, background-color .2s 
ease-out, border-color .2s 
ease-out;
    padding: 12px 50px 11px;
    cursor: pointer;
    z-index: 3;
    border: 0;
    margin-top: 1px;
}

.torna-al-catalogo a.button:hover{
	background: #003333!important;
	border-color: #003333!important;
	color: #fff!important;
}

.catalogue-archive-heading{
	display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Responsive: mobile */
@media (max-width: 768px) {
    .custom-single-product {
        flex-direction: column;
        gap: 20px;
    }

    .product-image,
    .product-summary {
        flex: unset; /* togliamo i flex per adattarsi al 100% */
        width: 100%;
    }
	
	.catalogue-archive-heading{
		flex-direction: column;
	}
}
