@import url('https://fonts.googleapis.com/css2?family=Quicksand:wght@300..700&display=swap');
/* common css */
:root{
    --white: #fff;
    --black: #000;

    --primary-color: #0CAF7A;
    --secondary-color: #1A1F1B;
}

* {
    margin: 0;
    padding: 0;
    text-decoration: none;
    list-style: none;
}

a:hover,
a:focus,
a:active {
    text-decoration: none;
}

figure,
ol,
p,
h1, h2, h3, h4,
ul {
    margin: 0;
    padding: 0;
}
a,small {
    transition: 0.3s linear;
    -webkit-transition: 0.3s linear;
    text-decoration: none;
}
body {
    font-family: "Quicksand", sans-serif;
    text-decoration: none;  
    display: flex;
    flex-direction: column;
}
html,body{
    height: 100%;
}
body.no-scroll {
  overflow: hidden;
}
img {
    max-width: 100%;
    height: auto;
}
.main-wrp {
  flex: 1 0 auto;
  display: flex;
  flex-direction: column;
  gap: 80px;
}
.footer{
    flex-shrink: 0;
}
/* END common css */

/* Back Button */
#backToTopBtn {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 99;
    border: none;
    outline: none;
    background-color: var(--primary-color);
    color: var(--white);
    cursor: pointer;
    font-size: 1.125rem;
    border-radius: 50%;
    width: 2.5rem;
    height: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.5s ease,transform 0.5s ease,background-color 0.3s ease-in-out
}

#backToTopBtn:hover {
    opacity: 0.5 !important;
    border: 1px solid var(--primary);
}

#backToTopBtn.show {
    display: flex;
    opacity: 1;
    transform: translateY(0)
}

#backToTopBtn svg {
    width: 1.25rem;
    height: 1.25rem;
    min-width: 1.25rem;
    min-height: 1.25rem;
    stroke-width: 2
}
/* End Back Button */

/* Buttons */
.btn{
    width: fit-content;
    border-radius: 32px;
    padding: 14px 30px;
    font-size: 1rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease-in-out;
}
.btn-primary {
    background: linear-gradient(93deg, #148265 9.22%, #4DCE98 87.64%);
    border: none;
}

.btn-primary:hover,
.btn-primary:focus-visible {
    background: linear-gradient(93deg, #0f6a50 9.22%, #3cb97f 87.64%);
    transform: translateY(-2px);
}

.btn-secondary {
    background: var(--secondary-color);
    border: 1px solid var(--secondary-color);
}

.btn-secondary:hover,
.btn-secondary:focus-visible {
    background: #121512;
    transform: translateY(-2px);
}

.btn-transparent-white {
    background: transparent;
    border: 1px solid var(--white);
    color: var(--white);
}

.btn-transparent-white:hover,
.btn-transparent-white:focus-visible {
    background: var(--white);
    transform: translateY(-2px);
    color: var(--black);
}

.btn-transparent-green {
    background: transparent;
    border: 1px solid var(--primary-color);
    color: var(--primary-color);
}

.btn-transparent-green:hover,
.btn-transparent-green:focus-visible {
    background: var(--primary-color);
    color: var(--white);
    transform: translateY(-2px);
}

/* END Buttons */

/* text */
h1{
    font-size: 68px;
    font-weight: 700;
    line-height: 70px; 
}
h2{
    font-size: 58px;
    font-weight: 700;
    line-height: 55px;
}
h3{
    font-size: 36px;
    font-weight: 700;
    line-height: 39px;
}
h4{
    font-size: 18px;
    font-weight: 400;}
p{
    font-size: 16px;
    font-weight: 400;
}
/* END text */

/* reveal */
.reveal {
    opacity: 0;
    transform: translateY(40px) scale(0.9);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
    will-change: opacity, transform;
}
.reveal.visible {
    opacity: 1;
    transform: translateY(0) scale(1);
}
/* END reveal */

/* Header */
.header-upper{
    border-radius: 0 0 32px 32px;
    background: #F3F5F9;
    padding: 12px 0;
}
.header-upper .container{
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.header-upper-right{
    display: flex;
    align-items: center;
    gap: 20px;
}
.header-upper-left{
    display: flex;
    align-items: center;
    gap: 20px;
}
.header-upper-right a{
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--black);
    font-weight: 700;
    font-size: 12px;
    transition: all .3s ease-in-out;
}
.header-upper-right a:hover{
    color: var(--primary-color);
}
.nav-logo img{
    width: 250px;
    height: 76px;
}
.header-lower{
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 0;
}
.nav-menu{
    display: flex;
    align-items: center;
    gap: 40px;
}
.nav-item{
    color: #000;
    font-size: 16px;
    font-weight: 500;
    transition: all .3s ease-in-out;
}
.nav-item.active,
.nav-item:hover{
    color: var(--primary-color);
}
.mobile-menu{ display: none;}
.hamburger-toggler{ display: none;}
/* END Header */

/* hero */
.hero-content{
    display: flex;
    flex-direction: column;
    justify-content: end;
    padding: 50px;
    gap: 30px;
    border-radius: 32px;
    color: var(--white);
    background: linear-gradient(132deg, #059271 0.83%, #55DD9F 100%);
    height: 100%;
}
.hero-content p{ font-size: 18px;}
.hero-content-wrp{
    display: flex;
    align-items: center;
    gap: 20px;
}
.hero-avatars-text{
    display: flex;
    flex-direction: column;
}
.hero-avatars-text span{
    font-size: 24px;
    font-weight: 700;
}
.hero-img{
    overflow: hidden;
    border-radius: 32px;
    height: 100%;
    width: 100%;
}
.hero-img img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 32px;
    transition: all 0.3s ease-in-out;
}
.hero-img img:hover{
    transform: scale(1.05);
}
.hero-avatars img{
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #FFF;
    margin-left: -15px;
    transition: all .3s ease-in-out;
}
.hero-avatars img:first-child{
    margin-left: 0;
}
.hero-avatars img:last-child{
    background: linear-gradient(132deg, #059271 0.83%, #55DD9F 100%);
}
/* END hero */

/* carousel */
.carousel{
    overflow: hidden;
    padding-bottom: 4rem;
}
.section-header{ 
    display: flex;
    flex-direction: column;
    gap: 1rem;
    text-align: center;
}
.carousel .container{
    display: flex;
    flex-direction: column;
    gap: 40px;
}
.carousel-card{
    background: #F3F5F9;
    border-radius: 32px;
    color: var(--black);
    display: flex;
    flex-direction: column;
    height: 100%;
    transition: all 0.3s ease-in-out;
}
.carousel-card:hover{
    background: var(--primary-color);
    color: var(--white);
    transform: translateY(-5px);
}
.carousel-card-img{
    aspect-ratio: 1/1;
    overflow: hidden;
    border-radius: 32px;
}
.carousel-card-img img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 32px;
    transition: all 0.3s ease-in-out;
}
.carousel-card-img img:hover{
    transform: scale(1.05);
}
.carousel-card-content{
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 15px;
    height: 100%;
    border-radius: 32px;
    flex: 1;
}
.carousel-card-content-top{
    display: flex;
    flex-direction: column;
    gap: 30px;
}
.carousel-card-badge{
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}
.carousel-card-badge span{
    color: var(--black);
    font-size: 12px;
    font-weight: 700;
    padding: 10px 20px;
    background: var(--white);
    border-radius: 32px;
}
.carousel-card p{
    font-size: 14px;
}
#carouselSlider .splide__track{
    clip-path: inset(-100vw -100vw -100vw 0);
    overflow: visible;
}
#carouselSlider .splide__arrows{
    position: relative;
    bottom: -2rem;
}
#carouselSlider .splide__arrow{
    background: transparent;
    border-radius: 32px;
    border: 1px solid #F3F5F9;
    height: 48px;
    width: 76px;
    transition: all 0.3s ease-in-out;
    opacity: 1;
}
#carouselSlider .splide__arrow:hover{ background: var(--primary-color);}
#carouselSlider .splide__arrow:hover img{   filter: brightness(0) invert(1);}
#carouselSlider .splide__arrow:disabled{  opacity: 0.5;}
#carouselSlider .splide__arrow:disabled img{  filter: unset;}
#carouselSlider .splide__arrow:disabled:hover{ background: transparent;}
#carouselSlider .splide__arrow--prev{  right: 5rem;  left: unset;}
#carouselSlider .splide__arrow--next{ right: 0;}
/* END carousel */

/* banner */
.banner-container{
    border-radius: 32px;
    background: #F3F5F9;
}
.banner-img{
    aspect-ratio: 16/9;
    overflow: hidden;
    border-radius: 32px;
    height: 100%;
    width: 100%;
}
.banner-img img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 32px;
    transition: all 0.3s ease-in-out;
}
.banner-img img:hover{
    transform: scale(1.05);
}
.banner-content{
    display: flex;
    flex-direction: column;
    gap: 30px;
    padding: 60px;
    color: var(--black);
}
.banner-content span{
    display: flex;
    flex-direction: column;
    gap: 10px;
} 
.banner-content span h3{
    font-size: 24px;
    font-weight: 700;
}
.banner-content h2{
    color: var(--primary-color);
}
/* END banner */

/* gear */
.gear{ overflow-x: clip; }
.gear .container{
    display: flex;
    flex-direction: column;
    gap: 40px;
}
.gear-card{ 
    position: relative;
    overflow: hidden;
    z-index: 2;
    border-radius: 32px;
    display: block;
    color: var(--black);
    transition: all .3s ease-in-out;
}
.gear-card-content{
    position: relative;
    z-index: 2;
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 20px;
    height: 100%;
}
.gear-card:hover{
    transform: translateY(-5px);
    background: var(--primary-color);
}
.gear-card button{
    transition: all .3s ease-in-out;
}
.gear-card:hover button{
    border: 1px solid var(--white);
    color: var(--white);
}
.gear-card:hover .gear-card-content-top > p{ color: var(--white);}
.gear-card-1{
    height: 100%;
    min-height: 620px;
    background: #FAF8F9;
}
.gear-card-1 img{
    position: absolute;
    top: -2rem;
    right: -15rem;
    max-width: 700px;
}
.gear-card-2 .gear-card-content{
    justify-content: flex-end;
}
.gear-card-content-top{
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: 60%;
}
.gear-card-content-top > p{
    font-size: 21px;
    font-weight: 700;
}
.gear-card-content-top > p span{
    font-size: 13px;
}
.gear-card .gear-card-content-top > p{
    color: var(--primary-color);
    transition: all .3s ease-in-out;
}
.gear-card .gear-card-content-top > p span{
    color: var(--black);
}
.gear-card-1 .gear-card-content{ padding-top: 80px;}
.gear-card-2 img{
    position: absolute;
    top: -2rem;
    right: -5rem;
    max-width: 350px;
}
.gear-card-2{
    background: #FAF8F9;
    height: 100%;
    min-height: 300px;
    transition: all .3s ease-in-out;
}
.gear-card-2.active{
    background: linear-gradient(148deg, #079372 2.08%, #53DB9E 69.37%);
    color: var(--white);
}
.gear-card-2.active .gear-card-content-top > p{ color: var(--white);}
#gearSlider .splide__track{
    clip-path: inset(-100vw -100vw -100vw 0);
    overflow: visible;
}
#gearSlider .splide__arrows{
    position: relative;
    bottom: -2rem;
}
#gearSlider .splide__arrow{
    background: transparent;
    border-radius: 32px;
    border: 1px solid #F3F5F9;
    height: 48px;
    width: 76px;
    transition: all 0.3s ease-in-out;
    opacity: 1;
}
#gearSlider .splide__arrow:hover{ background: var(--primary-color);}
#gearSlider .splide__arrow:hover img{ filter: brightness(0) invert(1); }
#gearSlider .splide__arrow:disabled{  opacity: 0.5;}
#gearSlider .splide__arrow:disabled img{  filter: unset;}
#gearSlider .splide__arrow:disabled:hover{ background: transparent;}
#gearSlider .splide__arrow--prev{  right: 5rem;  left: unset;}
#gearSlider .splide__arrow--next{ right: 0;}
/* END gear */

/* testimonials */
.testimonial-container{
    display: flex;
    flex-direction: column;
    gap: 40px;
    padding: 50px 0;
    border-radius: 24px;
    background: #F3F5F9;
}
.testimonial-card{
    background: var(--white);
    border-radius: 32px;
    padding: 30px 30px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    height: 100%;
}
.testimonial-stars{
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 10px 0;
}
.testimonial-stars img{
    width: 20px;
    height: 20px;
}
.testimonial-content{
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.testimonial-content span{
    font-size: 20px;
    font-weight: 700;
    line-height: 26px;
}
.testimonial-card small{
    font-size: 14px;
    font-weight: 700;
    line-height: 22px;
}
.testimonial-content p {
    display: -webkit-box;
    -webkit-line-clamp: 6;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}
.testimonial-btn-wrp{
    justify-self: end;
}
#testimonialSlider .splide__arrow--next{   right: -6rem;}
#testimonialSlider .splide__arrow--prev{   left: -6rem;}
#testimonialSlider .splide__arrow{
    background: var(--white);
    border-radius: 32px;
    border: 1px solid var(--white);
    height: 48px;
    width: 76px;
    transition: all 0.3s ease-in-out;
    opacity: 1;
}
#testimonialSlider .splide__arrow:hover{ background: var(--primary-color);}
#testimonialSlider .splide__arrow:hover img{ filter: brightness(0) invert(1);}
#testimonialSlider .splide__arrow:disabled{  opacity: 0.5;}
#testimonialSlider .splide__arrow:disabled img{  filter: unset;}
#testimonialSlider .splide__arrow:disabled:hover{ background: transparent;}
/* END testimonials */

/* stats */
.stats-container{
    border-radius: 32px;
    background: linear-gradient(105deg, #079472 0.97%, #53DB9E 61.57%);
}
.stats-content{
    padding: 60px;
    display: flex;
    flex-direction: column;
    gap: 40px;
    color: var(--white);
}
.stats-content-wrp{
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.stats-content-wrp span{
    font-size: 20px;
    font-weight: 700;
    line-height: 26px;
}
.stats-img{
    aspect-ratio: 4/3;
    overflow: hidden;
    border-radius: 32px;
    height: 100%;
    width: 100%;
}
.stats-img img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 32px;
    transition: all 0.3s ease-in-out;
}
.stats-img img:hover{
    transform: scale(1.05);
}
.stats-content-numbers{
    display: flex;
    justify-content: space-between;
    gap: 20px;
}
.stats-number{
    display: flex;
    flex-direction: column;
    text-align: center;
}
.stats-number span{
    font-size: 48px;
    font-weight: 700;
    display: block;
    transition: all 0.3s ease-in-out;
}
.open-time-wrp{
    display: flex;
    justify-content: space-between;
}
.open-time span{
    color: var(--white);
    text-align: center;
    font-size: 48px;
    font-weight: 700;
}
/* END stats */

/* blog */
.blog{
    overflow-x: clip;
    padding-bottom: 4rem;
}
.blog .container{
    display: flex;
    flex-direction: column;
    gap: 40px;
}
.blog-card{
    border-radius: 32px;
    background: #F3F5F9;
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: var(--black);
    height: 100%;
    transition: all .3s ease-in-out;
}
.blog-card:hover{
    transform: translateY(-5px);
    background: var(--primary-color);
    color: var(--white);
}
.blog-img{
    aspect-ratio: 4/3;
    overflow: hidden;
    border-radius: 32px;
}
.blog-img img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 32px;
    transition: all 0.3s ease-in-out;
}
.blog-img img:hover{
    transform: scale(1.05);
}
.blog-content{
    padding: 32px;
    display: flex;
    flex-direction: column;
    gap: 32px;
    flex: 1;
    justify-content: space-between;
}
.blog-content span{
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.blog-content h4{
    font-weight: 700;
}
.blog-content-wrp{
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.blog-btn{
    background: var(--primary-color);
    border-radius: 50%;
    border: 3px solid var(--white);
    width: 42px;
    height: 42px;
    position: relative;
    z-index: 1;
}
.blog-btn img{
    width: 28px;
    height: 28px;
    object-fit: cover;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
}
#blogSlider .splide__track{
    clip-path: inset(-100vw -100vw -100vw 0);
    overflow: visible;
}
#blogSlider .splide__arrows{
    position: relative;
    bottom: -2rem;
}
#blogSlider .splide__arrow{
    background: transparent;
    border-radius: 32px;
    border: 1px solid #F3F5F9;
    height: 48px;
    width: 76px;
    transition: all 0.3s ease-in-out;
    opacity: 1;
}
#blogSlider .splide__arrow:hover{ background: var(--primary-color)}
#blogSlider .splide__arrow:hover img{ filter: brightness(0) invert(1);}
#blogSlider .splide__arrow:disabled{  opacity: 0.5;}
#blogSlider .splide__arrow:disabled img{  filter: unset;}
#blogSlider .splide__arrow:disabled:hover{ background: transparent;}
#blogSlider .splide__arrow--prev{  right: 5rem;  left: unset;}
#blogSlider .splide__arrow--next{ right: 0;}
/* END blog */

/* footer */
.footer{
    margin-top: 80px;
    border-radius: 32px 32px 0 0;
    background: #F3F5F9;
    padding-top: 50px;
}
.footer .container{
    display: flex;
    flex-direction: column;
    gap: 40px;
}
.footer-left{
    display: flex;
    flex-direction: column;
    gap: 24px;
}
.footer-left p{
    font-weight: 500;
}
.footer-socials{
    display: flex;
    align-items: center;
    gap: 1rem;
}
.footer-logo img{
    width: 250px;
    height: 76px;
}
.footer-right{
    display: flex;
    flex-direction: column;
    gap: 40px;
}
.footer-contact{
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.footer-btn{
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 24px;
    font-weight: 700;
    color: var(--black);
    transition: all .3s ease-in-out;
}
.footer-btn:hover{
    color: var(--primary-color);
}
.footer-links{
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.footer-links-wrp{
    display: flex;
    gap: 30px;
}
.footer-links a{
    color: var(--black);
    font-size: 16px;
    font-weight: 700;
    line-height: 22px;
    transition: all .3s ease-in-out;
}
.footer-links a:hover{
    color: var(--primary-color);
}
.footer-bottom{
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 30px 0;
    border-top: 1px solid rgba(15, 0, 0, 0.20);
}
.footer-bottom p{
    font-size: 13px;
    font-weight: 400;
    line-height: 25px;
}
.footer-bottom p a{
    color: var(--black);
    transition: all 0.3s ease-in-out;
}
.footer-bottom p a:hover{
    color: var(--primary-color);
}
/* END footer */

/* strollers */
.strollers .container{
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.breadcrumb-content{
    display: flex;
    flex-direction: column;
    gap: 30px;
    padding: 60px;
    border-radius: 32px;
    background: linear-gradient(113deg, #069372 0%, #52DB9D 100%);
    color: var(--white);
}
.breadcrumb-url{
    display: flex;
    gap: 5px;
}
.breadcrumb-url > span,
.breadcrumb-url > a{
    color: rgba(255, 255, 255, 0.3);
    font-weight: 700;
    font-size: 16px;
    transition: all .3s ease-in-out;
}
.breadcrumb-url > a:last-child{
    color: rgba(255, 255, 255, 1);
}
.breadcrumb-wrp{
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.breadcrumb-wrp span{
    font-size: 24px;
    font-weight: 700;
}
.category-card{
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-radius: 32px;
    background: #F3F5F9;
    color: var(--black);
    height: 100%;
}
.category-card h4{
    padding: 20px;
    font-size: 20px;
    font-weight: 700;
}
.category-card-img {
    aspect-ratio: 1/1;
    overflow: hidden;
    border-radius: 32px;
    max-width: 120px;
    width: 100%;
}
.category-card-img img {
    width: 120px;
    height: 120px;
    object-fit: cover;
    display: block;
}
#categorySlider .splide__arrow--next{ right: -2rem;}
#categorySlider .splide__arrow--prev{ left: -2rem;}
#categorySlider .splide__arrow{
    background: var(--white);
    opacity: 1;
    width: 48px;
    height: 48px;
    transition: all .3s ease-in-out;
}
#categorySlider .splide__arrow:hover{ background: var(--primary-color);}
#categorySlider .splide__arrow:hover img{ filter: brightness(0) invert(1);}
#categorySlider .splide__arrow:disabled{  opacity: 0.5;}
#categorySlider .splide__arrow:disabled img{  filter: unset;}
#categorySlider .splide__arrow:disabled:hover{ background: transparent;}
    /* filter */
.filter-form-desktop {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 10px;
}
.filter-form-desktop > span{
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.filter-dropdown {
    position: relative;
}
.filter-button {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #333;
    padding: 6px 16px;
    font-size: 14px;
    border-radius: 24px;
    border: 1px solid #C7C8C9;
    cursor: pointer;
    background: transparent;
}
.sort-button{
    border: 1px solid transparent;
}
.filter-button svg {
    width: 12px;
    height: 12px;
    transition: transform 0.2s;
}
.filter-button.open svg {
    transform: rotate(180deg);
}
.dropdown-menu {
    position: absolute;
    top: 110%;
    left: 0;
    background: #ffffff;
    border: 1px solid #ccc;
    border-radius: 4px;
    padding: 0.5rem;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    z-index: 100;
    display: none;
    min-width: 180px;
}
.dropdown-menu.show {
    display: block;
}
.dropdown-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.25rem;
    font-size: 0.875rem;
    cursor: pointer;
}
.dropdown-item:last-child{
    margin-bottom: 0;
}
.dropdown-item input {
    accent-color: #333;
    cursor: pointer;
}
.sort-button .sort-label {
    font-weight: bold;
}
.search-input {
    width: 100%;
    padding: 0.25rem 0.5rem;
    margin-bottom: 0.5rem;
    font-size: 0.875rem;
    border: 1px solid #ccc;
    border-radius: 4px;
}
.reset-button {
    width: 100%;
    margin-top: 0.5rem;
    padding: 0.4rem 0.6rem;
    background-color: var(--primary-color);
    border: 1px solid var(--primary-color);
    color: var(--white);
    font-size: 0.85rem;
    border-radius: 4px;
    cursor: pointer;
}
.dropdown-item:focus, .dropdown-item:hover{
    background: transparent;
}
.dropdown-items {
    max-height: 150px;
    overflow-y: auto;
    padding-right: 0.25rem;
}
.dropdown-items::-webkit-scrollbar {
    width: 6px;
}
.dropdown-items::-webkit-scrollbar-track {
    background: #f0f0f0;
    border-radius: 4px;
}
.dropdown-items::-webkit-scrollbar-thumb {
    background-color: #999;
    border-radius: 4px;
}
.dropdown-item.active, .dropdown-item:active{
    background-color: transparent;
    color: #333;
}
#filterToggle{
    background: transparent;
    border: none;
}
    /* END filter */
.filter-form-mobile{
    align-items: center;
    justify-content: space-between;
}
.strollers .form-select selected{
    font-size: 14px;
    font-weight: 700;
    color: var(--black);
}
.stroller-card{
    display: flex;
    flex-direction: column;
    border-radius: 32px;
    border: 1px solid #F3F5F9;
    height: 100%;
}
.stroller-card-img{
    position: relative;
    overflow: hidden;
    border-radius: 32px;
    aspect-ratio: 1/1;
}
.stroller-card-img img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 32px;
    transition: all 0.3s ease-in-out;
}
.stroller-card-img img:hover{
    transform: scale(1.05);
}
.stroller-badge{
    position: absolute;
    top: 10px;
    left: 10px;
    border-radius: 32px;
    background: linear-gradient(95deg, #089573 10.46%, #51DA9C 84.15%);
    color: var(--white);
    padding: 10px 20px;
    font-size: 12px;
    font-weight: 700;
    z-index: 1;
}

.upcoming{
    background: linear-gradient(95deg, #FF7A00 10.46%, #FFC14D 84.15%);
}

.stroller-content{
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 20px;
    border-radius: 32px;
    background: #F3F5F9;
    padding: 30px;
    color: var(--black);
    height: 100%;
    flex: 1;
    transition: all .3s ease-in-out;
}
.stroller-content:hover{ background: var(--primary-color);}
.stroller-content .btn-transparent-green{ transition: all .3s ease-in-out;}
.stroller-content:hover .btn-transparent-green{ color: var(--white); border: 1px solid var(--white);}
.stroller-content > span > p{ transition: all .3 ease-in-out;}
.stroller-content:hover > span > p{ color: var(--white);}
.stroller-content > span{
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.stroller-content-title{
    display: flex;
    flex-direction: column;
}
.stroller-content-title h4{
    font-size: 24px;
    font-weight: 700;
}
.stroller-content-badges{
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}
.stroller-content-badges span{
    padding: 10px 20px;
    border-radius: 32px;
    background: var(--white);
    color: var(--black);
    font-size: 12px;
    font-weight: 700;
}
.stroller-content > span > p{
    font-size: 21px;
    font-weight: 700;
    color: var(--primary-color);
}
.stroller-content > span > p span{
    font-size: 13px;
    color: var(--black);
}
.stroller-content-btn-wrp{
    display: flex;
    align-items: center;
    gap: 10px;
}
.stroller-content-btn-wrp .btn{
    padding: 8px 20px;
    font-size: 16px;
    font-weight: 700;
}
.stroller-error{
    font-size: 1.25rem;
    font-weight: 700;
    text-align: center;
}
.btn-reset-btn{
    background: var(--primary-color);
    color: var(--white);
    padding: 6px 16px !important    ;
    font-size: 14px;
    font-weight: 500;
    transition: all .3s ease-in-out;
}
.btn-reset-btn:hover, .btn-reset-btn:focus{
    background: #088c61;
    color: var(--white);
}
/* END strollers */

/* detail stroller */
.detail-stroller .container{
    display: flex;
    flex-direction: column;
    gap: 40px;
}
.detail-stroller .breadcrumb-url{ padding-top: 20px;}
.detail-stroller .breadcrumb-url > span,
.detail-stroller .breadcrumb-url > a{
    color: rgba(0, 0, 0, 0.3);
    font-weight: 700;
    font-size: 16px;
}
.detail-stroller .breadcrumb-url > a:last-child{
    color: rgba(0, 0, 0, 1);
}
.stroller-img-big{
    position: relative;
    display: block;
    aspect-ratio: 1/1;
    overflow: hidden;
    border-radius: 32px;
}
.stroller-img-small img,
.stroller-img-big img{
    height: 100%;
    width: 100%;
    object-fit: contain;
    border-radius: 32px;
    transition: all .3s ease-in-out;
}
.stroller-img-small video{
    object-fit: cover;
}
.stroller-img-small img:hover,
.stroller-img-big img:hover{
    scale: 1.05;
}
.stroller-img-small{
    display: block;
    aspect-ratio: 1/1;
    border: 1px solid #F3F5F9;
    border-radius: 32px;
    overflow: hidden;
    padding: 10px;
}
.video-thumb {
  position: relative;
}

.video-thumb img {
  object-fit: cover;
  display: block;
}
.video-thumb::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  background: url('../images/thumb-remove.png') no-repeat center;
  background-size: contain; 
}
.detail-stroller-wrpper{
    display: flex;
    flex-direction: column;
    gap: 40px;
}
.detail-stroller-wrp{
    display: flex;
    flex-direction: column;
    border-radius: 32px;
    background: #F3F5F9;
}
.detail-stroller-content{
    display: flex;
    flex-direction: column;
    gap: 30px;
    padding: 30px;
}
.detail-stroller-content h2{
    font-size: 40px;
    font-weight: 700;
}
.detail-stroller-content-title,
.detail-stroller-content > span{
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.detail-stroller-price{
    color: var(--white);
    border-radius: 32px;
    padding: 30px;
    background: #0EB17C;
    display: flex;
    justify-content: space-between;
}
.stroller-price{
    color: #0EB17C;
    font-size: 21px;
    font-weight: 700;
}
.stroller-price span{
    color: #000;
    font-size: 13px;
    font-weight: 700;
}
.detail-stroller-content-title p a{
    color: var(--black);
    font-weight: 700;
    text-decoration: underline;
}
.custom-ul-list {
  list-style: none;
  padding-left: 0;
}
.custom-ul-list li {
  position: relative;
  padding-left: 2rem; 
  margin-bottom: 0.5rem;
}
.custom-ul-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 1.5rem;
  height: 1.5rem;
  background-image: url('../images/icons/check-ul.png'); 
  background-size: contain;
  background-repeat: no-repeat;
}
.accordion-button{
    color: var(--black);
    font-size: 32px;
    font-weight: 700;
    padding: 0;
}
.accordion-button:focus,
.accordion-button:not(.collapsed){
    background: transparent;
    color: var(--black);
    box-shadow: none;
    outline: none;
}
.accordion-body{
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 20px 0;
}
.accordion-body ul {
  list-style: none; 
  padding-left: 0;
  margin: 0;
}

.accordion-body ul li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 8px;
}

.accordion-body ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 4px;
  width: 18px;
  height: 18px;
  background-image: url('../images/icons/check-ul.png');
  background-size: contain;
  background-repeat: no-repeat;
}

.accordion-button::after{
    background-image: url('../images/icons/accordion-close.svg');
}
.accordion-button:not(.collapsed)::after{
    background-image: url('../images/icons/accordion-open.svg');
}
.accordion-item{
    border-bottom: 1px solid #F3F5F9;
    padding: 20px 0;
}
.stroller-select{
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.stroller-select p{
    font-weight: 700;
}
#returnDate,
#pickupDate{
    padding: 9px 16px;
    border-radius: 24px;
    border: 1px solid #C7C8C9;
    background: transparent;
    width: 100%;
    color: #333;
    font-size: 14px;
    font-weight: 500;
    line-height: 23px;
}
#returnDate:focus,
#pickupDate:focus{
    outline: none;
    box-shadow: none;
}
.daterangepicker.show-calendar .drp-buttons{
    display: flex !important;
    gap: 5px;
}
.daterangepicker .drp-buttons .btn .btn-primary,
.daterangepicker .drp-buttons .btn{
    margin-left: 0 !important;
    background: var(--primary-color) !important;
    color: var(--white) !important;
    border-radius: 4px !important;
}
.daterangepicker .drp-calendar.left{
    padding: .5rem !important;
}
.daterangepicker .drp-calendar.left .calendar-table{
    padding-right: 0 !important;
}
.daterangepicker td.active, .daterangepicker td.active:hover{
    background: var(--primary-color) !important;
}
/* END detail stroller */

/* similiar */
.similiar{
    overflow: hidden;
    padding-bottom: 4rem;
}
.similiar .container{
    display: flex;
    flex-direction: column;
    gap: 40px;
}
#similiarSlider .splide__arrows{
    position: relative;
    bottom: -2rem;
}
#similiarSlider .splide__arrow{
    background: transparent;
    border-radius: 32px;
    border: 1px solid #F3F5F9;
    height: 48px;
    width: 76px;
    transition: all 0.3s ease-in-out;
    opacity: 1;
}
#similiarSlider .splide__arrow:hover{ background: var(--primary-color);}
#similiarSlider .splide__arrow:hover img{ filter: brightness(0) invert(1);}
#similiarSlider .splide__arrow:disabled{  opacity: 0.5;}
#similiarSlider .splide__arrow:disabled img{  filter: unset;}
#similiarSlider .splide__arrow:disabled:hover{ background: transparent;}
#similiarSlider .splide__arrow--prev{  right: 5rem;  left: unset;}
#similiarSlider .splide__arrow--next{ right: 0;}
/* END similiar */

/* cart */
.cart .container{
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.cart-back{
    display: flex;
    align-items: center;
    gap: 1rem;
    padding-top: 20px;
}
.cart-back span{
    color: var(--black);
    font-size: 16px;
    font-weight: 700;
}
.cart-url{
    display: flex;
    align-items: center;
    gap: 20px;
}
.cart-url span,
.cart-link{
    color: rgba(0, 0, 0, 0.30);
    font-weight: 700;
    font-size: 1rem;
}
.cart-link.active{
    color: var(--black);
    font-size: 40px;
    font-weight: 700;
}
.order-summary{
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding: 30px;
    color: var(--white);
    border-radius: 32px;
    background: linear-gradient(108deg, #099574 1.01%, #50D99C 100%);
}
.order-summary-title{
    display: flex;
    align-items: center;
    gap: 1rem;
}
.order-summary-title span{
    font-size: 32px;
    font-weight: 700;
}
.order-summary-wrp{
    display: flex;
    flex-direction: column;
}
.order-summary-wrp span{
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.20);
}
.order-title{
    font-size: 1rem;
    font-weight: 500;
    line-height: 22px;
    width: 50%;
}
.order-price{
    font-size: 1rem;
    font-weight: 700;
    line-height: 22px;
}
.order-price-final{
    font-size: 32px;
    line-height: normal;
}
.order-title-total{ 
    font-weight: 700;
}
.order-summary .btn{ 
    width: 100%;
    justify-content: center;
}
.cart-card{
    display: flex;
    gap: 20px;
    padding: 24px;
    border-radius: 32px;
    background: #F3F5F9;
}
.cart-card-img{
    aspect-ratio: 1/1;
    overflow: hidden;
    border-radius: 32px;
    width: 120px;
    height: 120px;
}
.cart-card-img img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.cart-card-wrp{
    display: flex;
    flex: 1;
    flex-direction: column;
    justify-content: center;
    gap: .5rem;
}
.cart-card-upper{
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}
.cart-card-price,
.cart-card-upper > span{
    font-size: 24px;
    font-weight: 700;
}
.cart-card-lower{
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.cart-card-lower > span{
    display: flex;
    flex-direction: column;
}
.cart-content{
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.cart-delivery{
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.cart-delivery > span{
    margin: 10px 0;
    font-size: 32px;
    font-weight: 700;
}
.cart-delivery .form-check{
    padding: 24px;
    border-radius: 32px;
    background: #F3F5F9;
    display: flex;
    align-items: center;
    gap: 10px;
}
.cart-delivery .form-check-label{
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex: 1;
}
.cart-delivery .form-check-label p{
    font-weight: 700;
}
.cart-delivery .form-check .form-check-input{
    margin-left: 0;
    margin-top: 0;
}
.cart-delivery .form-check-input[type=radio]{
    background: transparent;
    width: 20px;
    height: 20px;
    border: 1px solid var(--black);
}
.cart-delivery .form-check-input:focus{
    outline: none;
    box-shadow: none;
}
.cart-delivery .form-check-input:checked{
    border: 1px solid var(--primary-color);
}
.cart-delivery .form-check-input:checked[type=radio]{
    background-image: url('../images/icons/circle-radio.svg');
    background-repeat: no-repeat;
    background-position: center;
}
#thrashBin svg{
    transition: all .2s ease-in-out;
}
#thrashBin svg:hover {
      stroke: red;
}

/* END cart */

/* order information */
.order-information-form{
    padding: 30px;
    border-radius: 32px;
    background: #F3F5F9;

    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.order-information-form .form-title{
    font-size: 24px;
    font-weight: 700;
}
.order-information-form .form-group{
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.order-information-form .form-group p{
    font-size: 16px;
    font-weight: 700;
    line-height: 25px;
}
.order-information-form .form-group input{
    padding: 16px;
    border-radius: 16px;
    background: #FFF;
    border: 1px solid var(--white);
}
.order-information-form .form-check-input{
    width: 24px;
    height: 24px;
    border: 1px solid var(--white);
    margin-top: 0;
}
.order-information-form .form-group input:focus-within,
.order-information-form .form-check-input:focus{
    outline: none;
    box-shadow: none;
}
.order-information-form .form-check-input:checked {
    background-color: var(--primary-color); 
    border-color: var(--primary-color);
}
.order-information-form .form-check-label{
    font-size: 14px;
    font-weight: 500;
    line-height: 24px;
    padding-left: .5rem;
}
.order-information-form .form-check-label a{
    text-decoration: underline;
    color: var(--black);
}
/* END order information */

/* detail blog */
.detail-blog .container{
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.detail-blog-wrp{
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding-top: 20px;
}
.detail-blog-wrp-img{
    aspect-ratio: 16/9;
    overflow: hidden;
    border-radius: 32px;
}
.detail-blog-wrp-img img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    overflow: hidden;
    border-radius: 32px;
}
.detail-blog-wrp p{ font-weight: 700;}
.detail-blog-content{ 
    display: flex; 
    flex-direction: column; 
    gap: 20px;
}
.detail-blog-content ul {
    list-style: none; 
    padding-left: 0; 
}
.detail-blog-content ul li {
    position: relative;
    margin-bottom: 0.5rem;
    padding-left: 1.75rem;
}
.detail-blog-content ul li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 24px;
    height: 24px;
    background: url('../images/icons/check-ul.svg') no-repeat center;
    background-size: contain;
}
.detail-blog-content ol {
    counter-reset: item;
    padding-left: 0;
}

.detail-blog-content ol li {
    list-style: none;
    position: relative;
    margin-bottom: 0.5rem;
    padding-left: 1.75rem;
}

.detail-blog-content ol li::before {
    counter-increment: item;
    content: counter(item) ".";
    position: absolute;
    left: 0;
    top: 0;
    width: 24px;
    height: 24px;
    line-height: 24px;
    text-align: center;
    color: var(--primary-color);
    font-weight: 700;
    font-size: 18px;
}
/* END detail blog */

/* breadcrumb */
.breadcrumb .container{
    display: flex;
    flex-direction: column;
    gap: 40px;
}
.breadcrumb-container{
    padding: 60px;
    border-radius: 32px;
    background: #F3F5F9;
    display: flex;
    flex-direction: column;
    gap: 30px;
}
.breadcrumb .breadcrumb-url{ padding-top: 20px;}
.breadcrumb .breadcrumb-url > span,
.breadcrumb .breadcrumb-url > a{
    color: rgba(0, 0, 0, 0.3);
    font-weight: 700;
    font-size: 16px;
}
.breadcrumb .breadcrumb-url > a:last-child{
    color: rgba(0, 0, 0, 1);
}
.breadcrumb-content-2{
    display: flex;
    flex-direction: column;
}
.breadcrumb-content-2 span{
    display: flex;
    flex-direction: column;
    gap: 10px;
    text-align: center;
}
/* END breadcrumb */

/* faq */
.faq-content{
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.faq-question{
    display: flex;
    flex-direction: column;
    gap: 20px;
    border-bottom: 1px solid #F3F5F9;
    padding-bottom: 20px;
}
.faq-question span{
    display: flex;
    flex-direction: column;
    gap: 10px;
}
/* END faq */

/* contact form */
.contact-form-wrp{
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.contact-form{
    padding: 30px;
    border-radius: 32px;
    background: #F3F5F9;
}
.form-group{
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.form-group textarea,
.form-group input{
    border-radius: 16px;
    background: #FFF;
    padding: 16px;
    color: #0D0D0D;
    font-size: 16px;
    font-weight: 400;
    line-height: 25px;
    border: 1px solid var(--white);
}
.form-group textarea:focus,
.form-group input:focus,
.form-group textarea:focus-within,
.form-group input:focus-within,
.form-group textarea:focus-visible,
.form-group input:focus-visible{
    outline: none;
    border: 1px solid var(--white);
}
.form-check-input:checked{
    background-color: var(--primary-color);
    border: 1px solid var(--primary-color);
}
.form-check-input:focus{
    outline: none;
    box-shadow: none;
    border-color: var(--white);
}
.form-check-label a{
    font-weight: 700;
    text-decoration: underline;
    transition: all .3s ease-in-out;
    color: var(--black);
}
.form-check-label a:hover{
    color: var(--primary-color);
}
.alert-success{
    background: var(--white);
    border: 1px solid var(--white);
    color: var(--black);
}
.form-group label{
    font-weight: 700;
}
/* END contact form */

/* contact */
.contact-card{
    border-radius: 32px;
    background: var(--white);
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: .5rem;
    height: 100%;
    transition: all .3s ease-in-out;
}
.contact-card:hover{
    transform: translateY(-2px);
}
.contact-card a{
    font-weight: 700;
    font-size: 24px;
    color: var(--black);
    transition: all .3s ease-in-out;
}
.contact-card a:hover{ color: var(--primary-color);}
.about-img{
    aspect-ratio: 5/4;
    border-radius: 32px;
    overflow: hidden;
    height: 100%;
    width: 100%;
}
.about-img img{
    height: 100%;
    width: 100%;
    object-fit: cover;
    border-radius: 32px;
}
.about-content{
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
    gap: 20px;
    padding: 0 30px;
}
.about-content h4{
    font-size: 20px;
    font-weight: 700;
    line-height: 26px; 
}
.about-content span{
    display: flex;
    flex-direction: column;
    gap: 10px;
}
/* END contact */

/* how */
.how-steps, .how-cards, .how-wrp,
.how-content{
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.how-img{
    aspect-ratio: 16/8;
    border-radius: 24px;
    overflow: hidden;
}
.how-img img{
    height: 100%;
    width: 100%;
    border-radius: 24px;
    object-fit: cover;
    overflow: hidden;
}
.how-steps-item{
    display: flex;
    flex-direction: column;
}
.how-steps-item small{
    font-size: 12px;
    font-weight: 700;
    line-height: 24px;
}
.how-card{
    border-radius: 32px;
    background: #F3F5F9;
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 30px;
}
.how-card h3{
    font-size: 20px;
    font-weight: 700;
    line-height: 26px;
}
.how-banner{
    border-radius: 32px;
    background: #F3F5F9;
    padding: 30px;
}
.how-banner h4{
    color: var(--black);
    font-size: 20px;
    font-weight: 700;
    line-height: 26px;
}
.how-banner h4 a{
    color: var(--black);
    text-decoration: underline;
    transition: all .3s ease-in-out;
}
.how-banner h4 a:hover{
    color: var(--primary-color);
}
.how-content h2{
    font-size: 32px;
    font-weight: 700;
    line-height: 32px;
}
/* END how */

/* data info */
.data-info-content h2 {
  font-size: 2rem;
  font-weight: 700;
}

.data-info-content h3 {
  font-size: 1.5rem;
  font-weight: 600;
}

.data-info-content h4 {
  font-size: 1.25rem;
  font-weight: 500;
}

.data-info-content ul {
  list-style: none; 
  padding-left: 0;
}

.data-info-content ul li {
  position: relative;
  padding-left: 2rem; 
  margin-bottom: 0.5rem;
}

.data-info-content ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.4rem;
  width: 1rem;
  height: 1rem;
  background-image: url('../images/icons/check-ul.png'); 
  background-size: contain;
  background-repeat: no-repeat;
}
.data-info-content{
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.data-info-content a{
    color: var(--primary-color);
}
/* END data info */

/* document-card */
.document-card{
    display: flex;
    flex-direction: column;
    gap: 30px;
    padding: 30px;
    height: 100%;
    justify-content: space-between;

    border-radius: 32px;
    background: #F3F5F9;
    transition: all .3s ease-in-out;
    
    color: var(--black);
}
.document-card:hover{
    transform: translateY(-5px);
    background: var(--primary-color);
    color: var(--white);
}
.document-card:hover .btn-transparent-green{
    border: 1px solid var(--white);
    color: var(--white);
}
.document-card figure img{
    width: 48px;
    height: 48px;
    transition: all .3s ease-in-out;
}
.document-card:hover figure img{
    filter: brightness(0) invert(1);
}
.document-card-content{
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.document-card-content p{
    opacity: .7;
    font-weight: 600;
}
/* END document-card */

/* ads */
.adds .container{
    display: flex;
    flex-direction: column;
    gap: 40px;
}
.adds-card{
    aspect-ratio: 16/10;
    overflow: hidden;
    border-radius: 32px;
}
.adds-card img{
    height: 100%;
    width: 100%;
    object-fit: cover;
    border-radius: 32px;
    transition: all .3s ease-in-out;
}
.adds-card img:hover{
    scale: 1.05;
}
/* END ads */