:root {
  --bordo: #650000;
  --cremita: #fffadc;
  --gris: #343434;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    /* font-family: "Prata", serif;
    font-weight: 400;
    font-style: normal; */
}

body {
    display: flex;
    justify-content: center;
    flex-direction: column;
    /* background-color: #eee; */
    /* background-color: #c7b69f; */
    /* background-color: #ccc;*/
    /* background-color: #1f2438; */
    background-color: var(--cremita);
}

nav {
  max-width: 100%;
  /* background-color: #000; */
  /* background-color: #553d2a; */
  /* background-color: #9f8668; */
  background-color: var(--bordo);
  height: 75px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

/* #nav-contact {
  width: 100%;
  height: 50%; */
  /* background-color: red; */
  /* display: none; */
/* } */

#nav-title-section {
  width: 100%;
  height: 50%;
  /* background-color: blue; */
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-evenly;
  font-family: "Prata", serif;
  font-weight: 400;
  font-style: normal;
}

.nav-titles {
  font-size: 25px;
  color: #fff;
  cursor: pointer;
}

footer {
  max-width: 100%;
  /* background-color: #000; */
  /* background-color: #553d2a; */
  /* background-color: #1f2438; */
  background-color: var(--bordo);
  height: 75px;
}

#searchProduct {
  padding: 10px 50px;
}

#title-section {
  max-width: 100%;
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Prata", serif;
  font-weight: 400;
  font-style: normal;
}

#title-section p {
  font-size: 2.5em;
  color: var(--gris);
  /* text-shadow: 4px 0px #000; */
}

#contenedor {
    margin-bottom: 50px;
    max-width: 100%;
    height: 75%;
    flex-wrap: wrap;
    /* border: 1px solid black; */
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 50px;
    font-family: "Roboto", sans-serif;
    font-weight: 400;
    font-style: normal;
}

.box {
    width: 250px;
    height: 400px;
    /*border: 3px solid green;*/
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    /* border-bottom: 10px solid #000000; */
    /* border-bottom: 10px solid #553d2a; */
    border-bottom: 10px solid var(--gris);;
    /* border-top: 1px solid #bebebe;
    border-right: 1px solid #bebebe;
    border-left: 1px solid #bebebe; */
    background: #f4ebe1;
    /* background: #f2eadb; */
    /* background: linear-gradient(110deg, #ececec 8%, #f5f5f5 18%, #ececec 33%); */
    border-radius: 5px;
    background-size: 200% 100%;
    font-family: "Assistant", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
}

#img-section-logo {
  display: flex;
  align-items: end;
  justify-content: center;
  max-width: 100%;
  height: 250px;
}

#img-section-logo img {
  width: 200px;
  height: 200px;
}

.img-section-line {
  width: 50%;
  height: 150px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.img-line {
  width: 90%;
  height: 2px;
  background-color: var(--gris);
  border-radius: 10px;
}

#image-container {
    width: 100%;
    height: 75%; /* 75%*/
    /* border: 2px solid red; */
    margin-top: 10px;
    display: block;
    
}

#image-container img {
    max-width: 100%;
    max-height: 100%;
    margin: auto;
    display: block;
    object-fit: contain;
}

#product-container {
    width: 100%;
    height: 25%;
    /*border: 2px solid green;*/
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-evenly;
    text-align: center;
}

#product_price {
    font-size: 18px;
}

#product_name {
    font-size: 19px;
}

/* #button-container {
    width: 100%;
    height: 30%;
    border: 2px solid blue;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
} */

#noStockContainer {
  width: 100%;
  height: 30%;
  margin-bottom: 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

#textNoStock {
  color: #D8000C;
	background-color: #FFBABA;
  padding: 8px 15px;
  border-radius: 100px;
  font-size: 16px;
}

#textNoStock i {
  margin-right: 10px;
}

.buttonAdd span, #buttonNoStock span {
    margin-left: 10px;
}

.new-tag {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    position: absolute;
    right: 10px;
    top: 5px;
    font-size: 18px;
    cursor: default;
}

.new-tag span {
    padding: 5px 8px;
    color: #fff;
    background-color: rgb(37, 216, 136);
    animation-name: zoom;
    animation-duration: 1s;
    animation-iteration-count: infinite;
}

.buttonAdd {
    padding: 5px 20px;
    color: #fff;
    background-color: #627583;
    border: none;
    cursor: pointer;
}

#buttonNoStock {
    padding: 5px 20px;
    color: #fff;
    background-color: #8d9fab;
    border: none;
}

@keyframes zoom {
    0% { transform: scale(1); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
}

.card {
    /* margin: 10px; */
    width: 250px;
    height: 400px;
    background: #fff;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
  
    .image {
      img {
        max-width: 100%;
        border-top-left-radius: 5px;
        border-top-right-radius: 5px;
      }
    }
  
    .content {
      padding: 15px 40px;
    }
  }

.content h2 {
  margin: 14px 0 36px 0;
}

.card.is-loading {
  .image,
  h2 {
    background: #eee;
    background: linear-gradient(110deg, #ececec 8%, #f5f5f5 18%, #ececec 33%);
    border-radius: 5px;
    background-size: 200% 100%;
    animation: 1.5s shine linear infinite;
  }

  .image {
    height: 60%;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
  }

  h2 {
    height: 25px;
  }
}

@keyframes shine {
  to {
    background-position-x: -200%;
  }
}
