@import url('https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&family=Playfair+Display:ital,wght@0,400..900;1,400..900&display=swap');

h1 {
	 font-family: "lato", serif;
	font-style:italic;
}
h2 {
	 font-family: "lato", serif;
	font-style:italic;
	color:#707070;
	font-weight:400;
	font-size: clamp(1.25rem, 0.7143rem + 1.7857vw, 2.5rem);
	margin:5px;
	text-align:left;
}
.sub-main-header h2 {
	font-family: "lato", serif;
	font-style:italic;
	color:#fff;
	font-weight:400;
	font-size: clamp(1.0625rem, 0.875rem + 0.625vw, 1.3rem);
	text-transform:lowercase;
	margin:0;
	text-align:center;
}
.sub-main-header h2:first-letter {
	text-transform:uppercase;
}
.sub-main-header {
	background:#5F6E1E;
	
}
h3 {
	 font-family: "lato", serif;
	font-style:italic;
	color:#707070;
	font-weight:400;
	font-size: clamp(1.25rem, 0.7143rem + 1.7857vw, 2.5rem);
	margin:5px;
	text-align:justify;
}
h4 {
	 font-family: "lato", serif;
	font-style:italic;
	font-weight:400;
	font-size: clamp(1.25rem, 0.7143rem + 1.7857vw, 1.5rem);
	margin:5px;
	text-align:justify;
	border-radius:10px;
}
li {
	list-style:none;
}
pre {
	background:none;
}
a {
	color:#A46F3F;
	text-decoration:none;
}
p {
	font-family: "lato", serif;
	font-style:italic;
	font-weight:400;
}
body {
	background:#fff;
}
.widget_price_filter .price_slider_amount {
  display: none; /* oculta la parte slider que no usas */
}
.widget_price_filter .price_label {
  margin-bottom: 8px;
  color: #7a7a72;
}
.widget_price_filter input[type="number"] {
  width: 48%;
  padding: 6px;
  border: 1px solid #ddd;
  border-radius: 4px;
  margin-bottom: 8px;
}
.widget_price_filter .button {
  width: 100%;
}
/* ----------------------------
   BUSCADOR
   ---------------------------- */

.buscador {
	position:absolute;
	right:0;
	top:0;
	transform:translate(0%,30%);
}
@media(max-width:700px){
	.buscador {
		position:relative;
		margin-bottom: 20px;
	}
}
/* ----------------------------
   HERO BANNER PORTADA TIENDA
   ---------------------------- */

.hero-banner {
  position: relative;
  width: 100%;
  margin: 0;
  height: 700px;
  overflow: hidden;
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.3) 50%, transparent 100%);
  display: flex;
  align-items: center;
  padding: 0 60px;
}

.hero-content {
  max-width: 600px;
  color: #fff;
}

.hero-subtitle {
  font-family: "Lato", sans-serif;
  font-size: clamp(0.875rem, 0.5rem + 1.25vw, 1.5rem);
  font-weight: 300;
  letter-spacing: 2px;
  margin: 0 0 10px 0;
  text-transform: uppercase;
}

.hero-title {
  font-family: "Lato", serif;
  font-style: normal;
  font-size: clamp(2.5rem, 1.5rem + 3.33vw, 5rem);
  font-weight: 700;
  margin: 0 0 20px 0;
  line-height: 1.1;
}

.hero-description {
  font-family: "Lato", serif;
  font-style: italic;
  font-size: clamp(1.25rem, 0.875rem + 1.25vw, 2rem);
  font-weight: 400;
  margin: 0;
  line-height: 1.4;
}

/* Responsive - Tablet */
@media (max-width: 1024px) {
  .hero-banner {
    height: 500px;
  }
  
  .hero-overlay {
    padding: 0 40px;
  }
  
  .hero-image {
    object-position: 60% center;
  }
}

/* Responsive - Móvil */
@media (max-width: 600px) {
  .hero-banner {
    height: 450px;
    min-height: 450px;
  }
  
  .hero-image {
    object-fit: cover;
    object-position: 65% center;
    min-height: 450px;
  }
  
  .hero-overlay {
    background: linear-gradient(180deg, 
      rgba(0,0,0,0.3) 0%, 
      rgba(0,0,0,0.4) 30%, 
      rgba(0,0,0,0.7) 70%, 
      rgba(0,0,0,0.85) 100%
    );
    padding: 20px;
    align-items: flex-end;
    padding-bottom: 40px;
  }
  
  .hero-content {
    max-width: 100%;
    text-align: left;
  }
  
  .hero-subtitle {
    font-size: 0.75rem;
    letter-spacing: 1px;
  }
  
  .hero-title {
    font-size: 2rem;
    margin-bottom: 10px;
  }
  
  .hero-description {
    font-size: 1rem;
  }
}

/* Extra pequeño (para pantallas muy pequeñas) */
@media (max-width: 400px) {
  .hero-banner {
    height: 400px;
    min-height: 400px;
  }
  
  .hero-image {
    min-height: 400px;
  }
  
  .hero-title {
    font-size: 1.75rem;
  }
  
  .hero-description {
    font-size: 0.9rem;
  }
}


/* ----------------------------
   HEADER Y CONTENEDOR PRINCIPAL
   ---------------------------- */
.main-header {
  border-bottom: 1px solid #ddd;
  position: relative;
  z-index: 1000;
	max-width:90%;
	margin:auto;
}
.separador {
	height:2px;
	background:#ccc;
	width:90%;
	margin:auto;
	margin-bottom:50px;
}
.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 10px 20px;
}

/* ----------------------------
   BOTÓN BURGER (checkbox + líneas)
   ---------------------------- */
.menu-btn {
  display: none;
}

.menu-icon {
  display: inline-block;
  width: 50px;       /* contenedor del burger */
  height: 24px;
  position: absolute;
  top: 50%;
  left: 20px;
  transform: translateY(-50%);
  cursor: pointer;
  z-index: 1001;
}

.menu-icon span {
  position: absolute;
  height: 1px;
  background-color: #333;
  left: 0;
  transition: 0.3s ease;
}

/* Primera y segunda línea al 100% */
.menu-icon span:nth-child(1) {
  top: 0;
  width: 100%;
}
.menu-icon span:nth-child(2) {
  top: 9px;
  width: 100%;
}

/* Tercera línea más corta (60%) */
.menu-icon span:nth-child(3) {
  top: 18px;
  width: 60%;
  left: 0;  /* si quisieras centrarla: left:20%; */
}

/* ----------------------------
   LOGO CENTRADO
   ---------------------------- */
.logo img {
  max-height: 100px;
  display: block;
  margin: 0 auto;
}

/* ----------------------------
   MENÚ LATERAL
   ---------------------------- */
.side-menu {
  position: fixed;
  top: 0;
  left: -320px;
  width: 320px;
  height: 100%;
  background: linear-gradient(135deg, #EEEAE7 0%, #f8f6f4 100%);
  box-shadow: 4px 0 20px rgba(0,0,0,0.15);
  transition: left 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 9999;
  padding: 0;
  overflow-y: auto;
}

/* Mostrar cuando el checkbox está activo */
.menu-btn:checked ~ .side-menu {
  left: 0;
}

/* Overlay oscuro cuando el menú está abierto */
.menu-btn:checked ~ .menu-overlay {
  opacity: 1;
  pointer-events: auto;
}

.menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
  z-index: 9998;
}

/* Header del menú con logo pequeño */
.side-menu-header {
  background: #5F6E1E;
  padding: 30px 20px;
  text-align: center;
  border-bottom: 3px solid #A46F3F;
}

.side-menu-header h3 {
  color: #fff;
  font-family: "Lato", serif;
  font-style: italic;
  font-size: 1.5rem;
  margin: 0;
  letter-spacing: 1px;
}

/* ----------------------------
   ESTILOS DE NAVEGACIÓN
   ---------------------------- */
.nav-links {
  list-style: none;
  padding: 40px 0;
  margin: 0;
}

.nav-links li {
  margin: 0;
  border-bottom: 1px solid rgba(95, 110, 30, 0.1);
  transition: background-color 0.3s ease;
}

.nav-links li:hover {
  background-color: rgba(95, 110, 30, 0.05);
}

.nav-links a {
  display: block;
  text-decoration: none;
  color: #5F6E1E;
  font-size: clamp(1rem, 0.8rem + 0.5vw, 1.25rem);
  font-family: "Lato", serif;
  font-style: italic;
  padding: 18px 30px;
  transition: all 0.3s ease;
  position: relative;
}

.nav-links a::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  height: 100%;
  background: linear-gradient(90deg, rgba(95, 110, 30, 0.1) 0%, transparent 100%);
  transition: width 0.3s ease;
  z-index: -1;
}

.nav-links a:hover::before {
  width: 100%;
}

.nav-links a:hover {
  color: #A46F3F;
  padding-left: 40px;
}

/* Icono decorativo en los enlaces */
.nav-links a::after {
  content: '→';
  position: absolute;
  right: 30px;
  opacity: 0;
  transition: all 0.3s ease;
  color: #A46F3F;
}

.nav-links a:hover::after {
  opacity: 1;
  right: 20px;
}

/* Footer del menú lateral */
.side-menu-footer {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 20px;
  background: #5F6E1E;
  text-align: center;
}

.side-menu-footer p {
  color: #fff;
  font-size: 0.875rem;
  margin: 0;
  font-style: italic;
}
/* ----------------------------
   FLEXBOX PARA ALINEAR ZONAS
   ---------------------------- */
.header-left,
.header-center,
.header-right {
  flex: 1;
  text-align: center;
}
.header-left {
  text-align: left;
}
.header-right {
  text-align: right;
}
/* ----------------------------
   FORMULARIO
   ---------------------------- */

.mi-formulario {
  max-width: 600px;
  margin: 0rem auto;
  padding: 2rem;
  background: #fff;
  border: 1px solid #e0e0e0;
  border-radius: 6px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
  font-family: Lato, sans-serif;
}

/* Cada bloque de campo */
.mi-formulario__field {
  display: block;
  margin-bottom: .5rem;
}

/* Etiqueta de texto */
.mi-formulario__label {
  display: inline-block;
  margin-bottom: .5rem;
  font-size: 1rem;
  font-weight: 600;
  color: #333;
}

/* Inputs de texto/email */
.mi-formulario__input,
.mi-formulario__textarea {
  width: 100%;
  padding: .75rem;
  font-size: 1rem;
  border: 1px solid #ccc;
  border-radius: 4px;
  box-sizing: border-box;
}

/* Textarea en particular */
.mi-formulario__textarea {
  min-height: 150px;
  resize: vertical;
}

/* Foco en campos */
.mi-formulario__input:focus,
.mi-formulario__textarea:focus {
  border-color: #5F6E1E;
  outline: none;
}

/* Botón de envío */
.mi-formulario__button {
  display: inline-block;
  background-color: #5F6E1E!important;
  color: #fff!important;
  font-weight: 600;
  padding: .8rem 1.5rem;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: background-color .2s ease;
	 font-family: Lato, sans-serif;
	width:100%;
	font-style:italic;
}

.mi-formulario__button:hover {
  background-color: #A3733D;
}


/* ----------------------------
   BANNER DULCE SELECTO
   ---------------------------- */

/* =======================================
   Banner “Dulces Selectos” en la shop
   ======================================= */

/* Contenedor del título */
#content-tienda {
  text-align: center;
  margin: 2.5rem 0 1rem;
}
/* Estilo del título */
#content-tienda h2 {
  font-size: 2rem;
  color: #5F6E1E;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-style: italic;
	text-align:center;
}
/* Línea separadora */
.separador {
  width: 80%;
  height: 2px;
  background: #e0e0e0;
  margin: 0 auto 2rem;
}

/* =======================================
   Ajustes del producto destacado
   ======================================= */

/* El wrapper UL de productos */
#content-tienda + .separador + .woocommerce ul.products {
  max-width: 90%;
  margin: 0 auto 3rem;
}

/* En desktop hacemos el contenedor más ancho */
@media (min-width: 768px) {
  #content-tienda + .separador + .woocommerce ul.products {
    max-width: 600px;  /* aumenta el ancho del bloque */
  }
}

/* Cada tarjeta de producto dentro del banner */
#content-tienda + .separador + .woocommerce ul.products li.product {
  width: 100%;  /* ocupar todo el ancho del wrapper */
  margin: 0 auto;
}

/* Imagen del producto: más grande y centrada */
#content-tienda + .separador + .woocommerce ul.products li.product img {
  width: 100%;      /* ocupa el 100% del ancho de su tarjeta */
  max-width: none;  /* ignora posibles limitaciones del tema */
  height: auto;
  display: block;
  margin: 0 auto;
}

/* Ajuste de texto y botón dentro de la tarjeta */
#content-tienda + .separador + .woocommerce ul.products li.product .woocommerce-loop-product__title {
  font-size: 1.1rem;
}
#content-tienda + .separador + .woocommerce ul.products li.product .price {
  font-size: 1.2rem;
  color: #5F6E1E;
}
#content-tienda + .separador + .woocommerce ul.products li.product .button {
  background-color: #5F6E1E;
  border-radius: 999px;
  padding: 0.6rem 1.2rem;
}
#content-tienda + .separador + .woocommerce ul.products li.product .button:hover {
  background-color: #A3733D;
}


/* ----------------------------
   TABS DE PRODUCTOS
   ---------------------------- */

.product-tabs {
  text-align: justify;
  margin-bottom: 30px;
	display:flex;
	flex-wrap:wrap;
}
.product-tabs .tab-btn {
  background: #5F6E1E;
  color: #fff;
  border: none;
  padding: 4px 5px;
  margin: 0 3px 5px;
  border-radius: 20px;
  cursor: pointer;
  transition: background .2s;
	font-family: "Lato", sans-serif;
	font-style:italic;
	font-size: clamp(0.9375rem, 0.7212rem + 0.6923vw, 1.5rem);
	flex-grow:1;
	flex-basis:150px;
	text-align:center;
	
}
.product-tabs .tab-btn.active,
.product-tabs .tab-btn:hover {
  background: #3e4714;
}
.product-item {
  transition: opacity .3s;
}
.product-item[style*="display: none"] {
  opacity: 0;
}

/* ----------------------------
   QUITAR FONDO A LOS PRODUCTOS
   ---------------------------- */

.products {
  background: #fff;
}

.products li.product-item {
  background: transparent;
  padding: 10px;
  /* ... tus estilos habituales ... */
}

.products li.product-item img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
  mix-blend-mode: darken;
  /* si quieres probar multiply: mix-blend-mode: multiply; */
}

/* ----------------------------
   SIDEBAR
   ---------------------------- */
.botones-sidebar {
	display:block;
		padding:0;
	margin:0;
}
.botones-sidebar button {
	background:none;
	color:#7A7A72;
	font-family:'Lato', serif;
	font-style:italic;
	font-weight:400;
margin:0;
	font-size: clamp(0.9375rem, 0.7232rem + 0.7143vw, 1.4375rem);
		border-bottom:solid 1px #ccc;
	border-radius:0px;
	padding-left:0;

}
.botones-sidebar button:hover {
	background:none;

}
.botones-sidebar .active {
	background:none;
}
/* Layout de tienda: main + sidebar */
.shop-layout {
  display: flex;
  gap: 24px;
  margin-top: 40px; /* separador opcional */
	
}

/* Columna principal (productos) */
.shop-main {
  flex: 3;           /* 75% del ancho si hay sidebar */
}
@media screen and (min-width: 1024px) {
  .shop-sidebar {
    position: sticky;
    top: 100px; /* ajusta según la altura de tu header fijo si lo tienes */
    align-self: start; /* por si usas grid o flexbox en el contenedor */
  }
}

/* Sidebar */
.shop-sidebar {
  flex: 1;           /* 25% del ancho */
	margin-right:20px;
}
.wc-block-product-categories-list {
	padding:0;
}
.wc-block-product-categories-list a {
	text-decoration:none;
	color:#707070;
}

/* Hacer transparentes los ítems de categoría */
.wc-block-product-categories-list-item {
  background-color: transparent !important;
  box-shadow: none !important;
  border: none !important;
  padding: 0 !important;
	border-bottom:solid 1px #ccc !important;
}

/* Asegurar que el enlace no tenga fondo */
.wc-block-product-categories-list-item a {

 
  background-color: transparent !important;
  text-decoration: none;
}

/* Contenedor de la miniatura transparente */
.wc-block-product-categories-list-item__image {
  background-color: transparent !important;
}

/* Quitar el blanco de la imagen con mix-blend-mode */
.wc-block-product-categories-list-item__image img {
  mix-blend-mode: darken;
}


/* ----------------------------
   ESTILO A LOS PRODUCTOS DE WOOCOMMERCE
   ---------------------------- */
/* 1) Reset general de outline/borde que viene del tema */
.page-numbers a,
.page-numbers span.page-numbers {
  outline: none !important;
  border: none !important;
}

/* 2) Botones normales (enlaces) */
.page-numbers a {
  background: #5F6E1E !important;
  color: #fff !important;
}
::placeholder {
	font-family:'Lato', serif;
	font-style:italic!important;
}
/* 3) Botón “activo” (span.current) */
.page-numbers span.current {
  background: #3e4714 !important;  /* marrón oscuro */
  color: #fff !important;
}

/* 4) Hover en enlaces */
.page-numbers a:hover {
  background: #3e4714 !important;
}

/* 5) Elimina cualquier caja púrpura o sombra */
.page-numbers li {
  box-shadow: none !important;
}

.main-content-tienda {
	margin-top:50px;
}
.woocommerce-ordering {
	display:none;
}
.woocommerce-result-count {
	display:none;
}
/* TU CSS EXACTO CON MEJORAS MÓVIL */
.woocommerce ul.products {
  display: flex;
  flex-wrap: wrap;
  gap: 0px;              /* espacio entre tarjetas */
  margin: 0;
  padding: 0;
  list-style: none;
  justify-content: flex-start;
	width:70%;
	margin:auto;
}

/* 2) PARA 4 COLUMNAS EXACTAS */
.woocommerce ul.products li.product,
.woocommerce ul.products li.product-item {
  flex: 0 0 calc(25% - 20px);  /* 25% = 4 columnas exactas */
  max-width: 100%;       /* opcional: limita anchura máxima */
	margin:10px;
	
  background: #fff;
  border-radius: 16px;
  padding: 0px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
	justify-content:center;
	font-family:'Lato', sans-serif;
	font-style:italic;
	margin-bottom:50px;
}

.woocommerce-loop-product__title {
}

/* Contenedor de imagen con overlay */
.woocommerce ul.products li.product .woocommerce-loop-product__link {
  position: relative;
  display: inline-block;
  border-radius: 15px;
  overflow: hidden;
  margin-bottom: 16px;
}

.woocommerce ul.products li.product img {
  max-height: 320px;
  width: auto;
  object-fit: cover!important;
  margin-bottom: 0;
	border-radius:15px;
  display: block;
  position: relative;
}







/* 5) Precio dorado, empuja el botón abajo */
.woocommerce ul.products li.product .price {
  color: #5F6E1E;
  margin-bottom: auto;
}
.woocommerce-Price-amount {
	font-size:2rem
}
/* 6) Botón redondeado */
.woocommerce ul.products li.product .button {
  margin-top: 16px;
  border-radius: 10px;
  background: #5F6E1E;
  color: #fff;
  padding: 10px 24px;
  transition: background .2s ease;
}
.woocommerce ul.products li.product .button:hover {
  background:#3e4714;
}

/* RESPONSIVE MEJORADO */
@media (max-width: 1200px) {
  .woocommerce ul.products li.product,
  .woocommerce ul.products li.product-item {
    flex: 0 0 calc(33.33% - 20px); /* 3 columnas en tablet */
  }
}

/* TABLET: 2 columnas */
@media (max-width: 900px) {
  .woocommerce ul.products {
    width: 85%; /* Más ancho en tablet */
  }
  
  .woocommerce ul.products li.product,
  .woocommerce ul.products li.product-item {
    flex: 0 0 calc(50% - 20px); /* 2 columnas */
    margin: 8px;
  }
}

/* MÓVIL: 2 columnas + sin overlay + título visible */
@media (max-width: 768px) {
  .woocommerce ul.products {
    width: 95%; /* Más ancho en móvil */
    padding: 0 10px; /* Padding lateral */
  }
  
  .woocommerce ul.products li.product,
  .woocommerce ul.products li.product-item {
    flex: 0 0 calc(50% - 16px); /* 2 columnas en móvil */
    margin: 8px;
    margin-bottom: 30px;
    padding: 15px; /* Padding interno */
  }
  
  .woocommerce ul.products li.product img {
    max-height: 250px; /* Imagen más pequeña en móvil */
  }
  
  /* MÓVIL: Sin overlay, título visible debajo de imagen */
  .woocommerce ul.products li.product img::before {
    display: none !important; /* Sin overlay en móvil */
  }
  
  .woocommerce ul.products li.product .woocommerce-loop-product__title {
    position: static !important; /* Título en flujo normal */
    transform: none !important;
    color: #7a7a72 !important; /* Color original */
    background: none !important;
    padding: 0 !important;
    border-radius: 0 !important;
    backdrop-filter: none !important;
    text-shadow: none !important;
    max-width: 100% !important;
    opacity: 1 !important; /* Siempre visible */
    margin: 10px 0 8px 0 !important; /* Espacio arriba y abajo */
    font-size: 0.95rem !important; /* Tamaño más pequeño */
    line-height: 1.2 !important;
	  
  }
  
  /* Sin efectos hover en móvil */
  .woocommerce ul.products li.product:hover .woocommerce-loop-product__title {
    opacity: 1 !important;
    transform: none !important;
    color: #7a7a72 !important;
    background: none !important;
  }
  
  .woocommerce ul.products li.product:hover img::before {
    opacity: 0 !important; /* Sin overlay al hover en móvil */
  }
  
  /* Precio y botón ajustados */
  .woocommerce ul.products li.product .price {
    margin: 8px 0;
  }
  
  .woocommerce-Price-amount {
    font-size: 1.5rem !important; /* Precio más pequeño */
  }
  
  .woocommerce ul.products li.product .button {
    margin-top: 10px;
    padding: 8px 20px;
    font-size: 0.9rem;
    width: calc(100% - 10px); /* Botón más ancho */
  }
}





/* ----------------------------
   ANIMACION
   ---------------------------- */

.products li.product-item {
  transition: opacity 1s ease, transform 1s ease;
}
.products li.product-item.hidden {
  opacity: 0;
  transform: translateY(-20px);
}


/* ----------------------------
   FOOTER
   ---------------------------- */


footer {
  background: #EEEAE7;
	font-family:'Lato', serif;
}

.franja-marron {
  display: flex;
  justify-content: space-around;
  align-items: center;
  background-color: #5F6E1E;
  color: #fff;
  padding: 0;
  flex-wrap: wrap;
}
.franja-marron i {
	 font-size:2rem;
  margin: .5rem 1rem;
}
.franja-marron__item {
  display: flex;
  align-items: center;
  max-width: 300px; /* controla ancho máximo */
  margin: .5rem 1rem;
}

.franja-marron__icon {
  width: 2.5rem;
  height: 2.5rem;
  fill: #fff;
  flex-shrink: 0;
  margin-right: .75rem;
}

.franja-marron__item h3 {
  font-family:'Lato', serif;
  font-size: 1.125rem;
  font-style: italic;
  margin: 0;
  color: #fff;
  line-height: 1.2;
}


/* Contenedor de las cuatro secciones del footer */
.contenedor-pie {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 24px;
  padding: 30px 20px;
	width:90vw;
	margin:auto;
}

/* Títulos de cada sección */
.contenedor-pie h2 {
  font-size: clamp(1rem, 2.5vw, 1.5rem);
  margin-bottom: 12px;
  border-bottom: 1px solid #7a7a72;
  padding-bottom: 4px;
  color: #7a7a72;
}

/* Listados y texto normal */
.contenedor-pie ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.contenedor-pie ul li {
  margin-bottom: 8px;
  font-style: italic;
  font-size: clamp(0.875rem, 2vw, 1rem);
  color: #7a7a72;
}

/* Dirección */
.contenedor-pie address {
  font-style: normal;
  line-height: 1.5;
  font-size: clamp(0.875rem, 2vw, 1rem);
  color: #7a7a72;
}

/* Enlaces */
.contenedor-pie a {
  color: #5F6E1E;
  text-decoration: none;
  font-size: clamp(0.875rem, 2vw, 1rem);
}
.contenedor-pie a:hover {
  text-decoration: underline;
}




/* ----------------------------
   PRODUCTO INDIVIDUAL - COMPLETO
---------------------------- */


.product-tabs .related   {
		display:flex;
		flex-wrap:wrap;
		justify-content:center;
	}
	.related .products li {
		flex-basis:200px;
		flex-grow:1;
	}
.fondo-contenedor-imagen {
    position: relative;
    background-color: #f3f1ed; /* por ejemplo */
}

.img-overlay {
    position: absolute;
    top: 200px;
    left: 0;
    width: 100%;
    height: auto;
    mix-blend-mode: multiply;
    opacity: 0.1;
    z-index: -1;
    pointer-events: none;
}
.woocommerce-breadcrumb {
	display:none;
}
.woocommerce-tabs {
	width:100%;
}
/* Ocultar fondo y borde de las pestañas <li> */
.woocommerce-tabs .wc-tabs li {
	background: transparent !important;
	border: none !important;
	margin: 0 5px;
}
.woocommerce-tabs {
	margin-bottom:50px;
}
/* Estilo visual tipo botón dorado para los enlaces de pestañas */
.woocommerce-tabs .wc-tabs li a {
	background-color: #5F6E1E !important;
	color: #fff !important;
	font-family: 'Lato', serif !important;
	font-style: italic;
	font-weight: 700;
	padding: 10px 20px;
	display: inline-block;
	transition: background-color 0.3s ease;
	text-decoration: none;
	border: none !important;
	box-shadow: none !important;
	border-radius:5px;
	
}
.woocommerce-Tabs-panel p {
	text-align:left;
}
#tab-title-description a {
	padding:.5vw;
}
#tab-title-reviews a {
	padding:.5vw;
}
#tab-title-additional_information a {
	padding:.5vw;
}
/* Hover y activa */
.woocommerce-tabs .wc-tabs li a:hover,
.woocommerce-tabs .wc-tabs li.active a {
	background-color: #394211 !important;
	color: #fff !important;
}

.woocommerce-Price-amount {
	color: #5F6E1E;
	font-family: 'Lato', serif;
	font-style: italic;
	font-weight: bold;
	font-size: 1.2rem;
}

.single_add_to_cart_button.button {
	background-color: #5F6E1E !important;
	color: #fff !important;
	font-family: 'Lato', serif !important;
	font-style: italic;
	font-weight: 700;
	font-size: 1rem;
	border: none;
	border-radius: 999px;
	padding: 12px 32px;
	transition: background-color 0.3s ease;
	text-align: center;
	text-transform: none;
}

/* Hover (ligeramente más oscuro) */
.single_add_to_cart_button.button:hover {
	background-color: #a46f3f !important;
	color: #fff !important;
}

.product-main-container {
	display: flex;
	flex-wrap: wrap;
	gap: 40px;
	margin-bottom: 40px;
	align-items: stretch; /* Asegura que ambos lados tengan la misma altura */
}
/* ----------------------------
   GALERÍA DE PRODUCTO INDIVIDUAL
   ---------------------------- */

/* Contenedor principal de la imagen */
.product-image-full {
	flex: 1;
	min-width: 300px;
	max-width: 100%;
	display: block;
	padding: 20px;
}

/* Galería principal de producto */
.woocommerce-product-gallery {
	width: 100% !important;
	display: block !important;
	position: relative !important;
}

/* Wrapper de la galería */
.woocommerce-product-gallery__wrapper {
	width: 100% !important;
	display: block !important;
	position: relative !important;
	margin-bottom: 15px !important;
}

/* Imagen destacada principal */
.woocommerce-product-gallery__image {
	width: 100% !important;
	display: flex !important;
	align-items: center !important;
	justify-content: center !important;
	margin-bottom: 0 !important;
}

.woocommerce-product-gallery__image a {
	display: flex !important;
	align-items: center !important;
	justify-content: center !important;
	width: 100% !important;
}

.woocommerce-product-gallery__image img {
	width: auto !important;
	height: auto !important;
	max-height: 500px !important;
	max-width: 100% !important;
	object-fit: contain !important;
	display: block !important;
}

/* Contenedor de miniaturas - múltiples selectores para compatibilidad */
.flex-control-thumbs,
ol.flex-control-nav.flex-control-thumbs {
	display: flex !important;
	flex-wrap: wrap !important;
	gap: 10px !important;
	margin: 15px 0 0 0 !important;
	padding: 0 !important;
	list-style: none !important;
	justify-content: flex-start !important;
}
/* Forzar que las imágenes de galería se comporten como miniaturas */
.woocommerce-product-gallery__wrapper .woocommerce-product-gallery__image {
	width: 100% !important;
	display: block !important;
}

/* Solo la primera imagen debe ser grande */
.woocommerce-product-gallery__wrapper .woocommerce-product-gallery__image:first-child {
	width: 100% !important;
	min-height: 100%;
	margin-bottom: 20px !important;
}

.woocommerce-product-gallery__wrapper .woocommerce-product-gallery__image:first-child img {
	max-height: 500px !important;
}

/* Las demás imágenes deben ser miniaturas */
.woocommerce-product-gallery__wrapper .woocommerce-product-gallery__image:not(:first-child) {
	width: calc(25% - 10px) !important;
	max-width: 100px !important;
	display: inline-block !important;
	vertical-align: top;
	margin: 5px !important;
}

.woocommerce-product-gallery__wrapper .woocommerce-product-gallery__image:not(:first-child) img {
	width: 100% !important;
	height: auto !important;
	max-height: 100px !important;
	object-fit: cover !important;
	border: 2px solid #e0e0e0;
	border-radius: 8px;
	cursor: pointer;
	transition: all 0.3s ease;
}

.woocommerce-product-gallery__wrapper .woocommerce-product-gallery__image:not(:first-child) img:hover {
	border-color: #5F6E1E;
	transform: scale(1.05);
}
/* Cada miniatura */
.flex-control-thumbs li,
ol.flex-control-nav.flex-control-thumbs li {
	width: calc(25% - 8px) !important;
	max-width: 100px !important;
	margin: 0 !important;
	cursor: pointer !important;
	border: 2px solid #e0e0e0 !important;
	border-radius: 8px !important;
	overflow: hidden !important;
	transition: all 0.3s ease !important;
	background: #fff !important;
}

.flex-control-thumbs li:hover,
ol.flex-control-nav.flex-control-thumbs li:hover {
	border-color: #5F6E1E !important;
	transform: scale(1.05) !important;
}

.flex-control-thumbs li.flex-active,
ol.flex-control-nav.flex-control-thumbs li.flex-active {
	border-color: #A46F3F !important;
	box-shadow: 0 2px 8px rgba(164, 111, 63, 0.3) !important;
}

.flex-control-thumbs li img,
ol.flex-control-nav.flex-control-thumbs li img {
	width: 100% !important;
	height: auto !important;
	display: block !important;
	object-fit: cover !important;
	aspect-ratio: 1/1 !important;
}

/* Ocultar los controles de navegación de Flexslider si existen */
.flex-direction-nav {
	display: none !important;
}

/* Responsive para móvil */
@media (max-width: 480px) {
	.product-image-full {
		padding: 10px;
	}
	.side-menu {
		width:250px;
	}
	.woocommerce-product-gallery__image img {
		max-height: 300px !important;
	}
	
	.flex-control-thumbs li,
	ol.flex-control-nav.flex-control-thumbs li {
		width: calc(33.333% - 7px) !important;
		max-width: 80px !important;
	}
}

@media (max-width: 480px) {
	.flex-control-thumbs li,
	ol.flex-control-nav.flex-control-thumbs li {
		width: calc(50% - 5px) !important;
	}
}
.product-details {
	flex: 1;
	color: #555;
	font-family: 'Lato', serif;
	max-width: 100%;; /* o el valor que prefieras */
    padding-right:15vw;
    box-sizing: border-box;
}


.product-title {
	font-size: 2rem;
	font-style: italic;
	color: #444;
	margin-bottom: 10px;
}

.product-excerpt {
	font-style: italic;
	font-size: 1rem;
	margin-bottom: 15px;
}

.product-weight {
	font-size: 0.95rem;
	font-style: italic;
	margin-bottom: 15px;
}

.gift-message textarea {
	width: 100%;
	height: 80px;
	padding: 10px;
	font-style: italic;
	border: 1px solid #ddd;
	margin-bottom: 20px;
	resize: vertical;
}

.woocommerce form.cart {
	margin-top: 10px;
}

.woocommerce .product-tabs h2 {
	font-style: italic;
	font-size: 1.5rem;
	margin-top: 30px;
	margin-bottom: 15px;
	color: #444;
}

/* Responsive (móvil) */
@media (max-width: 768px) {
	.product-main-container {
		flex-direction: column;
		margin-top:10vw;
	}

	.product-image-full,
	.product-details {
		width: 100%;
		padding-left:10vw;
		padding-right:10vw;
	}
	.product-image-full {
		min-height:100px;
	}
	.product-tabs {
		width:85%;
	}
	.product-tabs {
		display:flex;
		flex-wrap:wrap;
		
	}
	.tab-btn {
		flex-grow:1;
		flex-basis:100px;
		text-align:center;
	}
	h4 {
		margin:auto;
		text-align:center;
	}
	
}

/* ----------------------------
   LOGOS KIT
   ---------------------------- */

.banderas-kit {
	display:flex;
	flex-wrap:wrap;
	justify-content:center;
	margin-bottom:30px;
}
.banderas-kit img {
	
	width:150px;
}
/* ----------------------------
   IDIOMAS
   ---------------------------- */

.idiomas {
	position:fixed;
	bottom:10px;
	left:10px;
}

/* ----------------------------
   RESPONSIVE
   ---------------------------- */

/* ——— Tablet: 2 columnas ——— */
@media (max-width: 1024px) {
  .gallery {
    grid-template-columns: 1fr 1fr;
    /* 3 filas: una para a, otra para b+c, otra para d */
    grid-template-rows: 300px 300px 300px;
    grid-template-areas:
      "a a"
      "b c"
      "d d";
  }
	.woocommerce ul.products {
		gap:5px;
	}
	.fondo-contenedor-imagen {
		display:none;
	}
}

/* ——— Móvil: 1 columna ——— */
@media (max-width: 600px) {
  .gallery {
    grid-template-columns: 1fr;
    grid-template-rows: repeat(4, auto);
    grid-template-areas:
      "a"
      "b"
      "c"
      "d";
  }
  .gallery img {
    /* al ser auto en rows, quitamos la altura forzada */
    height: auto;
  }
	.woocommerce ul.products {
		gap:5px;
	}
	.woocommerce ul.products li.product-item {
		flex:1 100%;
	}
	/* Responsive: en móviles stack vertical */
@media (max-width: 768px) {
  .shop-layout {
    flex-direction: column;
  }
  .shop-sidebar {
    margin-top: 30px;
	  margin-left: 30px;
	  margin-right:30px;
  }
}
}
.product-tabs {
  margin-bottom: 30px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center; /* CENTRAR LOS BOTONES */
  gap: 12px; /* espaciado uniforme entre botones */
  width: 90%; /* ajusta al ancho deseado */
  margin-left: auto;
  margin-right: auto;
}

.product-tabs .tab-btn {
  background: #5F6E1E;
  color: #fff;
  border: none;
  padding: 8px 14px;
  border-radius: 20px;
  cursor: pointer;
  transition: background .2s;
  font-family: "Lato", sans-serif;
  font-style: italic;
  font-size: clamp(0.9375rem, 0.7212rem + 0.6923vw, 1.5rem);
  flex-grow: 0; /* NO permitir que crezcan excesivamente */
  flex-shrink: 0; /* NO permitir que se encojan */
  flex-basis: auto; /* tamaño basado en su contenido */
  text-align: center;
  white-space: nowrap; /* evitar que el texto se divida en varias líneas */
}

.product-tabs .tab-btn.active,
.product-tabs .tab-btn:hover {
  background: #3e4714;
}

/* Responsive para móviles */
@media (max-width: 768px) {
  .product-tabs {
    width: 95%;
    gap: 8px;
  }
  
  .product-tabs .tab-btn {
    padding: 10px 16px;
    font-size: clamp(0.875rem, 0.5rem + 1vw, 1.2rem);
  }
}

/* MÓVIL MUY PEQUEÑO: MANTENER 2 columnas */
@media (max-width: 600px) {
  .woocommerce ul.products {
    width: 100%;
    padding: 0 5px;
  }
  
  .woocommerce ul.products li.product,
  .woocommerce ul.products li.product-item {
    flex: 0 0 calc(50% - 12px); /* MANTENER 2 columnas */
    margin: 6px; /* Márgenes más pequeños */
    padding: 10px; /* Padding más pequeño */
  }
  
  .woocommerce ul.products li.product img {
    max-height: 200px; /* Imagen más pequeña */
  }
  
  .woocommerce ul.products li.product .woocommerce-loop-product__title {
    font-size: 0.85rem !important; /* Texto más pequeño */
  }
  
  .woocommerce-Price-amount {
    font-size: 1.3rem !important; /* Precio más pequeño */
  }
  
  .woocommerce ul.products li.product .button {
    padding: 6px 15px; /* Botón más pequeño */
    font-size: 0.8rem;
  }
}
.woocommerce ul.products li.product .woocommerce-loop-product__title {
  font-style: italic;
  color: #7a7a72;
  font-size: clamp(0.9375rem, 0.6429rem + 0.9821vw, 1.225rem);
  margin: 10px 0 8px 0;
  position: static;
  transform: none;
  background: none;
  padding: 0;
  opacity: 1;
  text-align: center;
  line-height: 1.3;
  
  /* AÑADIR ESTAS PROPIEDADES PARA 2 LÍNEAS FIJAS */
  height: 2.6em; /* Altura fija para exactamente 2 líneas */
  overflow: hidden; /* Oculta el texto que sobrepase */
  display: -webkit-box;
  -webkit-line-clamp: 2; /* Máximo 2 líneas */
  -webkit-box-orient: vertical;
  word-break: break-word; /* Permite cortar palabras largas */
  hyphens: auto; /* Añade guiones automáticos */
}
/* ----------------------------
   LIGHTBOX PARA PRODUCTOS - VERSIÓN CORREGIDA
   ---------------------------- */

.product-lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    cursor: pointer;
}

.lightbox-container {
    position: relative;
    max-width: 90vw;
    max-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10001;
}

.lightbox-image {
    max-width: 90vw;
    max-height: 90vh;
    width: auto;
    height: auto;
    object-fit: contain;
    display: block;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    /* Asegurar que la imagen tenga un tamaño mínimo */
    min-width: 300px;
    min-height: 200px;
}

.lightbox-close {
    position: absolute;
    top: -60px;
    right: -10px;
    background: rgba(0, 0, 0, 0.7);
    border: none;
    color: #fff;
    font-size: 40px;
    cursor: pointer;
    z-index: 10002;
    line-height: 1;
    padding: 10px 15px;
    border-radius: 50%;
    transition: all 0.3s ease;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-close:hover {
    background: rgba(164, 111, 63, 0.9);
    transform: scale(1.1);
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    display: flex;
    justify-content: space-between;
    pointer-events: none;
    transform: translateY(-50%);
    width: 100%;
    padding: 0 20px;
    box-sizing: border-box;
}

.lightbox-prev,
.lightbox-next {
    background: rgba(95, 110, 30, 0.8);
    border: none;
    color: #fff;
    font-size: 30px;
    cursor: pointer;
    padding: 15px 20px;
    border-radius: 50%;
    transition: all 0.3s ease;
    pointer-events: auto;
    line-height: 1;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    /* Asegurar que estén bien posicionados */
    position: relative;
    z-index: 10002;
}

.lightbox-prev {
    /* Posicionamiento específico para el botón anterior */
    margin-right: auto;
}

.lightbox-next {
    /* Posicionamiento específico para el botón siguiente */
    margin-left: auto;
}

.lightbox-prev:hover,
.lightbox-next:hover {
    background: rgba(164, 111, 63, 0.9);
    transform: scale(1.1);
}

.lightbox-counter {
    position: absolute;
    bottom: -60px;
    left: 50%;
    transform: translateX(-50%);
    color: #fff;
    font-family: 'Lato', serif;
    font-style: italic;
    font-size: 16px;
    background: rgba(0, 0, 0, 0.7);
    padding: 8px 16px;
    border-radius: 20px;
    z-index: 10002;
}

/* Responsive para el lightbox */
@media (max-width: 768px) {
    .lightbox-container {
        max-width: 95vw;
        max-height: 85vh;
    }
    
    .lightbox-image {
        max-width: 95vw;
        max-height: 85vh;
        min-width: 250px;
        min-height: 150px;
    }
    
    .lightbox-close {
        top: -50px;
        right: 10px;
        font-size: 30px;
        width: 50px;
        height: 50px;
        padding: 8px;
    }
    
    .lightbox-nav {
        padding: 0 10px;
    }
    
    .lightbox-prev,
    .lightbox-next {
        font-size: 24px;
        width: 50px;
        height: 50px;
        padding: 12px;
    }
    
    .lightbox-counter {
        bottom: -50px;
        font-size: 14px;
        padding: 6px 12px;
    }
}

@media (max-width: 480px) {
    .lightbox-image {
        min-width: 200px;
        min-height: 120px;
    }
    
    .lightbox-prev,
    .lightbox-next {
        font-size: 20px;
        width: 45px;
        height: 45px;
        padding: 10px;
    }
    
    .lightbox-close {
        font-size: 25px;
        width: 45px;
        height: 45px;
    }
}

/* Mejorar la visibilidad en pantallas muy grandes */
@media (min-width: 1200px) {
    .lightbox-image {
        max-width: 80vw;
        max-height: 80vh;
    }
    
    .lightbox-container {
        max-width: 80vw;
        max-height: 80vh;
		margin:auto;
    }
}
/* Estilos para las cajas de regalo en productos */
.gift-boxes-section {
    margin: 20px 0;
    padding: 20px;
    background: #f9f9f9;
    border-radius: 8px;
    border: 1px solid #e0e0e0;
}

/* WRAPPER PARA CENTRAR PERFECTAMENTE */
.gift-boxes-wrapper {
    display: flex;
    justify-content: center;
    width: 100%;
    padding: 0 20px;
    box-sizing: border-box;
}

/* SECCIÓN INDEPENDIENTE DE CAJAS - NUEVA */
.gift-boxes-section-independent {
    margin: 30px 0;
    padding: 25px;
    background: #5F6E1E;
    border-radius: 8px;
    border: 1px solid #e0e0e0;
    width: 100%;
    max-width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.gift-boxes-title {
    margin: 0 0 20px 0;
    font-size: 20px;
    color: #fff;
    text-align: center;
    font-weight: 600;
}

.gift-boxes-container {
    display: flex;
    gap: 20px;
    justify-content: center;
    align-items: flex-start;
    max-width: 900px;
    width: 100%;
}

.gift-box-option {
    flex: 1;
    max-width: 500px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 20px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.gift-box-option:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.gift-box-image {
    width: 100%;
    max-width: 300px;
    height: auto;
    border-radius: 6px;
    margin-bottom: 15px;
}

.gift-box-info h4 {
    margin: 0 0 10px 0;
    font-size: 18px;
    color: #333;
    font-weight: 600;
}

.gift-box-info p {
    margin: 0;
    font-size: 14px;
    color: #666;
    line-height: 1.5;
}

/* Responsive para móviles */
@media (max-width: 768px) {
    .gift-boxes-wrapper {
        padding: 0 15px;
    }
    
    .gift-boxes-section-independent {
        margin: 20px 0;
        padding: 20px;
    }
    
    .gift-boxes-container {
        flex-direction: column;
        gap: 15px;
    }
    
    .gift-box-option {
        max-width: none;
        padding: 15px;
    }
    
    .gift-box-image {
        max-width: 250px;
    }
    
    .gift-boxes-title {
        font-size: 18px;
        margin-bottom: 15px;
    }
}

@media (max-width: 480px) {
    .gift-boxes-wrapper {
        padding: 0 10px;
    }
    
    .gift-boxes-section-independent {
        padding: 15px;
    }
    
    .gift-box-option {
        padding: 12px;
    }
    
    .gift-box-image {
        max-width: 200px;
    }
    
    .gift-box-info h4 {
        font-size: 16px;
    }
    
    .gift-box-info p {
        font-size: 13px;
    }
}

/* Versión alternativa más compacta */
.gift-boxes-section.compact {
    margin: 15px 0;
    padding: 15px;
}

.gift-boxes-section.compact .gift-boxes-container {
    gap: 10px;
}

.gift-boxes-section.compact .gift-box-option {
    padding: 10px;
}

.gift-boxes-section.compact .gift-box-image {
    max-width: 100px;
}

/* Si quieres que solo se muestre una caja según el tipo de producto */
.gift-boxes-single {
    display: flex;
    align-items: center;
    gap: 15px;
    margin: 15px 0;
    padding: 15px;
    background: #f9f9f9;
    border-radius: 6px;
    border-left: 4px solid #d4af37;
}

.gift-boxes-single .gift-box-image {
    width: 80px;
    height: auto;
    border-radius: 4px;
}

.gift-boxes-single .gift-box-info h4 {
    margin: 0 0 5px 0;
    font-size: 16px;
    color: #333;
}

.gift-boxes-single .gift-box-info p {
    margin: 0;
    font-size: 14px;
    color: #666;
}