.shopContainer {
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-top: 2rem;
  padding: 1rem;
  background-color: var(--block-bg-color);
  min-width: 360px;
  margin: 0 auto;
  text-align: center;
}

.productsContainer {
  padding: 0em;
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 340px;
  width: 100%;
  align-content: center;
}

.categoriesContainer {
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  width: 100%;
  border-radius: 0 0 1rem 1rem;
  color: black;
  background-color: gray;
  padding: 0 1em;
}

.activeProduct {
  /*chatGPT*/
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  text-align: center;
  gap: 0.5rem;
  background-color: gray;
  width: 100%;
  border-radius: 0.5rem;
  padding: 0.5rem;
}

/*chatGPT}*/
.activeProduct>div {
  box-sizing: border-box;
  flex: 1 1 320px;
  min-width: 320px;
  box-sizing: border-box;
  padding: 2em;
  align-content: center;
}

/**/
.productSelectedActiveImage_container {
  width: 100%;
  height: 45vh;
  border-radius: 10px;
  outline: 0.5em solid grey;
}

.activeProductImage {
  height: 100%;
  width: 100%;
  object-fit: contain;
}

.imgCategory_thumbnails {
  width: 100%;
  height: auto;
  object-fit: cover;
  cursor: pointer;
  margin: 0 auto;
}

.img_thumbnails {
  width: 100%;
  cursor: pointer;
  margin: 0 auto;
}

.ImgColor_thumbnails {
  width: 100%;
  cursor: pointer;
  margin: 0 auto;
  border-radius: 10px;
  max-width: 32px;
  border: solid 0.1px grey;
}

.activeProduct_gallery {
  display: flex;
  flex-direction: row;
  width: 100%;
  height: 100px;
  gap: 0.1em;
  justify-content: center;
}

.activeImg_thumbnails {
  cursor: pointer;
  height: 100%;
  width: 100%;
  object-fit: cover;
  object-position: center;
}

.activeProductGallerySelector {
  padding: 0.7em;
  width: 100px;
  height: 100px;
  max-width: 150px;
  height: 100px;
  max-height: 150px;
}

.activeProductGallerySelector--active {
  border: 0.5em solid gray;
  border-top: 0.5em solid white;
  color: black;
  border-bottom-left-radius: 0.5em;
  border-bottom-right-radius: 0.5em;
  position: relative;
  text-align: center;
}

.activeProductGallerySelector--active::before {
  content: " ";
  position: absolute;
  width: 1rem;
  height: 2rem;
  top: 0%;
  right: -19%;
  background-color: transparent;
  border-top-left-radius: 1rem;
  box-shadow: 0 -0.5rem 0 gray;
}

.activeProductGallerySelector--active::after {
  content: " ";
  position: absolute;
  width: 1rem;
  height: 2rem;
  top: 0;
  left: -19%;
  background-color: transparent;
  border-top-right-radius: 1rem;
  box-shadow: 0 -0.5rem 0 gray;
}

.selectedProductName {
  width: 100%;
  height: 3em;
}


.galleryCategoriesImage {
  object-fit: cover;
  object-position: center;
  width: 4.5em;
  height: 4.5em;
  border-radius: 10.5em;
  padding: 0.5em;
  margin: 0 auto;
  cursor: pointer;
}

.galleryProductsByCategoryImage {
  cursor: pointer;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  border-radius: 10.5em;
  margin: 0 auto;
  border: solid 0.1px grey;
}

.galleryCategoriesDesc {
  white-space: nowrap;
  margin: 0 auto;
}

.galleryCategories {
  display: grid;
  gap: 0px 0.5em;
  grid-template-columns: repeat(auto-fit, minmax(min(4em, 100%), 1fr));
  /*grid-template-columns: repeat(auto-fit, minmax(min(280px, 100%), 1fr));
 */
  align-content: space-between;
  font-size: medium;
}

.categoriesTitle {
  display: flex;
  align-items: center;
  margin: 0 auto;
}

.centerTitles {
  margin: 0 auto;
}

.categoryActive {
  margin: 0 auto;
  display: none;
}

.galleryCategoriesSelector {
  width: 100%;
  max-width: 150px;
  display: flex;
  flex-wrap: nowrap;
  flex-direction: column;
  /*flex: 0 1 auto;*/
  padding: 0;
  margin: 0 auto;
  color: black;
}

.galleryCategoriesSelector--active {
  background-color: var(--block-bg-color);
  /* Color similar al acero inoxidable */
  color: black;
  border-bottom-left-radius: 0.5em;
  border-bottom-right-radius: 0.5em;
  position: relative;
  text-align: center;
}

.galleryCategoriesSelector--active::before {
  content: " ";
  position: absolute;
  width: 1rem;
  height: 1rem;
  top: 0%;
  right: -8%;
  background-color: transparent;
  border-top-left-radius: 1rem;
  box-shadow: 0 -0.5rem 0 var(--block-bg-color);
}

.galleryCategoriesSelector--active::after {
  content: " ";
  position: absolute;
  width: 1rem;
  height: 1rem;
  top: 0;
  left: -8%;
  background-color: transparent;
  border-top-right-radius: 1rem;
  box-shadow: 0 -0.5rem 0 var(--block-bg-color);
}

.productDetails {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.2em;
  padding: 0 0.5em;
}

.productDetails>div {
  display: flex;
  flex-wrap: wrap;
  font-size: small;
}

.activeProductTexts {
  background-color: lightgray;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-areas:
    "productDetails"
    "priceContainer"
    "btProductBuy";
  border-radius: 5px;
  padding: 0 0.5rem;
}

.borderGroup {
  width: 100%;
  padding: 0 0.5em;
  border: solid 0.1px grey;
}

.whiteColors {
  background-color: white;
  color: black;
}

.brownColors {
  background-color: brown;
  color: white;
}

.blackColors {
  background-color: black;
  color: white;
}

.greenColors {
  background-color: green;
  color: white;
}

.orangeColors {
  background-color: orange;
  color: white;
}

.selectedProductDescription {
  font-size: small;
  display: flex;
  justify-content: center;
  align-items: center;
  min-width: 60%;
  border-radius: 10px;
  padding: 0.5rem;
  width: 100%;
  height: 3em;
}

.productSelectedContainer {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-color: white;
  width: 100%;
  border-radius: 10px;
  padding: 0.5em;
}

.activeProduct_price {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1em;
  width: 100%;
  font-size: x-large;
  font-weight: bold;
}

.boxPriceContainer {
  color: #000000;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5em;
}

.iconSpecMovil_container {
  width: 100px;
}

.btSendCart_movil {
  text-align: center;
  border-radius: 0.5rem;
  color: black;
  cursor: pointer;
  text-decoration: none;
  width: 100%;
  display: block;
  text-decoration: none;
  color: black;
  padding: 0.1em 1em;
}

.btContact {
  text-align: center;
  border-radius: 0.5rem;
  background-color: grey;
  color: black;
  cursor: pointer;
  text-decoration: none;
  width: 100%;
  display: block;
  text-decoration: none;
  color: black;
  padding: 0.1em 1em;
}

.btContact:hover {
  background-color: black;
  display: block;
  text-decoration: none;
  color: whitesmoke;
  font-weight: bold;
  border-radius: 0.5rem;
}

.warningShipping {
  color: black;
  font-size: xx-small;
  width: 100%;
  height: 3em;
}

.activeProduct_reviews {
  text-align: center;
  background-color: orangered;
  width: 100%;
  border-radius: 0.5rem;
  padding: 5px 20px;
  font-size: x-small;
}

.activeProductSize_container {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  align-items: center;
  width: 100%;
}

.activeProductSize_gallery {
  display: flex;
  justify-content: center;
  gap: 1rem;
  width: 100%;
  padding: 1rem;
}

.activeProductSize_galleryImages {
  align-items: center;
  width: 24px;
  height: 24px;
  background-color: lightblue;
}

.productGalleryByCategory {
  width: 100%;
  display: flex;
  flex-direction: column;
  color: black;
  padding: 0 0.5em;
}

.galleryProductsByCategory {
  display: flex;
  flex-direction: row;
  justify-content: center;
  gap: 0.5em;
  text-align: center;
  padding-bottom: 0.5em;
  color: black;
}

.galleryProductsByCategorySelector {
  padding: 0.5em;
  width: 100px;
  height: 100px;
  /**/
  justify-content: center;
  align-items: center;
}

.galleryProductsByCategorySelector--active {
  background-color: gray;
  padding-top: 10px;
  padding-bottom: 10px;
  border-bottom-left-radius: 1rem;
  border-bottom-right-radius: 1rem;
  position: relative;
}

.boxContainer {
  color: black;
  display: flex;
  gap: 0.5em;
  flex-wrap: wrap;
  justify-content: space-evenly;
  align-items: center;
}

.boxINcontainer {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 0.5em;
  max-width: 45%;
  max-height: 45%;
}

.productColors {
  width: 24px;
  height: 24px;
}

.show_movil {
  display: none;
}

.btMovilDetails_close_hide {
  display: none;
  border: #000000 solid 1px;
}

@media screen and (max-width: 768px) {
  /*body {
    overflow-y: hidden;
  }*/
  .main {
    width: 100%;
  }

  .block_about,
  .block_contact,
  .shopContainer {
    width: 100%;
    min-width: 360px;
    margin: 0 auto;
  }

  .footer {
    width: 100%;
    min-width: 360px;
    margin: 0 auto;
    /*padding: 0.5em;*/
  }

  .footer_column {
    /*  */

    padding: 0.5em 0;
    /* 10px 5px */
    text-align: center;
    width: auto;
  }

  .title {
    font-size: 24px;
    margin-bottom: 10px;
    text-align: center;
  }

  .subtitle {
    font-size: 16px;
    margin-bottom: 10px;
  }

  .paragraph {
    font-size: 14px;
    text-align: justify;
  }

  .siteLogo {
    display: none;
  }

  .hero {
    width: 100%;
    min-height: 50vh;
  }

  .nav_movil {
    display: block;
  }

  .nav_link--menu {
    position: fixed;
    background-color: #000000;
    top: 0;
    left: 0;
    height: 100%;
    width: 95%;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    align-items: center;
    z-index: 100;
    opacity: 0;
    pointer-events: none;
    transition: 0.7s opacity;
  }

  .nav_link--show {
    --show: block;
    opacity: 1;
    pointer-events: unset;
  }

  .productDetails_movil {
    display: none;
  }

  .productDetails_movil_show {
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    background-color: white;
    height: 97vh;
    z-index: 101;
    width: 96%;
    padding: 1.5em;
  }

  .iconSpecMovil_container {
    width: 72px;
  }

  .show_movil {
    width: 100%;
    display: flex;
    gap: 0.5em;
  }

  .hide_movil {
    display: none;
  }

  .btMovilDetails_close {

    border: #000000 solid 1px;
  }

  .btMovilDetails_close_show {
    display: block;
    border: #000000 solid 1px;
  }

  .nav_close {
    position: absolute;
    top: 30px;
    right: 30px;
    width: 30px;
    cursor: pointer;
    background-color: #ffffff;
  }

  .aboutInfo_Container {
    display: flex;
    flex-direction: column-reverse;
    justify-content: center;
    align-items: center;
  }


  .categoryActive {
    margin: 0 auto;
    display: block;
  }

  .categoriesContainer {
    width: 100%;
    justify-content: space-between;
    padding: 0.25em;
  }

  .galleryCategories {
    display: flex;
    flex-wrap: nowrap;
    justify-content: space-around;
    gap: 0.1em;
  }

  .galleryCategoriesSelector {
    justify-content: center;
    gap: 0px 0.5em;
  }

  .galleryCategoriesSelector--active {
    border-radius: 0.5rem;
    position: relative;
  }

  .galleryCategoriesSelector--active::before {
    display: none;
  }

  .galleryCategoriesSelector--active::after {
    display: none;
  }

  .galleryCategoriesImage {
    width: 100%;
    text-align: center;
    width: 42px;
    height: 42px;
  }

  .galleryCategoriesDesc {
    display: none;
  }

  .productSelectedActiveImage_container {
    max-width: 340px;
    max-height: 340px;
    outline: 0;
    padding: 10px;
  }

  .activeProduct_gallery {
    height: 54px;
    gap: 0.5em;
    justify-content: center;
  }

  .activeProductGallerySelector {
    width: 54px;
    height: 54px;
    padding: 0em;
  }

  .activeProductGallerySelector--active {
    border: 0.5px solid gray;
    padding: 0.3em;
    border-radius: 0;
  }

  .activeProductGallerySelector--active::before {
    display: none;
  }

  .activeProductGallerySelector--active::after {
    display: none;
  }

  .activeProduct_price {
    padding: 0.75em;
  }

  .productPrice,
  .activeProductName,
  .activeProductDescription,
  .categoriesTitle {
    font-size: small;
  }

  .img_thumbnails {
    width: 24px;
  }

  .galleryProductsByCategoryImage {
    width: 54px;
    height: 54px;
  }

  .galleryProductsByCategory {
    gap: 0.2em;
    justify-content: center;
    height: 74px;
  }

  .galleryProductsByCategorySelector {
    padding: 0.5em;
    width: 64px;
    height: 64px;
  }

  .galleryProductsByCategorySelector--active {
    padding: 0.2em;
    border-bottom-left-radius: 1rem;
    border-bottom-right-radius: 1rem;
    position: relative;
  }

  /* */
  .productSelectedContainer {
    gap: 0.5em;
  }

  .boxSelectSpecs {
    display: flex;
    flex-wrap: wrap;
  }

  .labelDetails {
    display: none;
  }

  .activeProduct {
    display: flex;
    flex-direction: column-reverse;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
  }

  /*chatGPT}*/
  .activeProduct>div {
    padding: 0.5em;
  }

  .containerColumn {
    display: flex;
    flex-direction: column;
    gap: 0px;

  }

  .movilContact_flexReverse {
    display: flex;
    flex-direction: column-reverse;
    margin: 0;
    padding: 0;
  }

  .movilContact_rebuilt {
    display: flex;
    flex-wrap: wrap;
    font-size: 14px;
    margin: 0;
    padding: 0;
    border: 0;
    justify-content: center;
    align-items: center;
  }

  .movilContact_rebuilt>div {

    display: flex;
    flex-wrap: wrap;
    font-size: 14px;
    margin: 0 auto;
    padding: 0;
    border: 0;
    justify-content: center;
    align-items: center;
  }

  .upDown_buttons {
    display: none;
  }

  .floatNav {
    box-sizing: border-box;
    margin: 0;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--bg-cta);
    display: flex;
    justify-content: space-around;
    align-items: center;
    height: 60px;
    /*height: var(--nav-height);*/
    /* Altura responsive */
    color: white;
    border-radius: 15% 15% 0 0;
    z-index: 102;
    /* Asegura que esté por encima de otros elementos */

  }

  .floatNav-icons-container {
    background-color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    padding: 0.1em;
      display: flex;
  justify-content: center;
    
    align-items: center;
  }
  .floatNav_icons {
    background-color: white;
    width: 34px;
    height: 34px;
    border-radius: 25%;
    padding: 0.1em;
    display: flex;
    justify-content: center;
  }
}

/* >>> End  @MEDIA QUERY */