:root {
    --primary-color: #93338E;
    --primary-dark-color: #663171;
    --primary-light-color: #EDE9F4;
    --secondary-color: #E53F71;
    --grey-color: #7780A0;
    --grey-light-color: #F3F5F9;
    --black-color: #3D3357;
    --white-color: #FFFFFF;
}

.product h1,
.merchant h1,
.testimoni h1,
.special-offer h1 {
    font-family: 'Cookie-Regular';
    /* font-size: 50px; */
    color: var(--primary-dark-color);
    font-weight: bold;
}

.product .nav-link {
    font-size: 13px;
    padding: 10px 26px;
    color: var(--grey-color);
    text-wrap: nowrap;
}

.product .nav-pills .nav-link.active,
.product .nav-pills .show>.nav-link {
    background-color: var(--primary-color);
    color: var(--white-color);
}

.product .nav-pills .nav-link {
    border-radius: 50px;
}

.product .card {
    background-color: var(--light-grey-color);
    border-radius: 20px;
}

.product img {
    width: 100%;
    /* height: 165px; */
    object-fit: cover;
}

.product-detail .img-product img {
    width: 100%;
    /* height: 430px; */
    height: 100%;
    object-fit: cover;
    border-radius: 30px;
}

.merchant .img-merchant img {
    width: 100%;
    /* height: 63px; */
    object-fit: cover;
}

.testimoni .card {
    background-color: #F3F5F7;
    border: 0;
    border-radius: 30px;
}

.testimoni .profile-img img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 50px;
}

.testimoni .card-testimoni {
    width: 580px;
    height: 350px;
    background-color: var(--primary-color);
    border-radius: 40px;
    padding: 50px;
}


.testimoni .slick-slide {
    margin: 10px
}

.testimoni .slick-prev:before,
.testimoni .slick-next:before {
    font-family: 'slick';
    font-size: 20px;
    line-height: 1;
    opacity: .75;
    color: black;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.testimoni .items {
    width: 90%;
    margin: 0px auto;
}

.media iframe,
.media-content {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    border: 0;
    border-radius: inherit;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: 50% 50%;
    background-color: rgba(0, 0, 0, 0);
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center
}

.media-content:before {
    content: '';
    position: absolute;
    height: 10%;
    width: 90%;
    left: 5%;
    bottom: 0;
    background: inherit;
    background-position-y: 100%;
    filter: blur(10px)
}

.circle .media-content:before {
    width: 40%;
    left: 30%
}


.cta-info .btn-get-started {
    background-color: var(--secondary-color);
    height: 54px;
    font-size: 16px;
    color: var(--white-color);
}

.btn-star i {
    font-size: 15px;
}

.btn-number {
    background-color: #EEF0F4;
    border-radius: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 30px;
    height: 30px;
}

.btn-number i {
    font-size: 18px;
}

.btn-number:hover {
    background-color: var(--white-color);
    border: 1px solid #E8E8E8;
}

.input-number {
    /* background-color: var(--light-grey-color); */
    border: 0;
    font-weight: bold;
    color: var(--black-color);
    text-align: center;
    padding: 0;
}

.input-number:focus-visible {
    outline: none;
}

.product-detail .img-thumb {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    /* gap: 2rem; */
}

.product-detail .img-btn {
    display: block;
    cursor: pointer;
    background: none;
    border: none;
    border-radius: 10%;
    transition: all 0.3s;
    position: relative;
}

.product-detail .img-btn::after {
    content: "";
    max-width: 100%;
    height: 100%;
    background-color: var(--white-color);
    border-radius: 10%;
    border: 3px solid transparent;
    margin: auto;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    opacity: 0;
}

.product-detail .img-btn:hover {
    background-color: var(--primary-color);
}

.product-detail .img-product-thumb {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10%;
    border: 3px solid transparent;
    transition: all 0.3s;
    transform-origin: bottom;
}

.product-desc h2 {
    font-family: 'Cookie-Regular';
    /* font-size: 50px; */
    color: var(--primary-dark-color);
    font-weight: bold;
}

.about-us .jumbotron {
    background-image: url('../img/banner-about-us.jpg');
    height: 500px;
    width: 100%;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: bottom;
    display: flex;
    justify-content: center;
    align-items: center;
}

.about-us .jumbotron h1,
.contact-us .jumbotron h1 {
    font-family: 'Cookie-Regular';
    /* font-size: 50px; */
    color: var(--white-color);
    font-weight: bold;

}

.about-us .content img {
    height: 400px;
    width: 100%;
    object-fit: cover;
    border-radius: 30px;
}

.about-us .content h1,
.contact-us .content h1 {
    font-family: 'Cookie-Regular';
    /* font-size: 50px; */
    color: var(--primary-dark-color);
    font-weight: bold;
}

.special-offer .btn-shop img {
    width: 100px;
    height: 100px;
}


.contact-us .jumbotron {
    background-image: url('../img/banner-contact-us.jpg');
    height: 500px;
    width: 100%;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.contact-us .jumbotron::before {
    content: "";
    background-color: #00000052;
    width: 100%;
    height: 100%;
    position: absolute;

}