:root{
  --primary-color: #D8BFC6;
  --secondary-color: #725B6D;
  --background: #D2C6B9;
}


body {
  margin: 0;
  font-family: Arial, sans-serif;
  background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
}

.container {
  text-align: center;
  width: 90%;
  max-width: 500px;
}

.logo img {
  margin-top: 20px;
  width: 100px;
  border-radius: 50%;
}


.logo .img-text {    
  width: auto; 
  height:40px;
  border-radius: 1%;
}


.logo h1 {
  margin: 10px 0 5px;
}

.buttons {
  width: 100%;
}

.buttons button {
  position: relative;
  color: white;  
  display: flex;
  width: 100%;
  margin: 10px 0;
  padding: 12px;
  border: none;
  border-radius: 20px;
  background: linear-gradient(to right, #725B6D, #845358);
  font-weight: bold;
  cursor: pointer;
  transition: 0.3s;
  align-items: center;
  justify-content: center;
  gap: 10px;  
}

button .icono {
  position: absolute;
  left: 15px;
  top: 50%;
  transform: translateY(-50%);
  width: 28px;
  height: 28px;
}


.buttons button:hover {
  transform: scale(1.05);
  border: 4px solid var(--background);
}


/* Modal Catálogo */
.modal {
  display: none;
  position: fixed;
  z-index: 999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0,0,0,0.8);
}

.modal-content {
  background-color: #111;
  margin: 5% auto;
  padding: 20px;
  border: 1px solid #D8BFC6;
  width: 80%;
  max-width: 700px;
  border-radius: 15px;
  text-align: center;
}

.modal .modal-content button{
  color: #111;
  background-color: #ffffff;
  border: 2px solid #444;
  padding: 0.5rem 1rem;
  border-radius: 8px;
  cursor: pointer;
  font-weight: bold;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: 0.3s;
  z-index: 999;
}

.modal .modal-content button a{
  color: #111;
  font-size: 1.5rem;  
}

.close {
  color: #D8BFC6;
  float: right;
  font-size: 28px;
  font-weight: bold;
  cursor: pointer;
}

.catalog-grid {
  display: flex;  
  flex-wrap: wrap;
  justify-content: space-around;
  margin-top: 20px;
  
  /*agregué yo*/
  grid-template-columns: repeat(4, 1fr);  
  gap: 25px;  
}

.product-card {
  margin: 10px;
  color: white;
}

.product-card img {
  width: 150px;
  border-radius: 10px;
}

.product-card a {
  text-decoration: none;
}

#cart-items {
  list-style: none;
  padding: 0;
  color: white;
}

#cart-items li {
  margin: 10px 0;
}



/* footer starts */
.credit {
  margin-top: 33px;
  background: transparent;
  text-align: center;
  font-size: 1rem;  
  color: #fff;  
  display: grid;    
  flex: 1;      
}

.credit span {
  color: #29d9d5;
}

.credit .link-development {
  margin-top: 10px;
  text-decoration: none;
  color: black;
}  
/* footer ends */


/* compartir por whatsapp*/
.share-whatsapp {
  display: inline-block;
  margin-top: 15px;
  background-color: #25d366;
  color: white;
  padding: 10px 16px;
  border-radius: 8px;
  text-decoration: none;
  font-size: 14px;
  font-weight: bold;
  transition: background 0.3s ease;
}

.share-whatsapp:hover {
  background-color: #1ebe57;
}
/* compartir por whatsapp*/


/* MERCADO PAGO*/
.btn-mp {
  display: block;
  margin: 10px auto;
  padding: 12px 18px;
  background-color: #009ee3; /* Azul Mercado Pago */
  color: white;
  font-weight: bold;
  border-radius: 8px;
  text-align: center;
  text-decoration: none;
  transition: 0.3s;
  width: 80%;
  max-width: 300px;
}
.btn-mp:hover {
  background-color: #007bb8;
}






