/* 
** common
*/
a {
    transition: all 0.4s ease;
}

body .btn-primary {
    background-color: #4C65FE;
    padding: 0.75rem 1rem;
    border-radius: 7px;
    font-weight: 700;
    font-size: 18px;
    text-transform: initial;
}

body .btn-primary:hover {
    background-color: #1ABC7F;
}

/* 
** header
*/
#header .header-top .header-top-right {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 1.5rem;
    font-size: 14px;
}

#header .header-top a {
    color: #4c65fe;
    text-decoration: none;
    font-weight: 700;
}

#header .header-top a:hover {
    color: #1abc7f;
    text-decoration: none;
}

@media screen and (max-width: 600px) {
    #header .header-nav #menu-icon {
        display: none !important;
    }

    #header .header-nav .cart-preview.active {
        background: #4C65FE;
    }

    #header .header-top {
        display: none !important;
    }

    div#_mobile_logo {
        padding-left: 15px;
        max-width: 180px;
    }
}




/* 
** hero text
*/

#index #custom-text {
    background-color: transparent;
}

#index #custom-text h1 {
    font-size: 2rem;
    margin: 0 0 2rem;
    line-height: 1.5;
}

#index #custom-text p {
    font-size: 1rem;
}

#index #custom-text p:last-of-type {
    margin-bottom: 0;
}

@media screen and (max-width: 991px) {
    #index #custom-text h1 {
        font-size: 1.75rem;
        margin: 0 0 2rem;
    }

    #index #custom-text {
        padding: 2rem 0;
        margin: 0;
    }
}

@media screen and (max-width: 600px) {
    #index #custom-text h1 {
        font-size: 1.5rem;
        margin: 0 0 1rem;
    }
}






/* 
** featured products
*/

#index .featured-products {
    padding: 2.5rem 0 3rem;
}

#index .featured-products .products {
    justify-content: center;
    align-items: stretch;
    gap: 24px;
}

.featured-products .products .product article {
    border: 2px solid #6369FB;
    background: #fff;
    border-radius: 15px;
    height: 100%;
    transition: all 0.6s ease;
}

.featured-products .products .product article:hover {
    box-shadow: 0 0 24px rgb(0 0 0 / 15%);
    border-color: #1ABC7F;
}

.featured-products .products .product-miniature .thumbnail-container {
    overflow: unset;
    margin: 0;
    border-radius: 20px;
}

.featured-products .products .product-miniature .product-description {
    padding: 2.5rem 1.5rem;
    border-radius: 20px;
}

#index .featured-products .products .thumbnail-top {
    display: none;
}

.featured-products .products .product-miniature .product-title,
.featured-products .products .product-miniature .product-title a {
    font-size: 1.75rem;
    font-weight: 700;
    color: #000;
    font-family: "Manrope", sans-serif;
}

.featured-products .products .product-miniature .product-title a {
    cursor: none;
    pointer-events: none;
}

.featured-products .products .product-price-and-shipping {
    margin: 2.5rem 0 0;
}

.featured-products .products .product-price-and-shipping span.price {
    color: #6369FB;
    font-size: 2.5rem;
    font-weight: 700;
}

.featured-products .products .product-price-and-shipping span.price-note {
    color: #3A5361;
    font-weight: 400;
}

.featured-products .products .amount-saved {
    color: #1ABC7F;
    text-align: center;
    margin: 1.5rem 0 0;
    font-weight: 700;
}

.featured-products .products .product-summary {
    margin: 2rem 0 0;
}

.product-summary ul li {
    position: relative;
    padding: 0 0 0 30px;
    line-height: 1.5;
}

.product-summary ul li+li {
    margin-top: 15px;
}

.product-summary ul li::before {
    content: "";
    width: 24px;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    background: url(../img/tick.jpg) no-repeat left 5px;
    background-size: 16px auto;
}

.featured-products .products span.product-label {
    background: #1ABC7F;
    color: #fff;
    padding: 15px;
    border-radius: 25px;
    line-height: 1;
    font-weight: 700;
    font-size: 14px;
    position: absolute;
    right: 24px;
    top: -24px;
    z-index: 5;
}

.featured-products .products .buy-now-btn {
    background: #4C65FE;
    text-transform: inherit;
    width: 100%;
    margin: 2rem 0 0;
    padding: 0.75rem 1rem;
    border-radius: 7px;
    font-weight: 700;
    font-size: 18px;
}

.featured-products .products .buy-now-btn:hover {
    background: #1ABC7F;
}


@media screen and (max-width: 991px) {
    #index .featured-products .products {
        gap: 0;
    }
}


@media screen and (max-width: 600px) {
    #index .featured-products {
        padding: 1.5rem 0;
    }

    .featured-products .products .product-miniature .product-description {
        padding: 1.5rem;
    }

    #index .featured-products .products {
        gap: 3rem 0;
    }


}



/* 
** cms pages
*/
#cms div#content-wrapper strong {
    color: #000000;
    font-weight: 700;
}



/* 
** account page
*/
body#authentication div#content-wrapper a, 
a#back-to-login, 
section.register-form a {
    color: #4C65FE;
}

body#authentication div#content-wrapper a:hover, 
a#back-to-login:hover, 
section.register-form a:hover {
    color: #1ABC7F;
}

body#authentication div#content-wrapper button#submit-login {
    width: 290px;
}

.forgotten-password .form-fields .center-email-fields button {
    padding: 10px 20px;
    line-height: 1;
    margin-left: 10px;
}

@media screen and (max-width: 600px) {
    body#authentication div#content-wrapper button#submit-login {
        width: 100%;
    }
}







/* 
** cart page
*/
.cart-grid .card-block h1 {
    text-transform: inherit;
    font-weight: 700;
}

.cart-item .product-line-grid {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.cart-item .product-line-grid .product-line-grid-left {
    display: none;
}

.product-line-grid-body .product-line-info.product-price {
    color: #4C65FE;
}

@media screen and (min-width: 980px) {
    #cart div#content-wrapper {
        min-height: 600px;
    }
}







/* 
** checkout page
*/
body#checkout #header .header-nav .logo {
    width: auto;
    max-height: 32px !important;
}

body#checkout section.checkout-step .step-title {
    font-weight: 700;
    text-transform: initial;
}

body#checkout a:not(.btn) {
    color: #4C65FE;
}

body#checkout a:not(.btn):hover {
    color: #1ABC7F;
}

body#checkout .cart-summary-products ul.media-list .media-left {
    display: none;
}

body#checkout .cart-summary-products .product-price {
    color: #4C65FE;
    font-weight: 700;
}



/* 
** footer
*/
#footer {
    padding: 1.5rem 0;
}

#footer .footer-container {
    padding-top: 0;
}

footer#footer>.container {
    display: none;
}

#footer .footer-container>.container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.footer-container>.container>.row:nth-child(2) {
    display: none;
}

.footer-container .links,
.footer-container .links .wrapper {
    float: none;
    width: auto;
}

#footer .footer-container .links p.h3 {
    display: none;
}

#footer .footer-container .links ul#footer_sub_menu_2 {
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-wrap: nowrap;
    gap: 0;
}

#footer .footer-container .links ul#footer_sub_menu_2 li {
    margin: 0;
    line-height: 1;
}

#footer .footer-container .links ul#footer_sub_menu_2 li+li::before {
    content: "|";
    padding: 0 5px;
    line-height: 1;
    color: #000000;
}

#footer .footer-container .links ul#footer_sub_menu_2 li a {
    color: #4c65fe;
    text-decoration: none;
    font-weight: 500;
    font-size: 13px;
}

#footer .footer-container .links ul#footer_sub_menu_2 li a:hover {
    color: #1ABC7F;
}

.footer-container li a:hover {
    color: #1abc7f;
    text-decoration: none;
}

.footer-container>.container>.row:last-child {
    margin-left: auto;
}

.footer-container>.container>.row:last-child p {
    margin: 0;
}

.footer-container>.container>.row:last-child p .copyright-text {
    font-size: 12px;
}


@media screen and (max-width: 991px) {
    #footer .footer-container>.container {
        flex-direction: column;
        justify-content: center;
    }

    .footer-container>.container>.row:last-child {
        margin: 1rem auto 0;
    }
}


@media screen and (max-width: 600px) {
    #footer .footer-container .links .title {
        display: none !important;
    }

    #footer .footer-container .links ul#footer_sub_menu_2 {
        flex-direction: column;
        background-color: #ffffff;
        justify-content: center;
    }

    #footer .footer-container .links ul#footer_sub_menu_2 li+li::before {
        display: none;
    }
}