body{
  background: #f1f1f1;
}
   #radial-products {
     display: grid;
     grid-template-columns: repeat(4, 1fr);
     
   }
.hide-id .data-id {
    display: none;
}

.card-number2 {
    justify-content: center;
    align-items: center;
}
.inline-shortcode {
    display: flex;
    flex-direction: column;
    align-items: center; /* esto centra los elementos hijos horizontalmente */
}


.radial-product {
  border: none;  
  text-align: center;
  background-color: #f9f9f9;
  border-radius: 5px;
  position: relative;
  overflow: hidden;
  font-family: 'Roboto', sans-serif;
  font-size: 12px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.297);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding-bottom: 3px; /* Añadimos un padding para que haya espacio entre el div y el borde */
}

  .radial-product h2 {
     font-size: 1.17em;
    margin-bottom: 5px;
  }
  .product-title {
  cursor: pointer;
  text-decoration: underline;
}

.product-title:hover {
  color: #c45500;
}
.added-to-cart {
    background-color: #066d06e8 !important;  
    color: white !important; 
  border-color: #066d06e8 !important;
}

  .radial-product p {
    text-align: justify;
    padding-right: 25px;
  }
  .radial-product h1{
    text-align: center;
    padding-left: 20px;
    font-size: 16px;
  }
  .show-more {
    display: none;
  }
  
  .show-less {
    cursor: pointer;
    color: blue;
  }
  .read-more-content {
    display: none;
    transition: height 0.5s;
  }
  .read-more-toggle {
    color: rgb(108, 108, 112);
    cursor: pointer;
  }
  .read-more-toggle:hover {
    text-decoration: underline;
  }
.radial-product {
  border: 0.5px solid #000;
  padding: 5px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.297);
  margin: 5px;
}
  .radial-product-image {
    width: 100%; 
    height: auto; 
    object-fit: cover; 
    border-radius: 10px;
  }

  .image-container {
  
    
    background-color: white;
    box-shadow: 0px 2px 4px -1px rgba(0,0,0,0.1);
    display: flex;        
    justify-content: center; 
    align-items: center; 
    border-radius: 10px;
    cursor: pointer;
 
  }
  .radial-product img {
    width: 50%; 
    height: auto;  
    margin: 0 auto 10px;  
    display: block;
    border-radius: 10px;
  }


#pagination{
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 20px;
}

.pagination-button {
  background-color: #f2f2f2;
  color: #333 ;
  border: none !important;
  padding: 8px 16px !important;
  margin: 0 4px !important;
  cursor: pointer;
  transition: background-color 0.3s ease !important;
  font-size: 14px;
  border-radius: 4px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.pagination-button:hover {
  background-color: #ddd;
}

.previous-button,
.next-button {
  background-color: #f2f2f2;
  border: none;
  padding: 8px 16px;
  margin: 0 4px;
  cursor: pointer;
  transition: background-color 0.3s ease !important;
  font-size: 14px;
  border-radius: 4px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.previous-button:hover,
.next-button:hover {
  background-color: #ddd;
}

.hidden {
  display: none;
}
.visible {
  display: inline;
}
.page-current {
  background-color: #ddd;
}
.page-other {
  background-color: white;
}
@media screen and (max-width: 600px) {
  #radial-products {
    grid-template-columns: repeat(1, 1fr) !important;
  }
}


.add-all-to-cart-button {
font-size: 15px;
   
}




.add-to-cart-button{
  width: 20pc;
  font-size: 15px;
}

.cart-controls {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  padding-bottom:0px !important;
  padding-top: px !important;

}
.add-to-cart-button:hover {
    background-color: #953033; 
    transition: background-color 0.3s ease; 
}
.quantity-input, .add-to-cart-button {
  width: px;
  box-sizing: border-box;
  margin: 3px;
}


/* backbutton */

.product-details {
    position: relative;
}

.back-link {
    position: absolute;
    top: 0;
}


/* productDetail styles*/

.product-details{
  grid-template-columns: none !important;
  
}
.product-detail-container {
  display: flex;
  align-items: flex-start; 
  gap: 20px; 
}


.product-detail-image {
  width: 50%; 
  height: auto;
  object-fit: cover;
}

.product-detail-text {
  width: 50%; 
}


.price-sku-container {
    display: flex !important;
    justify-content: space-between !important;
  padding-bottom:20px;
}

.product-sku {
    margin-right: -20px !important; 
}



.product-detail-id {
  text-align: right;
}
.price-and-add-to-cart{
     font-size: 15px;
     color: black;
     
}
.product-detail-price-sku{
  padding-top: 10px
  
}

/* productDetail responsive */
@media screen and (max-width: 800px) {
    .product-detail-container {
        margin: 0 10px;
        box-sizing: border-box;
        display: flex; 
        flex-direction: column; 
        align-items: center; 
    }

    .product-detail-image {
        width: 100%; 
        height: auto; 
    }

    .product-detail-text {
        margin-top: 20px; 
    }

    .price-and-add-to-cart {
        flex-direction: column; 
    }


  }


.order-total {
    font-family: -webkit-body;
}

.thank-you-page-content ul {
    list-style: none; /* Remover bullets de la lista */
    padding: 0;
}

.thank-you-page-content li {
    display: flex; /* Usamos flexbox para alinear los elementos horizontalmente */
    align-items: center; /* Alineación vertical centrada */
    margin-bottom: 20px; /* Espacio entre productos */
}

.item-container {
    display: flex; /* Usamos flexbox dentro del contenedor del ítem */
    width: 100%; /* Ocupamos todo el ancho disponible */
}

.item-container img {
    width: 100px; /* Tamaño de la imagen. Puedes ajustar según lo desees. */
    height: 100px; /* Altura proporcional. Ajusta si lo necesitas. */
    margin-right: 20px; /* Espacio a la derecha de la imagen */
}

.item-container span {
    flex: 1; 
    
}













































































































