body{
	margin: 0px;
	padding: 0px;
	font-family: "Trebuchet MS", Arial, Helvetica, sans-serif;	
	background-color: #2e3825;
}
h1, h2, h3{
	font-family: "Trebuchet MS", Arial, Helvetica, sans-serif;	
}

ul.products {
	padding: 0;
	margin: 0;
	text-align:center;
	margin-left: auto;
	margin-right: auto;
}
ul.products li {
	display: inline-block;
	max-width: 200px;
	padding: 10px;
	background-color: #FFFFFF;
	margin: 10px;
	border: 1px solid #EAEAEA;  
	color: #3D3D3D;
}
ul.products li h3 {
	margin: -10px -10px 10px -10px;
	padding: 10px;
	text-align: center;
	background-color: #F5F5F5;
	font-family: "Trebuchet MS", Arial, Helvetica, sans-serif;
	font-size: 1.1em;
	color: #5A5A5A;
}
ul.products li fieldset {
	border: none;
	padding: 5px 5px 5px 0px;
	margin: 0;
}
ul.products li fieldset label{
	display:block;
	margin-bottom: 4px;
}
ul.products li fieldset label span{
	width: 80px;
	float: left;
}
ul.products li fieldset label select{
	min-width: 100px;
}

button, .button{
	background-color: #39b3d7;
	min-width: 100px;
	border: none;
	padding: 10px;
	display: inline-block;
	text-align: center;
	cursor: pointer;
	text-decoration: none;
	color: #FFF;
	min-height: 15px;
	font: 12px/15px Arial, Helvetica, sans-serif;
	text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.26);
	border-radius: 3px;
}
button:hover, .button:hover{
	background-color: #44C7ED;
}

..product-thumb {
  height: 170px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.product-desc {
	font-style: italic;
	font-size: 0.8em;
	margin-bottom: 4px;
	height: 40px;
	overflow: hidden;
	margin-top: 5px;
}

ul.shopping-cart{
	position: fixed;
	top: 100px;
	right: 0;
	background-color: #F9F9F9;
	padding: 10px;
	min-width: 250px;
	list-style: none;
	font-size: 0.8em;
	border: 1px solid #F0F0F0;
}
ul.shopping-cart .cart-itm {
	margin-bottom: 10px;
	border-bottom: 1px solid #ddd;
	padding-bottom: 8px;
}
ul.shopping-cart .cart-itm:last-child{
	border-bottom: none;
	margin-bottom: 0px;
}
ul.shopping-cart .cart-itm .remove-itm{
	float: right;
	font-size: 1.5em;
}
ul.shopping-cart .cart-itm .remove-itm a{
	text-decoration:none;
	color:#000;
}
.cart-total-text a{
	float:right;
}

.cart-view-table-front{
	font-size: 0.7em;
	position: fixed;
	right: 10px;
	bottom: 10px;
	max-width: 350px;
	font-family: Arial
}
.cart-view-table-front h3{
	text-align: center;
	padding: 0;
	margin: 0px 0px 6px 0px;
}
.cart-view-table-front, .cart-view-table-back {
	max-width: 700px;
	background-color: #edf5e6;
	margin-left: auto;
	margin-right: auto;
	padding: 10px;
	box-shadow: 1px 1px 15px rgba(0, 0, 0, 0.12);
	border: 1px solid #E4E4E4;
}
.cart-view-table-front table th, .cart-view-table-back table th{
	text-align: left;
}
.cart-view-table-front table thead, .cart-view-table-back table thead{
	background-color: #9CCDFD;
}
.cart-view-table-front table tbody tr.even, .cart-view-table-back table tbody tr.even{
	background-color: #EDEDED;
}
.cart-view-table-front table tbody tr.odd, .cart-view-table-back table tbody tr.odd{
	background-color: #EDEDED;
}
.cart-view-table-front button, .cart-view-table-front .button, .cart-view-table-back button, .cart-view-table-back .button{
	margin: 10px 1px;
	float: right;
}


.text
  {text-align:center;}
  
    .modal {display:table; }
    .body {display:table-cell; vertical-align:middle; text-align:center;}
.gif {
    border: 2px solid #fff;
    
    background: #fff;
    width: auto;
    border-radius: 50px;
}
	#myImg {
    border-radius: 5px;
    cursor: pointer;
    transition: 0.3s;
}

#myImg:hover {opacity: 0.7;}

/* The Modal (background) */
.modale {
    display: none; /* Hidden by default */
    position: fixed; /* Stay in place */
    z-index: 1; /* Sit on top */
    padding-top: 100px; /* Location of the box */
    left: 0;
    top: 0;
    width: 100%; /* Full width */
    height: 100%; /* Full height */
    overflow: auto; /* Enable scroll if needed */
    background-color: rgb(0,0,0); /* Fallback color */
    background-color: rgba(0,0,0,0.9); /* Black w/ opacity */
}

/* Modal Content (image) */
.modal-content {
    margin: auto;
    display: block;
    width: 80%;
    max-width: 700px;
}

/* Caption of Modal Image */
#caption {
    margin: auto;
    display: block;
    width: 80%;
    max-width: 700px;
    text-align: center;
    color: #ccc;
    padding: 10px 0;
    height: 150px;
}

/* Add Animation */
.modal-content, #caption {
    -webkit-animation-name: zoom;
    -webkit-animation-duration: 0.6s;
    animation-name: zoom;
    animation-duration: 0.6s;
}

@-webkit-keyframes zoom {
    from {-webkit-transform:scale(0)}
    to {-webkit-transform:scale(1)}
}

@keyframes zoom {
    from {transform:scale(0)}
    to {transform:scale(1)}
}

/* The Close Button */
.close {
    position: absolute;
    top: 15px;
    right: 35px;
    color: #f1f1f1;
    font-size: 40px;
    font-weight: bold;
    transition: 0.3s;
}

.close:hover,
.close:focus {
    color: #bbb;
    text-decoration: none;
    cursor: pointer;
}

.sk-circle {
  margin: 100px auto;
  width: 40px;
  height: 40px;
  position: relative;
}
.sk-circle .sk-child {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
}
.sk-circle .sk-child:before {
  content: '';
  display: block;
  margin: 0 auto;
  width: 15%;
  height: 15%;
  background-color: #333;
  border-radius: 100%;
  -webkit-animation: sk-circleBounceDelay 1.2s infinite ease-in-out both;
          animation: sk-circleBounceDelay 1.2s infinite ease-in-out both;
}
.sk-circle .sk-circle2 {
  -webkit-transform: rotate(30deg);
      -ms-transform: rotate(30deg);
          transform: rotate(30deg); }
.sk-circle .sk-circle3 {
  -webkit-transform: rotate(60deg);
      -ms-transform: rotate(60deg);
          transform: rotate(60deg); }
.sk-circle .sk-circle4 {
  -webkit-transform: rotate(90deg);
      -ms-transform: rotate(90deg);
          transform: rotate(90deg); }
.sk-circle .sk-circle5 {
  -webkit-transform: rotate(120deg);
      -ms-transform: rotate(120deg);
          transform: rotate(120deg); }
.sk-circle .sk-circle6 {
  -webkit-transform: rotate(150deg);
      -ms-transform: rotate(150deg);
          transform: rotate(150deg); }
.sk-circle .sk-circle7 {
  -webkit-transform: rotate(180deg);
      -ms-transform: rotate(180deg);
          transform: rotate(180deg); }
.sk-circle .sk-circle8 {
  -webkit-transform: rotate(210deg);
      -ms-transform: rotate(210deg);
          transform: rotate(210deg); }
.sk-circle .sk-circle9 {
  -webkit-transform: rotate(240deg);
      -ms-transform: rotate(240deg);
          transform: rotate(240deg); }
.sk-circle .sk-circle10 {
  -webkit-transform: rotate(270deg);
      -ms-transform: rotate(270deg);
          transform: rotate(270deg); }
.sk-circle .sk-circle11 {
  -webkit-transform: rotate(300deg);
      -ms-transform: rotate(300deg);
          transform: rotate(300deg); }
.sk-circle .sk-circle12 {
  -webkit-transform: rotate(330deg);
      -ms-transform: rotate(330deg);
          transform: rotate(330deg); }
.sk-circle .sk-circle2:before {
  -webkit-animation-delay: -1.1s;
          animation-delay: -1.1s; }
.sk-circle .sk-circle3:before {
  -webkit-animation-delay: -1s;
          animation-delay: -1s; }
.sk-circle .sk-circle4:before {
  -webkit-animation-delay: -0.9s;
          animation-delay: -0.9s; }
.sk-circle .sk-circle5:before {
  -webkit-animation-delay: -0.8s;
          animation-delay: -0.8s; }
.sk-circle .sk-circle6:before {
  -webkit-animation-delay: -0.7s;
          animation-delay: -0.7s; }
.sk-circle .sk-circle7:before {
  -webkit-animation-delay: -0.6s;
          animation-delay: -0.6s; }
.sk-circle .sk-circle8:before {
  -webkit-animation-delay: -0.5s;
          animation-delay: -0.5s; }
.sk-circle .sk-circle9:before {
  -webkit-animation-delay: -0.4s;
          animation-delay: -0.4s; }
.sk-circle .sk-circle10:before {
  -webkit-animation-delay: -0.3s;
          animation-delay: -0.3s; }
.sk-circle .sk-circle11:before {
  -webkit-animation-delay: -0.2s;
          animation-delay: -0.2s; }
.sk-circle .sk-circle12:before {
  -webkit-animation-delay: -0.1s;
          animation-delay: -0.1s; }

@-webkit-keyframes sk-circleBounceDelay {
  0%, 80%, 100% {
    -webkit-transform: scale(0);
            transform: scale(0);
  } 40% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}

@keyframes sk-circleBounceDelay {
  0%, 80%, 100% {
    -webkit-transform: scale(0);
            transform: scale(0);
  } 40% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}

@media screen and (max-width: 600px) {
    img.responsiva {
      padding-left: 8%;
      max-width: 40%;
      height: auto;
    }
  }
 
  @media screen and (min-width: 600px) {
    img.responsiva {
  height: 55px;
  width: auto;
    }
  }
 
  a.links:hover {
    border-bottom: 5px solid;
    border-color: #f7941d;
  }
 
  .w3-orange,
  .w3-hover-orange:hover {
    color: #fff !important;
  }
 
  div.condiciones {
    background-color: #eee;
    width: auto;
    height: 510px;
    border: 1px dotted black;
    overflow: auto;
  }
 
  .banner-info {
    background-color: #007bff;
    color: white;
    padding: 10px;
    text-align: center;
    border-radius: 8px;
    margin:10px 0;
  }
 
  .banner-info a {
    color: #fff;
    text-decoration: underline;
    font-weight: bold;
  }
 
  /* Estilos de producto */
  	.product {
	  flex: 0 0 calc(20% - 15px);
	  box-sizing: border-box;
	  max-width: 220px;
	  min-width: 160px;
	  text-align: center;
	  border-radius: 16px;
	  overflow: hidden;
	  background: #ffffff;
	  display: flex;
	  flex-direction: column;
	  justify-content: space-between;
	  align-items: center;
	  height: 360px;

	  /* 🔥 estilo moderno */
	  border: 1px solid #eee;
	  box-shadow: 0 6px 8px rgba(0,0,0,0.08);
	  transition: all 0.25s ease;
	  position: relative;
	}

	/* DETALLE SUPERIOR */
	.product::before {
	  content: "";
	  width: 100%;
	  height: 4px;
	  background: linear-gradient(90deg, #0056b3, #f7941d);
	  position: absolute;
	  top: 0;
	  left: 0;
	}

	.product-thumb img {
		width: auto;
		height: 150px;
		object-fit: contain;
	}

.product-thumb img {
  transition: transform 0.3s ease;
}

.product-thumb img:hover {
  transform: scale(1.15);
}

.product-info {
  width: 100%;
  margin-top: auto;
}

	.product-content h3 {
		font-size: 1rem;
		text-overflow: ellipsis;
		overflow: hidden;
		white-space: nowrap;
	}
	
	/* TITULO */
.product-content h3 {
  font-size: 15px;
  font-weight: 600;
  color: #2c2c2c;
  margin: 5px 0;

  /* control de texto */
  display: -webkit-box;
  -webkit-line-clamp: 2; /* 2 líneas máximo */
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.texto-introduccion {
      color: #302f2f;
      font-size: 17px;
      text-align: justify;
      display: block;
      margin-bottom: 20px;
    }
 
  /* Imagen de producto */
  .product-thumb img {
    max-width: 100%;
    max-height: 150px;
    object-fit: contain;
  }
 
   /* Información de producto */
   .product-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .btn-cart {
    width: 100%;
    padding: 10px;
    font-size: 16px;
    text-align: center;
    border-radius: 8px;
  }
 
  /* Controles de cantidad */
  .quantity-control {
	max-width: 150px;
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 5px; /* Reducir el espacio entre los botones */
  }
  
  .quantity-control button {
	width: 30px; /* Ajustar tamaño de los botones */
	height: 30px; /* Ajustar tamaño de los botones */
	font-size: 14px; /* Ajustar tamaño de la fuente */
	padding: 5px; /* Ajustar el relleno */
  }
  
  .quantity-control input {
	width: 50px; /* Ajustar tamaño del campo */
	height: 30px; /* Ajustar altura del campo */
	text-align: center;
	font-size: 14px; /* Ajustar tamaño de la fuente */
  }
  
  /* Estilos de botón */
  .btn-warning {
    padding: 10px;
    width: 100%;
    text-align: center;
    font-size: 16px;
  }
 
  .btn-warning i {
    margin-right: 5px;
  }
 
 