@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Roboto+Condensed:ital,wght@0,100..900;1,100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Barlow:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Anton&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Barlow+Semi+Condensed:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');


*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /*paleta de colores primaroa*/
    --pr-primary: #747675;   /*gris*/
    --pr-secondary: #333333; /*gris oscuro*/
    --pr-terciary: #023047;  /*azul*/
    --pr-quaternary: #003DA5; /*azul marino*/
    --pr-quinary: #FFC638; /*amarillo*/
    --pr-senatorial: #FFFFFF; /*blanco*/
    --pr-hover-btn: #171717; /*gris negro*/
    --menu_text_primary: #F0F0F0; /*gris blanco*/
    --pr-offer: #E20602; /*rojo*/


    /**/
    --primary: #7F56D9;
    --secondary: #F4EBFF;
    --text-primary: #101828;
    --text-secondary: #898686;
    --text-terciary: #F1F1F1;
    --bg-primary: #171717;
    --bg-secondary: #F3F3F3; /*#404040;*/
    --bg-terciary: #FBFBFB;
    --button-hover-primary: #3F3F3F;
    --button-hover-secondary: #C6C5C5;
    --badge-bg: #ECFDF3;
    --badge-text: #027A48;
    
    --menu_bg_color: #333333;
    --menu_bg_secondary: #171717;
    --menu_dropdown_primary: #545454;
    --white: #fff;
    --dropdown-bg: rgb(252, 253, 251);
    --shadow: rgba(32, 7, 65, 0.14);
    --menu_container: 1900px;
    --nav-height: 5rem;
    --nav-width: 9rem;
    --dropdown-top: 6.5rem;
    --button-width: 200px;
    /*FONTS*/
    --font-primary: "Roboto", sans-serif;
    --font-subheaders: "Barlow", sans-serif;
    --font-headers: "Barlow Semi Condensed", sans-serif;;
    --font-headres-alt: font-family: "Alegreya Sans SC", sans-serif;;
    --font-text: "Barlow", sans-serif;
    /**/
    --prod-filter-width: 190px;
}

html, body{
  height:100%;
  margin: 0;
  display: flex;
  flex-direction: column;
  font-family: "Barlow", sans-serif;
  font-weight: 400;
  font-style: normal;
  line-height: 1.15;
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}

.page_container{
  width: 95%;
  max-width: 1920px;
  margin: auto;
  padding: 20px; 
  flex-grow: 1;
}

.boton{
  border: none;
  padding: 15px 32px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 16px;
  width: var(--button-width);
  flex-grow: 1;
}

.boton-primary{
  background-color: var(--pr-secondary);
  color: var(--pr-senatorial);
  transition-duration: 500ms, 500ms;
  transition-property: background-color, color
}
.boton-secondary{
  background-color: var(--pr-primary);
  color: var(--pr-senatorial);
  transition-duration: 500ms, 500ms;
  transition-property: background-color, color
}

.boton-primary:hover{
  background-color: var(--pr-hover-btn);
}
.boton-secondary:hover{
  background-color: var(--pr-primary);

}

.noselect {
  -webkit-touch-callout: none; /* iOS Safari */
    -webkit-user-select: none; /* Safari */
     -khtml-user-select: none; /* Konqueror HTML */
       -moz-user-select: none; /* Firefox */
        -ms-user-select: none; /* Internet Explorer/Edge */
            user-select: none; /* Versión sin prefijo, actualmente
                                      compatible con Chrome y Opera */
}

/********* NOTIFICACION *********/
.notificacion{
    visibility: hidden;
    position: absolute;
    display: flex;
    width: 300px;
    min-height: 60px;
    background-color: var(--pr-secondary);
    border-radius: 5px;
    color: white;
    top: 0;
    margin-top: -190px;
    padding: 10px;
    display: flex;
    align-content: center;
    align-items: center;
    transition-duration: 1000ms;
    transition: all;
}

.notificacion p{
    font-size: 14px;
    margin: 0;
    flex-grow: 1;
}

/******** END NOTIFICACION ********/

/********** HEADER ****************/

.menu_background{
  display: none;
}

.menu_close_btn{
  display: none;
}

.main_header{
  font-size: 12px;
  background-color: var(--pr-secondary);
  z-index: 3;
}

.preheader{
  position: relative;
  background: var(--pr-primary);
  width: 100%;
  height: 1.5rem;
  display: flex;
  align-items: center;
  text-align: center;
}

.preheader p{
  color: white;
  margin: auto;
}

.preheader span{
  padding-left: 10px;
  padding-right: 10px;
  color: var(--menu_text_primary);
  font-weight: bold;
  cursor: pointer;
}

.preheader_tiendas{
  display: none;
  position: absolute;
  top: var(--dropdown-top);
  left: 0;
  right: 0;
  width: 100%;
  background: var(--menu_bg_color);
  box-shadow: 0rem 0.2rem 0.5rem var(--shadow);
  clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
  transition: all 0.2s ease-in;
  z-index: 1000;
}

.logo{
  padding: 5px;
  height: 100%;
}

.logo-img{
  /*height: var(--nav-height);*/
  height: 100%;
  object-fit: contain;
  text-align: center;
}

.menu_container {
    max-width: var(--menu_container);
    margin: 0 auto;
    padding: 0 0.6rem;

}

.menu_navigation {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: var(--nav-height);
    font-size: 14px;
}

.navigation_menu{
  height: 100%;
  margin: 0;
}

.navigation_list {
    display: inline-flex;
    gap: 1.2rem;
    align-items: center;
    justify-content: center;
    margin: 0; /*  0 1.5rem;  */
    color: var(--pr-secondary);
    height: var(--nav-height);
}

.navigation_separator {
    display: inline-flex;
    gap: 1rem;
    align-items: center;
    text-align: center;
    margin: 0; /*  0 1.5rem;  */
    color: var(--menu_text_primary);
    height: var(--nav-height);
}

.navigation_list:hover{
  background-color: var(--pr-hover-btn);
}

.nav_action {
    display: flex;
    justify-content: end;
    align-items: center;
    font-size: 1.1rem;
}

.navigation-btn:hover {
    color: var(--pr-primary);
}

.nav_link,
.navigation-btn {
    display: flex;
    justify-content: center;
    text-align: center;
    gap: 1rem;
    font-weight: 500;
    color: var(--menu_text_primary);
    text-decoration: none;
    padding: 0 10px;
    text-transform: uppercase;
    position: relative;
}

.nav_link span{
  float: right;
  display: none;
}

.navigation-btn span{
    font-size: 0.7rem;
    font-weight: bold;
    background-color: var(--pr-quinary); /*8ECAE6  CEEEFF;*/
    color: var(--pr-secondary);
    position: absolute;
    top: 0;
    right: 0;
    margin-right: -2px;
    margin-top: -7px;
    width: 18px;
    height: 18px;
    border-radius: 50%;
}

.btn-primary {
    display: inline-flex;
    color: var(--white);
    background: var(--pr-secondary);
    font-weight: 500;
    padding: 0.6rem 1.5rem;
    border-radius: 1.5rem;
}

.nav_toggle {
    cursor: pointer;
    display: none;
}

.nav_toggle i {
    font-size: 2rem;
    color: var(--pr-senatorial);
}

.menu_dropdown {
    position: absolute;
    top: var(--dropdown-top);
    left: 0;
    right: 0;
    width: 100%;
    background: var(--menu_bg_color);
    box-shadow: 0rem 0.2rem 0.5rem var(--shadow);
    clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
    transition: all 0.2s ease-in;
    z-index: 1000;
}

.menu_dropdown-inner {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(20rem, 1fr));
    gap: 1rem;
    padding: 2rem;
}

.menu_dropdown h4{
  color: var(--menu_text_primary);
}

.navigation_list_menu:hover .menu_dropdown {
    clip-path: polygon(0 0, 100% 0, 100% 102%, 0 102%);
}

.item-list {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin: 3rem 0;
}

.item-img {
    width: 4rem;
    height: 4rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--secondary);
}

.item-list-info {
    position: relative;
    width: 100%;
}

.info-badge {
    position: absolute;
    right: 1rem;
    top: 0;
    background: var(--badge-bg);
    padding: 0.1rem 0.5rem;
    border-radius: 1rem;
    color: var(--badge-text);
}
/********* END HEADER **********/

/************ SEARCH ***********/
.search_box{
  z-index: 100000;
  position: fixed;
  display: none;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: rgba(0, 0, 0, 0.6);
}

.search_box.active{
  display: block;
}

.search_cont{
  width: 100%;
  height: 300px;
  background-color: black;
  display: flex;
  align-items: center;
  text-align: center;
}

.input-box {
  position: relative;
  height: 76px;
  max-width: 900px;
  width: 100%;
  background: #fff;
  margin: auto;
  border-radius: 8px;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
}
.input-box i,
.input-box .button {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}
.input-box i {
  left: 20px;
  font-size: 30px;
  color: #707070;
}
.input-box input {
  height: 100%;
  width: 100%;
  outline: none;
  font-size: 18px;
  font-weight: 400;
  border: none;
  padding: 0 155px 0 65px;
  background-color: transparent;
}
.input-box .button {
  right: 20px;
  font-size: 16px;
  font-weight: 400;
  color: #fff;
  border: none;
  padding: 12px 30px;
  border-radius: 6px;
  background-color: var(--bg-secondary);
  cursor: pointer;
}
.input-box .button:active {
  transform: translateY(-50%) scale(0.98);
}


/******* SEARCH MENU **********/
.search_box_menu{
  display: none;
}

.search_cont_menu{
  height: 150px;
  width: 100%;
  display: flex;
  align-items: center;
  text-align: center;
}


/************ END SEARCH **********/

/************ HOME SLIDER *****************/
.home
{
  width: 100%;
  /*height: 904px;*/
  background: #FFFFFF;
}

.home_slider_container
{
  width: 100%;
  height: 100%;
}

.home_slider_background
{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
}
/*********** END HOME SLIDER ***************/

/************* PRODUCTS ***********/

.product_container{
    max-width: 1100px;
    margin: auto;
    margin-bottom: 50px;
}

.prodImgContainer{
  position: relative;
  width: 100%;
  padding: 10px;
  display: flex;
  flex-direction: column;
}

.prodImgCont{
  width: 80%;
  overflow: hidden;
  cursor: zoom-in;
}

/*
.prodImgCont img{
  width: 100%;
  object-fit: contain;
}
*/
.prodImgList{

}

.item{
    min-width: 80px;
    max-width: 120px;
}

.item.active{
  border: 1px solid #d4d4d4;
 }

 .zoom{
  position: fixed;
  display: none;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1000;
  overflow: scroll;
 }
 .zoom img{
  position: relative;
  object-fit: contain;
  width: 100%;
  cursor: zoom-out;
 }

 .prodName h3{
    font-family: var(--font-headers);
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--pr-secondary);
    margin-bottom: 0;
    text-transform: uppercase;
 }

 .prodSubName h5{
    font-size: .8rem;
    font-family: var(--font-subheaders);
    color: var(--pr-primary);
    margin-top: 0;
    text-transform: uppercase;
 }

  .priceLine{
    display: flex;
    gap: 5px;
    padding: 5px;
    width: 100%;
    align-items: center;
    font-family: var(--font-headers);
  }

  .prodPrice{
    font-family: var(--font-headers);
    font-size: 1.6rem;
    font-weight: bold;
  }

  .prodPriceRed{
    color: var(--pr-offer); !important;
  }

  .prodPrice span{
    padding: 3px;
  }

  .prodPriceOld{
    text-decoration: line-through;
    font-size: 1.2rem;
  }

  .prodPriceOld span{
    padding: 3px;

  }

  .prod-price-desc{
    display: none;
    color: var(--pr-offer);
    text-transform: uppercase;
    margin-right: 0;
    margin-left: auto;
    font-size: 1.4rem;
    font-weight: bold;
  }

  .prodDesc{
    font-family: var(--font-text);
    font-size: 16px;
    margin-top: 10px;
    padding: 10px;
    color: var(--pr-secondary);

  }

  .prodDesc ul{
    list-style-type: square;
  }

  .prodTalles {
    display: inline-flex;
    flex-wrap: wrap;
    grid-template-columns: auto auto auto auto auto auto;
    gap: 10px;
    padding: 10px;
  }

  .talle{
    border: 1px solid #d4d4d4;
    text-align: center;
    cursor: pointer;
    width: 40px;
    padding: 5px;
    background-color: var(--bg-terciary);
  }

  .talle-disponible{
    background-color: white;
  }

  .talle-disponible:hover{
    border: 1px solid var(--bg-primary);
  }

  .talle-no-disponible{
    background-color: #EEEEEE;
    color: #ABABAB;
    cursor: default;
  }

  .talle-seleccionado{
    background-color: #5B5B5B;
    color: white;
    cursor: default;
  }
  .prodCompra{
    position: relative;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 5px;
    padding: 5px;
  }

  .products-header{
    width: 100%;
    margin: 0;
  }
  .products-cant{
    
  }
  .products-sort-cont{
    display: inline-flex;
    gap: 10px;
    justify-content: end;
  }
  .products-filter{
    cursor: pointer;
  }
  .products-sort{
    cursor: pointer;
    position: relative;
  }
  .products-container{
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
  }
  .products-filters{
    position: sticky;
    top: 0;
    height: 800px;
    overflow: auto;
    width: var(--prod-filter-width);
    background-color: var(--bg-terciary);
  }
  /* scrollbar */
  .products-filters::-webkit-scrollbar {
    width: 6px;     /* Tamaño del scroll en vertical */
    height: 2px;    /* Tamaño del scroll en horizontal */
    /*display: none;  /* Ocultar scroll */
  }
  .products-filters::-webkit-scrollbar-thumb {
    background: #AAA;
    border-radius: 4px;
  }
  .products-filters::-webkit-scrollbar-thumb:hover {
    /*background: #b3b3b3;*/
    box-shadow: 0 0 2px 1px rgba(0, 0, 0, 0.2);
  }

  .products-filters::-webkit-scrollbar-thumb:active {
    background-color: #999999;
  }
  .products-filters::-webkit-scrollbar-track {
    background: #FFF;
    border-radius: 2px;
  }
  .products-filters::-webkit-scrollbar-track:hover,
  .products-filters::-webkit-scrollbar-track:active {
      /*background: #d4d4d4;*/
  }

  .products-grid-cont{
    width: calc(100% - var(--prod-filter-width) - 15px);
    padding: 0%;
    margin-left: auto;
    -webkit-transition: width .5s ease-in-out;
    -moz-transition: width .5s ease-in-out;
    -o-transition: width .5s ease-in-out;
    transition: width .5s ease-in-out;
  }

  .products-grid{
    display: flex;
    margin: 0;
    width: 100%;
    row-gap: 10px;
  }

  .products-grid > div {
    -webkit-transition: all 0.6s ease-in-out;
    -moz-transition: all 0.6s ease-in-out;
    -o-transition: all 0.6s ease-in-out;
    transition: all 0.6s ease-in-out;
   }

  .prod-img .prod-img-alt{
    position: absolute;  
    top: 0;  
    left: 0;
    opacity: 0;
    transition: .5s;
  }

  .prod-img {
    position: relative;
  }

  .prod-img:hover .prod-img-alt {
    opacity: 1;
  }

  .form-check-input:focus {
    box-shadow: none;
    border-color: var(--text-primary);
  }

  .form-check-input:checked {
    background-color: var(--text-secondary);
    border-color: var(--text-secondary);
    box-shadow: none;
  }

  .accordion-body ul{
    list-style-type: none;

  }

  .accordion-item{
    border: none;
    border-bottom: solid 1px var(--text-secondary);
  }
  .accordion-button:not(.collapsed){
    background-color: var(--bg-terciary);
  }
  .accordion-button:is(.collapsed)::after {
    box-shadow: none;
  }
  .accordion-button:not(.collapsed)::after {
    box-shadow: none;

  }
  .accordion-button:focus{
    box-shadow: none; 
  }

/************ END PRODUCTS *********/


/************* FOOTER  *************/

footer{
    margin-top:0;
    width: 100%;
    padding: 0;
    background-color: var(--bg-primary);
    color: var(--text-terciary);
    font-size: 14px;
}
footer h2{
    text-transform: uppercase;
    font-size: 16px;
    font-family: var(--font-headres-alt);
    font-style: normal;
    font-weight: 500;
}
footer p{
    font-size: 12px;
    font-family: var(--font-text);
    font-style: normal;
    font-weight: 300;
}
.footer-info-col{
    padding: 2%;
}
.footer-info-col ul{
    list-style-type: none;
    font-size: 12px;
    font-family: var(--font-text);
}
.footer-info-col a{
    text-decoration: none;
    color: var(--text-terciary);
    font-size: 12px;
    font-family: var(--font-text);
}
.footer-info-col a:hover{
    color: var(--text-secondary);
}
.footer_copyrights{
    width: 100%;
    margin-top: 10px;
    margin-bottom: 0 px;
    padding: 10px 20px;
    bottom: 0;
    text-align: left;
    background-color: black;
    border-top: solid 0.4px var(--text-secondary);
}
.footer_copyrights p{
    color: var(--text-terciary);
    font-size: 12px;
    margin: 0;
}


/************* END FOOTER **********/



/********** RESPONSIVE *********************/

@media (max-width:980px) {

    .menu_background{
      display: none;
      position: fixed;
      top: 0;
      left: 0;
      bottom: 0;
      right: 0;
      margin: 0;
      background-color: rgba(20, 20, 20, 0.6);
      z-index: 2;
    }

    .menu_close_btn{
      display: block;
      position: absolute;
      top: 100px;
      right: 10px;
      font-size: 1.5rem;
      padding: .2rem .5rem;
      cursor: pointer;
      background-color: var(--pr-secondary);
      color: var(--menu_text_primary);
      border: 1px solid var(--menu_text_primary);
      border-radius: 5px;
    }

    .menu_close_btn:hover{
      background-color: var(--pr-hover-btn);
    }

    .preheader{
      display: none;
    }
    
    .menu_container {
      width: 100%;
    }
    .nav_toggle {
      display: block;
    }
    .navigation_menu {
      position: absolute;
      z-index: 1000;
      top: var(--nav-height);
      left: 0;
      width: 80%;
      max-width: 400px;
      background: var(--pr-secondary);
      display: none;
      padding: 0;
    }
    .navigation_menu.active {
      display: block;
    }
    .navigation_list {
      display: block;
      margin: 0 0;
      height: unset;
      background: var(--pr-secondary);
    }

    .menu_dropdown {
      background-color: var(--pr-secondary);
      top: 0;
      position: relative;
      height: 0;
      box-shadow: none;
      text-align: start;
      transition: all 0.5s ease-in;
      overflow: hidden;
      clip-path: unset;
    }

    .navigation_list_menu:hover .menu_dropdown {
      clip-path: unset;
    }

    .navigation_list_menu.activa .menu_dropdown{
      height: unset;
    }

    .nav_toggle{
      width: 120px;
    }

    .nav_action {
      width: 120px;
    }

    .menu_navigation{

    }

    .navigation_separator {
      display: none;
    }

    .nav_link {
      display: block;
      height: 100%;
      text-align: left;
      align-items: center;
      align-content: center;
      padding: 1.5rem .5rem;
    }

    .nav_link span{
      display: block;
    }
    
    /*************** SEARCH ***************/

    .input-box {
      height: 66px;
      margin: 0 8px;
    }
    .input-box i {
      left: 12px;
      font-size: 25px;
    }
    .input-box input {
      padding: 0 112px 0 50px;
    }
    .input-box .button {
      right: 12px;
      font-size: 14px;
      padding: 8px 18px;
    }

  /************* END SEARCH *************/

  /*********** PRODUCT ****************/

    .products-grid-cont{
      width: 100%;
    }

    .products-filters{
      display: none;
    }

  /********* END PRODUCTS ************/
}

@media (max-width:620px) {

  /**** HEADER ******/
  .menu_close_btn{
    right: 4px;
    font-size: 1.2rem;
    padding: .15rem .35rem;
  }

  .navigation_menu{
    width: 90%;
  }

  /**** END HEADER ****/
  
  /****** PRODUCT *******/
  .purchase_container{
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    backdrop-filter: blur(5px);
    background-color: rgba(230, 230, 230, 0.4);
  }

  .talle{
    font-size: 12px;
    width: 40px;
  }

  /***** END PRODUCT *****/
}
@media (max-width:379px) {
  /**** HEADER *****/
  .logo-img {
    width: 80px;
  }
  .nav_toggle{
    width: 70px;
  }
  .navigation_menu{
    width: 100%;
  }
  .nav_action{
    width: 70px;
    font-size: 1rem;
    padding: 0;
  }
  .navigation-btn{
    padding: 4px;
  }
  .navigation-btn span{
    margin-right: -5px;
  }
  /***** END HEADER ********/

    /************** PRODUCT ******************/

   .prodImgList{
     display: none;
   }

  /************* END PRODUCT ***************/
}