:root {
  --blue-color: #021D3B;
  --blue2-color: #547AC2;
  --blue3-color: #8BA1C9;
  --blue4-color: #DDE5F6;
  --blue5-color: #CDD6ED;
  --dark-color: #1E1E1E;
  --grey-color: #777777;
  --white-color: #FFFFFF;
  --white2-color: #FBFDFB;
}

@font-face {
  font-family: 'Montserrat';
  src: url('fonts/Montserrat-Regular.ttf') format('truetype');
  font-style: normal;
  font-weight: normal;
}
@font-face {
  font-family: 'OpenSans';
  src: url('fonts/OpenSans-Regular.ttf') format('truetype');
  font-style: normal;
  font-weight: normal;
}

body{
  font-size: 12px;
  font-family: 'Montserrat';
}

.square {
  background-position: center ;
  background-size: cover;
  width: 100%;
}

.square:after {
  content: "";
  display: block;
  padding-bottom: 100%;
}



.square .overlay{
  background-color: rgba(0, 0, 0, 0.4);
  height: 100%;
  opacity: 0;
  position: absolute;
  transition: 200ms linear;
  width: 100%;
}
.square:hover .overlay{
  opacity: 1;
}
.square .hover{
  display:none;
  opacity: 0;
  transition: 200ms linear;
}
.square:hover .hover{
  display: block;
  opacity: 1;
  transition: 200ms linear;
}

.font-open{
  font-family: "Montserrat", sans-serif;
  /*font-weight: 100;*/
  font-style: normal;
}
.font-mont{
  font-family: "Montserrat", sans-serif;
  /*font-weight: 500;*/
  font-style: normal;
}
.blue-color{
  color: var(--blue-color)!important;
}
.blue-bg{
  background-color: var(--blue-color)!important;
}
.blue2-color{
  color: var(--blue2-color)!important;
}
.blue2-bg{
  background-color: var(--blue2-color)!important;
}
.blue3-color{
  color: var(--blue3-color)!important;
}
.blue3-bg{
  background-color: var(--blue3-color)!important;
}
.blue4-color{
  color: var(--blue4-color)!important;
}
.blue4-bg{
  background-color: var(--blue4-color)!important;
}
.blue5-color{
  color: var(--blue5-color)!important;
}
.blue5-bg{
  background-color: var(--blue5-color)!important;
}
.dark-color{
  color: var(--dark-color)!important;
}
.dark-bg{
  background-color: var(--dark-color)!important;
}
.grey-color{
  color: var(--grey-color)!important;
}
.grey-bg{
  background-color: var(--grey-color)!important;
}
.white-color{
  color: var(--white-color)!important;
}
.white-bg{
  background-color: var(--white-color)!important;
}
.white2-color{
  color: var(--white2-color)!important;
}
.white2-bg{
  background-color: var(--white2-color)!important;
}
.text-justify{
  text-align: justify;
}
.fs-16{
  font-size: 1.14em!important;
}
.fs-17{
  font-size: 1.28em!important;
}
.fs-20{
  font-size: 1.42em!important;
}
.fs-22{
  font-size: 1.57em!important;
}
.fs-24{
  font-size: 1.71em!important;
}
.fs-28{
  font-size: 2em!important;
}
.fs-40{
  font-size: 2.85em!important;
}
.fs-50{
  font-size: 3.28em !important;
}
.fs-60{
  font-size: 4.28em!important;
}
.fs-68{
  font-size: 4.85em!important;
}
.fs-72{
  font-size: 5.14em!important;
}
.fs-98{
  font-size: 7em!important;
}
.fs-80{
  font-size: 5.71em!important;
}
.fs-115{
  font-size: 8.14em!important;
}
.fw-200{
  font-weight: 200!important;
}
.fw-300{
  font-weight: 300!important;
}
.fw-400{
  font-weight: 400!important;
}
.fw-500{
  font-weight: 500!important;
}
.fw-600{
  font-weight: 600!important;
}
.fw-700{
  font-weight: 700!important;
}
.fw-800{
  font-weight: 800!important;
}
.ls-10{
  letter-spacing: 10px;
}
.ls-14{
  letter-spacing: 1.478px;
}
.lh-35{
  line-height: 35px;
}
.lh-80{
  line-height: 80px;
}
.lh-100{
  line-height: 100px;
}
.border-50{
  border-radius: 50px;
}
.cover{
  background-size: cover;
}
.pleft50{
  padding-left: 50px;
}
.mauto{
  margin: 0 auto;
}
.mtop100{
  margin-top: 100px;
}
.mbottom100{
  margin-bottom: 100px;
}
.w70{
  width: 70%;
}
/*******   HEADER   *******/
#header-wrap{
  top: 0;
  left: 0;
  width: 100%;
  z-index: 4000;
  display: block;
  position: fixed;
  transition: 0.7s;
  padding: 20px 0 0 0;
  background-color: #FFFFFF;
}
.logo{
  width: 230px;
}
.icon-header{
  width: 20px;
}
.navbar{
  background-color: var(--blue-color);
}
.nav-link{
  color: #FFF;
  font-size: 1.3em;
  margin: 10px;
  text-transform: uppercase;
  font-family: "Montserrat", sans-serif;
}
.nav-link:focus, .nav-link:hover {
    color: #FFFFFF;
}
.navbar-expand-lg .navbar-nav {
  width: 100%;
  justify-content: center;
}
.button-blue {
  display: flex;
  color: #FFFFFF;
  font-weight: 400;
  position: relative;
  text-align: center;
  border-radius: 50px;
  text-decoration: none;
  justify-content: center;
  text-transform: uppercase;
  padding: 8px 20px!important;
  background-color: var(--blue2-color);
  border: 1px solid var(--blue2-color);
  font-family: "Montserrat", sans-serif;
}
.button-blue:hover {
  color: #FFFFFF;
}
.button-transparent{
  font-weight: 400;
  position: relative;
  border-radius: 50px;
  text-decoration: none;
  text-transform: uppercase;
  color: var(--blue2-color);
  padding: 8px 20px!important;
  background-color: transparent;
  border: 1px solid var(--blue2-color);
  font-family: "Montserrat", sans-serif;
}
.button-transparent:hover{
  color: var(--blue-color);
}
.button-transparent2{
  font-size: 1em;
  font-weight: 400;
  position: relative;
  border-radius: 50px;
  text-decoration: none;
  text-transform: uppercase;
  color: var(--blue3-color);
  padding: 8px 20px!important;
  background-color: transparent;
  border: 1px solid var(--blue3-color);
  font-family: "Montserrat", sans-serif;
}
.button-transparent3{
  font-size: 1em;
  font-weight: 400;
  position: relative;
  border-radius: 50px;
  text-decoration: none;
  text-transform: uppercase;
  color: var(--white-color);
  padding: 8px 20px!important;
  background-color: transparent;
  border: 1px solid var(--white-color);
  font-family: "Montserrat", sans-serif;
  display: flex;
  justify-content: center;
  align-items: center;
}
.button-transparent3:hover{
  color: var(--white-color);
}
/*******   HOME  *******/

#video-banner {
   position: relative;
   width: 100%;
   z-index: -1;
 }

 #video-banner{
    z-index: 1;
    height: 80vh;
    object-fit: cover;
  }

#banner-home{
  height: 100VH;
  display: flex;
  margin-top: 160px;
  text-align: center;
  background-size: cover;
  flex-direction: column;
  justify-content: center;
}
.banner-home{
  margin-top: 160px;
}
#destination{
  padding: 50px;
}
#services{
  background-color: #F4F4F4;
  background-size: contain;
  background-repeat: no-repeat;
  padding: 50px;
  /*background-image: url('../images/shadow.png');*/
}
#services2{
  padding: 50px;
}
.circle{
  width: 40px;
}
.border-bottom{
  border-bottom: 1px solid #1e1e1e45;
}
#micro{
  padding: 50px;
}
.wrap{
  width:100%;
  height: 300px;
  position:relative;
  overflow:hidden;
  padding-top: 100px;
}
.slide-container{
  position:absolute;
  left:0;
  height:100%;
}
.slides{
  display:flex;
  flex:row;
  flex-wrap: nowrap;
  height:100%;
  margin:0;
  padding:0;
}
.animate{
  animation: moveSlideshow 10s linear infinite;
}
@keyframes moveSlideshow {
  100% {
    transform: translate3d(calc(-30% + 30vw), 0, 0);
  }
}
.slides li{
  display: block;
  box-sizing:border-box;
  width: 1350px;
  height: 100%;
  align-items: center;
  justify-content: center;
  text-align:center;
}
.slides li span{
  line-height:95px;
}
.grid{
  gap: 0;
  display: grid;
  grid-template-columns: 3fr 3fr 3fr;
}
.item{
  height: 900px;
  background-size: cover;
}
#brand{
  padding-top: 50px;
}
.wrap2{
  width:100%;
  height: 150px;
  position:relative;
  overflow:hidden;
  /*padding: 50px;*/
}
.slide-container2{
  position:absolute;
  left:0;
  height:100%;
}
.slides2{
  display:flex;
  flex:row;
  flex-wrap: nowrap;
  height:100%;
  margin:0;
  padding:0;
}
.animate2{
  animation: moveSlideshow2 10s linear infinite;
}
@keyframes moveSlideshow2 {
  100% {
    transform: translate3d(calc(-60% + 60vw), 0, 0);
  }
}
.li{
  display: flex;
  box-sizing:border-box;
  width: 250px;
  height: 100%;
  align-items: center;
  justify-content: center;
  text-align:center;
}
.icon-brand{
  width: 200px;
}
.icon-brand-s{
  width: 130px;
}
#cards{
  padding: 100px 20px;
}
#cards .card:hover{
  transform: translate3d(0px, -10px, 0px);
  box-shadow: rgba(72, 82, 153, 0.267) 15px 5px 10px;
  transition: 100ms linear;
  background-color: var(--blue2-color)!important;

}
.border-none{
  border: none;
}
.img-cards{
  height: 450px;
  background-size: cover;
  background-position: center;
}
#shop{
  padding: 0 20px 100px 20px;
  background-size: contain;
  background-repeat: no-repeat;
  background-image: url('../images/shadow.png');
}
.side-borders{
  border-left: 1px solid var(--blue3-color);
  border-right: 1px solid var(--blue3-color);
}
#shop .button-transparent2 {
  width: 123px;
  margin: 15px;
}
#shop .card{
  padding: 0px;
  border: 0.5px solid #7373734F;
  box-shadow: 5px 5px 10px #4852992e;
}
.img-producto{
  height: 250px;
  margin-top: 20px;
  background-size: cover;
  background-position: center;
  margin: 30px 20px 10px 20px;
}
#footer{
  padding: 50px 10px;
  background-color: var(--blue-color);
}
#footer a{
  text-decoration: none;
}
.logo-footer{
  width: 250px;
}
.cards-footer{
  width: 200px;
}
.mleft25{
  margin-left: 25px;
}

/*******   WORKOUT  *******/
#banner-workout{
  height: 70vh;
  display: flex;
  padding: 50px;
  margin-top: 100px;
  background-size: cover;
  flex-direction: column;
  justify-content: center;
}
#text-workout{
  padding: 50px;
}
#text-workout p{
  width: 65%;
}
#services-info{
  padding: 50px;
}
#services-info .card{
  border: none;
  --bs-card-border-width: 0px;
}
.accordion-workout .card-header {
  padding: 0;
  border-radius: 0px!important;
  background-color: transparent;
  border-bottom: none;
}
.card-header{
  border-bottom: none;
}
.accordion-workout .btn-collapse {
  padding: 20px;
}
.accordion-workout .accordion-button::after {
  width: 30px;
  height: 30px;
  background-size: contain;
  background-image: url("../images/icons/down.svg");
}
.accordion-workout .accordion-button:not(.collapsed)::after {
  background-image: url("../images/icons/up.svg");
}

.accordion-icon{
  position: absolute;
  right: 0;
}

.accordion-icon::before {
  content: "+";
  font-size: 20px;
  font-weight: 600;
  transition: 0.3s ease;

}

.accordion-button:not(.collapsed) .accordion-icon::before {
  content: "−";
}

.span1{
  width: 50%;
  text-transform: uppercase;
}
.span2{
  width: 40%;
  display: flex;
  color: #1E1E1EB2;
  justify-content: end;
}
.accordion-workout .btn-collapse:hover{
  background-color: #8BA1C91A;
}
.accordion-workout .accordion-button:not(.collapsed) {
  background-color: #8BA1C91A;
}
.f-right{
  float: right;
}

/*******   NOSOTROS  *******/
#banner-nosotros{

  display: flex;
  margin-top: 100px;
  position: relative;
  align-items: center;
  background-size: cover;
  justify-content: center;
  background-blend-mode: multiply;
  background-size: cover;
  padding-top: 100px;
  padding-bottom: 100px;
}
#text-nosotros{
  padding: 100px;
}
#text-nosotros .p{
  width: 70%;
  margin: 0 auto;
  text-align: center;
  padding-bottom: 30px;
}
.grid-nosotros{
  gap: 30px;
  display: grid;
  margin-top: 40px;
  grid-template-columns: 1fr 1fr 1fr;
}
#team{
  padding: 100px 50px;
  background-color: #f4f4f4;
}
#team .p-text{
  width: 35%;
  margin: 0 auto;
  line-height: 30px;
  padding: 20px 0 70px 0;
  text-align: center;
}
.img-team{
  width: 200px;
  border-radius: 50px;
}
.grid-team{
  gap: 20px;
  display: grid;
  margin-top: 20px;
  grid-template-columns: 1fr 1fr;
}
#certificaciones{
  padding: 100px 50px;
}
.info-certificaciones{
  width: 45%;
  margin: 0 auto;
  line-height: 40px;
  padding: 10px 0 70px 0;
}
.img-cert{
  width: 100%;
}
.carousel-inner {
  text-align: center;
  background-color: #fff;
}
.complete{
  background-size: cover;
  height: 70vh;
}
#reviews{
  padding: 50px;
  background-color: #f4f4f4;
}
.item2{
  padding: 40px;
  background-color: #FFFFFF;
}
.comment{
  height: 130px;
}
.stars{
  margin-bottom: 20px;
  width: 130px!important;
}
.owl-theme .owl-dots, .owl-theme .owl-nav {
  text-align: end;
}
.owl-theme .owl-dots .owl-dot span {
  margin: 0;
  width: 100px;
  height: 2px;
  background: #CCC8C180;
}
.owl-theme .owl-dots .owl-dot.active span, .owl-theme .owl-dots .owl-dot:hover span {
  background: var(--blue-color);
}
.control{
  width: 20px;
}
.izq{
  transform: rotate(180deg);
}
/*******   EVIDENCE DE BEAUTÉ  *******/
#banner-evidence{
  height: 70vh;
  display: flex;
  padding: 50px;
  margin-top: 100px;
  background-size: cover;
  flex-direction: column;
  justify-content: center;
}
#text-evidence{
  padding: 100px 50px;
}
.info-evidence{
  width: 45%;
  margin: 0 auto;
  line-height: 40px;
  padding: 10px 0 70px 0;
}
.img-evidence{
  width: 70%;
}
.img-beaute{
  width: 70%;
}
.shop2 {
  padding: 50px!important;
  background-image: none!important;
}

/*******   TIENDA  *******/
#banner-tienda{
  height: 70vh;
  display: flex;
  padding: 50px;
  margin-top: 100px;
  background-size: cover;
  flex-direction: column;
  justify-content: center;
}
#tienda{
  padding: 50px;
  background-color: #F7F7F7;
}
#text-tienda{
  padding: 50px 20px 50px 100px;
}
#tienda .card{
  border: none;
  background-color: transparent;
}
.img-tienda{
  height: 300px;
  border-radius: 16px;
  background-size: cover;
  background-position: center;
}
.dark-transparent{
  color: #1e1e1e91;
}
.form-select {
  font-size: 14px;
  color: var(--blue2-color);
  font-family: 'Montserrat';
  font-weight: 600;
  border: 0.36px solid #77777791;
  width: 60%;
}

/*******   DETALLES  *******/
#detalles{
  background: #F7F7F7;
  padding: 250px 100px 100px 100px;
}
.carousel-control-prev-icon {
  background-image: url('../images/icons/prev.svg');
}
.carousel-control-next-icon {
  background-image: url('../images/icons/next.svg');
}
.accordion-detalles .card{
  border: none;
}
.accordion-detalles .card-body {
  background-color: #f7f7f7;
  font-size: 1.25em !important;
  font-family: "Montserrat", sans-serif;
}

.accordion-detalles .accordion-button::after {
  width: 15px;
  height: 15px;
  background-size: contain;
  background-image: url("../images/icons/Vector.svg");
}
.accordion-detalles .accordion-button:not(.collapsed)::after {
  transform: rotate(180deg);
  background-image: url("../images/icons/Vector.svg");
}
.accordion-detalles .card-header {
  padding-left: 0;
}
.accordion-detalles .accordion-button {
  padding: 15px 0;
}
.img-cantidad{
  width: 130px;
  margin-right: 30px;
}
.carousel-indicators li{
  width: 10px;
  height: 10px;
  margin-right: 10px;
  border-radius: 10px;
  background-color: #D9D9D9;
}
.carousel-indicators li.active{
  background-color: var(--blue-color);
}
.carousel-indicators {
  position: relative;
}
/*************************** RESPONSIVE ********************************/
@media (min-width: 1500px) {
  #banner-home .w70{
    width: 50%;
  }

  #destination .w70{
    width: 80%;
  }
  #services{
    padding: 50px 100px 50px 150px;
  }
  #services2{
    padding: 100px;
  }
  .info-services{
    padding-right: 150px;
  }
  #micro{
    padding: 100px 50px 80px 100px;
  }
  #shop{
    padding: 0 100px 100px 100px;
  }
  #shop .card{
    padding: 20px;
  }
  #shop .button-transparent2 {
    margin: 0;
  }
  #banner-workout{
    padding: 100px;
  }
  #text-workout{
    padding: 100px;
  }
  #services-info{
    padding: 0 100px;
  }
  #certificaciones .col-lg-7{
    padding-right: 100px;
  }
  .img-cert{
    width: 80%;
  }
  .shop2 {
    padding: 100px!important;
  }
  #tienda{
    padding: 50px 100px 100px 100px;
  }
  #text-tienda {
    padding: 70px 40px 70px 200px;
  }
  .img-tienda{
    height: 400px;
  }
  #footer{
    padding: 50px;
  }
}

@media (max-width: 992px) {
  body{
    font-size: 10px;
  }
  .fs-16 {
    font-size: 1.3em !important;
  }
  .fs-20 {
    font-size: 1.35em !important;
  }
  .fs-60 {
    font-size: 2.5em !important;
  }
  .fs-68 {
      font-size: 2.8em!important;
  }
  .fs-72 {
    font-size: 3.2em !important;
  }
  .fs-115 {
    font-size: 4.14em !important;
  }
  .ls-10 {
    letter-spacing: 8px;
  }
  .lh-45-xs.fs-80 {
    line-height: 45px;
  }
  .lh-80 {
      line-height: 45px;
  }
  .lh-100 {
    line-height: 70px;
  }
  .lg-pright0 {
    padding-right: 0px;
  }
  .lg-pleft0 {
    padding-left: 0px;
  }
  .lg-pleft10 {
      padding-left: 10px;
  }
  .lg-pleft15 {
    padding-left: 15px;
  }
  .lg-pleft20 {
    padding-left: 20px;
  }
  .lg-pright15 {
    padding-right: 15px;
  }
  .d-none-xs{
    display: none;
  }
  #header-wrap {
    position: relative;
    padding: 20px 20px 10px 20px;
  }
  .logo {
    width: 180px;
  }
  .icon-header {
    width: 17px;
    margin-right: 0;
    margin-left: 14px;
  }
  .navbar {
    margin: 0;
    padding: 0;
    width: 100%;
    display: flex;
    justify-content: end;
    background-color: transparent;
  }
  .navbar-toggler {
    border: none;
    padding: 0;
  }
  .navbar-toggler-icon-black {
    background-size: 22px;
    background-image: url("../images/icons/menu-black.svg");
  }
  .navbar-nav {
    padding-top: 50px;
    text-align: center;
    padding-bottom: 30px;
    background-color: var(--blue-color);
    margin: 10px 0;
  }
  .nav-link {
    margin-left: 0;
  }
  .nav-item .button-blue {
    width: 173px;
    margin: 0 auto;
 }
 #banner-home {
   height: 60vh;
   margin-top: 0;
   background-position: center;
 }
 .banner-home{
   margin-top: 0px;
 }
 #destination {
    padding: 20px;
  }
  #services {
    padding: 20px;
  }
  #services2 {
    padding: 20px 30px;
  }
  .circle {
    width: 30px;
  }
  .wrap {
    height: 200px;
    padding-top: 50px;
  }
  .grid {
    grid-template-columns: 3fr;
  }
  .item {
    height: 450px;
    background-position: center;
  }
  #cards {
    padding: 20px;
  }
  .side-borders {
    border-left: none;
    border-right: none;
    border-top: 1px solid var(--blue3-color);
    border-bottom: 1px solid var(--blue3-color);
  }
  #banner-nosotros {
    height: 50vh;
    margin-top: 0;
    background-position: center;
  }
  #text-nosotros {
    padding: 40px 0px;
  }
  .grid-nosotros {
    gap: 15px;
    margin-top: 0;
    padding: 0 20px;
    grid-template-columns: 1fr;
  }
  #team {
    padding: 40px 20px;
    background-color: #f4f4f4;
  }
  .grid-team {
    grid-template-columns: 1fr;
  }
  .img-team {
    width: 160px;
    padding-top: 20px;
  }
  #certificaciones {
    padding: 40px 20px;
  }
  .info-certificaciones {
    width: auto;
    margin: 0 auto;
    line-height: 27px;
    padding: 10px 20px;
  }
  #banner-workout {
    height: 35vh;
    margin-top: 0;
    background-position: center;
  }
  #text-workout {
    padding: 20px;
  }
  #text-workout p {
    width: auto;
  }
  #services-info {
    padding: 0 20px 20px 20px;
  }
  .accordion-workout .btn-collapse {
    padding: 20px 5px;
  }
  .span1 {
    font-size: 0.95em !important;
  }
  .span2 {
    width: 33%;
    font-size: 0.8em !important;
  }
  #banner-evidence {
    height: 35vh;
    margin-top: 0;
    background-position: center;
  }
  #text-evidence {
    padding: 20px;
  }
  .lh-35 {
    line-height: 30px;
  }
  .img-evidence {
    width: 50%;
  }
  .img-beaute {
    width: 100%;
  }
  .shop2 {
    padding: 0 20px!important;
    background-image: none!important;
  }
  #text-tienda {
    padding: 20px;
  }
  #tienda {
    padding: 20px;
  }
  .img-tienda {
    height: 190px;
  }
  #detalles {
    padding: 20px;
  }
  #team .p-text {
    width: auto;
    margin: 0 auto;
    line-height: 30px;
    padding: 10px 0 20px 0;
    text-align: center;
  }
  .complete {
    height: 30vh;
  }
  #reviews {
    padding: 20px;
  }
  .owl-theme .owl-dots .owl-dot span {
    width: 15px;
  }
  .order-xs-1{
    order: 1;
  }
  .order-xs-2{
    order: 2;
  }
  .text-center-xs{
    text-align: center;
  }
  .align-items-start-xs{
    align-items: start!important;
  }
  .col-xs-1 {
    flex: 0 0 auto;
    width: 8.33333333%;
  }
  .col-xs-4 {
    flex: 0 0 auto;
    width: 33.33333333%;
  }
  .col-xs-6 {
    flex: 0 0 auto;
    width: 50%;
  }
  .col-xs-11 {
    flex: 0 0 auto;
    width: 91.66666667%;
}
}



:root{
  --b: #B9C9FF;          /* border */
  --txt: #8FA2D9;        /* text */
  --blue: #4E6FCD;       /* active/hover bg */
  --shadow: rgba(78,111,205,.22);
  --h: 58px;             /* pill height */
  --r: 999px;            /* radius */
  --px: 26px;            /* padding x */
  --overlap: 24px;       /* how much each pill overlaps the previous one */
  --stroke: 1px;
}

/* Row that allows overlap */
.stack-pills__row{
  display: flex;
  align-items: stretch;
  flex-wrap: nowrap;
  gap: 0;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  padding: 0;
  margin: 0 auto;
  width: fit-content;
}
.stack-pills__row::-webkit-scrollbar{ display:none; }
.stack-pills__row{ scrollbar-width:none; }

/* Base pill */
.stack-pill{
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: var(--h);
  padding: 0 var(--px);
  font-size: 16px;
  font-weight: 500;
  line-height: 1;
  white-space: nowrap;
  text-decoration: none;

  color: var(--txt);
  background: #fff;

  border: var(--stroke) solid var(--b);
  border-radius: var(--r);

  /* overlap: each pill (except the first) slides left under the previous one */
  margin-left: calc(var(--i) * var(--overlap) * -1);

  /* stacking: smaller --i should be on top */
  z-index: calc(100 - var(--i));

  transition: background-color .18s ease, color .18s ease, box-shadow .18s ease, border-color .18s ease;
}

.stack-pill:nth-child(n+2){
  padding: 0 62px 0;
  margin-left: -50px;
}

/* Hover (requested: full bg + white font) */
.stack-pill:hover{
  background: var(--blue);
  color: #fff;
  border-color: transparent;
  box-shadow: 0 10px 18px var(--shadow);

}

/* Active */
.stack-pill.is-active{
  background: var(--blue);
  color: #fff;
  border-color: transparent;
  box-shadow: 0 10px 18px var(--shadow);
}

/* Make the “cut” look cleaner where pills overlap:
   add a subtle inner white edge on the left side so the notch reads correctly. */
.stack-pill:not(:first-child)::before{
  content:"";
  position:absolute;
  left: -2px;
  top: 50%;
  transform: translateY(-50%);
  width: calc(var(--overlap) + 10px);
  height: calc(var(--h) - 10px);
  background: #fff;
  border-top-left-radius: var(--r);
  border-bottom-left-radius: var(--r);
  z-index: -1; /* sits behind the pill but cleans the overlap seam */
}

/* When active/hovered, that left “cleaner” should match the pill color */
.stack-pill.is-active::before{ background: var(--blue); }
.stack-pill:hover::before{ background: var(--blue); }

.container-start{
  margin-top:180px;
}
@media (max-width: 972px){
  :root{
    --h: 52px;
    --px: 20px;
    --overlap: 20px;
  }
  .stack-pill{ font-size: 15px; }
  .stack-pills__wrap{
    overflow-y: scroll;
  }
  .container-start{
    margin-top: 10px;
  }
}

.divider{
  border-top: thin solid #1E1E1E99;
}
.divider-bottom{
  border-bottom: thin solid #1E1E1E99;
}

.time-button {
  display: inline-block;
  padding: 8px 18px;
  background-color: #8FA9C6; /* soft blue-gray */
  color: #ffffff;
  font-size: 14px;
  font-weight: 500;
  border: none;
  border-radius: 999px; /* full pill shape */
  cursor: pointer;
  text-align: center;
  line-height: 1;
}
.woocommerce-product-gallery__image a>img{
  height: auto;
  width: 100%;
}
.woocommerce-product-gallery__trigger{
  display: none !important;
}
.product_meta{
  display: none;
}

.ca-carousel { position: relative; width: 100%; }
.ca-carousel__viewport { overflow: hidden; width: 100%; }
.ca-carousel__track { display: flex; transition: transform 350ms ease; will-change: transform; }
.ca-carousel__item { flex: 0 0 auto; } /* width will be injected by JS */

.ca-carousel__btn{
  display: none;
  position:absolute; top:50%; transform:translateY(-50%);
  z-index:2; border:0; cursor:pointer;
  background: rgba(0,0,0,.45); color:#fff;
  width:34px; height:34px; border-radius:999px;
}
.ca-carousel__btn--prev{ left:10px; }
.ca-carousel__btn--next{ right:10px; }

.ca-carousel__btn.is-disabled{ opacity:.35; pointer-events:none; }

.ca-carousel__viewport { cursor: grab; }
.ca-carousel__viewport:active { cursor: grabbing; }
.card{
  border: none;
}
