@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

:root {
    --primary-color: #E80071;
    --secondary-color: #000000;
    --theme-color: #ed7500;
    --bg-color: #f7f7f7;
    --white-color: #ffffff;
    --black-color: #000000;
    --footer-bg: #000000;
    --transition: all .3s ease-in-out;
}
*,
::after,
::before {
    -webkit-box-sizing: border-box;
    box-sizing: border-box
}
html {
    scroll-behavior: smooth
}
body,
html {
    font-size: 14px;
    line-height: 22px;
    font-weight: 400;
    font-family: Montserrat, sans-serif;
}
.container {
    padding-left: 60px;
    padding-right: 60px;
}
p {
    margin-top: 0;
    margin-bottom: 5px
}
a,
body,
button,
html,
p {
    color: var(--black-color)
}
body,
html,
ul {
    margin: 0;
    padding: 0
}
.pagination li a,
a,
a:focus,
a:hover,
button {
    text-decoration: none
}
p:last-child {
    margin-bottom: 0
}
a,
button {
    cursor: pointer;
    transition: var(--transition)
}
a,
button,
img,
input,
textarea {
    -webkit-transition: var(--transition);
    transition: var(--transition)
}
:focus {
    outline: 0;
    -webkit-box-shadow: none;
    box-shadow: none
}
a:focus {
    outline: 0
}

a:hover {
    color: inherit
}

img {
    max-width: 100%;
    height: auto
}
.container-fluid {
    padding: 0 145px
}
@media screen and (min-width:1024px) and (max-width:1600px) {
    .container-fluid {
        padding: 0 50px
    }
}

label {
    display: block;
    margin-bottom: 10px;
    font-weight: 500;
}
b, strong {
    font-weight: 600;
}
li {
    list-style: disc;
    margin-left: 18px;
}
ul {
    margin-bottom: 10px;
}
.section-margin {
    margin: 60px 0
}
.margin-top {
    margin-top: 60px
}
.margin-bottom {
    margin-top: 60px
}
.section-padding {
    padding: 60px 0
}
.pad-top {
    padding-top: 60px
}
.pad-bottom {
    padding-bottom: 60px
}
.pad-half-top {
    padding-top: 30px
}
.pad-half-bottom {
    padding-bottom: 30px
}
/*------------------- section heading start ------------------------*/
.section-heading-center {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    flex-direction: column
}
.section-heading-between {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative
}
.section-heading {
    margin-bottom: 20px
}
.main-head {
    font-size: 30px;
    line-height: 35px;
    margin-bottom: 0;
    font-weight: 700;
}
.section-heading-center .main-head {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center
}
.section-heading-center p {
    width: 60%;
}
.section-heading.section-heading-center {
    margin-bottom: 20px
}
/*--------- section heading end ---------*/


/*--------- button start ---------*/
.inline-main-btn {
    display: flex;
    align-items: center;
    column-gap: 10px
}
.main-btn {
    width: fit-content;
    line-height: normal;
    height: 40px;
    font-weight: 600;
    padding: 10px 20px;
    border-radius: 30px;
    border: 1px solid;
    text-align: center;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.btn-1 {
    color: var(--white-color);
    background: var(--primary-color);
    border-color: var(--primary-color);
}
.btn-1:hover {
    color: var(--white-color);
    background: var(--secondary-color);
    border-color: var(--secondary-color);
}

.btn-2 {
    color: var(--white-color);
    background: var(--secondary-color);
    border-color: var(--secondary-color);
}
.btn-2:hover{
    color: var(--white-color);
    background: var(--primary-color);
    border-color: var(--primary-color);
}

.btn-white {
    color: var(--primary-color);
    background: var(--white-color);
    border-color: var(--white-color);
}
.btn-white:hover{
    color: var(--white-color);
    background: transparent;
    border-color: var(--white-color);
}
.main-btn i {
    padding-left: 5px;
}

.hover-link::after {
    content: '';
    display: block;
    width: 100%;
    height: 1px;
    background: #000;
    transition: width .3s
}
.hover-link:hover::after {
    width: 0;
    transition: width .3s
}

.bg-color {
    background: var(--bg-color)
}
.primary-color {
    background: var(--primary-color)
}
.secondary-color {
    background: var(--secondary-color)
}
/*--------- button end ---------*/

/*---------- banner start ---------*/
.banner {
    position: relative;
    width: 100%;
    overflow: hidden;
}
.banner:before {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0.5;
    bottom: 0;
    background: linear-gradient(180deg, rgb(0 0 0) 50%, rgba(0, 0, 0, 1) 100%) !important;
    content: "";
    left: 0;
}
.banner .image img {
    width: 100%;
    height: 450px;
    object-fit: cover;
}
.callbacks_tabs {
    display: none;
    justify-content: center;
    position: absolute;
    bottom: 30px;
    z-index: 11;
    width: 100%;
    gap: 5px;
}
.banner-content {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}
.banner-content .container, .banner-content .container-fluid {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    flex-direction: row;
    width: 100%;
    height: 100%;
}
.top-text .main-head {
    color: var(--white-color);
    font-size: 45px;
    line-height: 55px;
    text-transform: uppercase;
    width: 80%;
}
.top-text {
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
}
.top-text p {
    color: var(--white-color);
    font-size: 20px;
    line-height: 30px;
    font-weight: 500;
    width: 65%;
}
.banner-all-btn {
    gap: 10px;
    display: flex;
}
/*---------- banner end ---------*/


/*---------- header extra section start ---------*/
.account-menu {
    position: absolute;
    right: 0;
    width: 150px;
    top: 100%;
    left: 0;
    background: #fff;
    padding: 15px;
    border-radius: 6px;
    box-shadow: 0 0 5px #9b9b9b40;
    transform: translateY(15px);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}
.account-btn:hover .account-menu {
    transform: translateY(0px);
    opacity: 1;
    visibility: visible;
}
.account-menu a {
    display: block;
    margin-bottom: 10px;
}
.account-menu a:hover {
    color: var(--primary-color);
}
.account-menu a:last-child {
    margin-bottom: 0;
}
.account-btn .main-btn i {
    padding-left: 0;
    padding-right: 5px;
}
.cart-btn {
    background: var(--primary-color);
    width: 45px;
    height: 45px;
    display: flex;
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    color: #fff;
    position: relative;
}
.cart-btn span {
    position: absolute;
    right: -5px;
    top: 0;
    width: 22px;
    height: 22px;
    line-height: 22px;
    font-size: 10px;
    background: var(--secondary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    letter-spacing: 1px;
}
.cart-btn:hover {
    color: #ffffff;
}
.cart-btn:hover span {
    color: #ffffff;
}
/*.search-btn {
    color: #ffffff;
    background: var(--secondary-color);
    border-color: var(--secondary-color);
    padding: 0;
    width: 40px;
    height: 40px;
    border-radius: 50%;
}
.search-btn:hover {
    color: #ffffff;
    background: var(--primary-color);
    border-color: var(--primary-color);
}
.search-btn i {
    padding: 0;
}*/
/*---------- header extra section end ---------*/



/*---------- Brand Section Start ---------*/
.brand-grid {
    width: 100%;
    gap: 15px;
    display: grid;
    grid-template-columns: repeat(5, minmax(0px, 1fr));
}
.brand-item {
    background: #fff;
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    border-radius: 8px;
    padding: 20px;
    position: relative;
    overflow: hidden;
    height: 145px;
    box-shadow: 0 0 5px 0 #0000000a;
}
.brand-img img {
    height: 50px;
}
.brand-item:hover img {
    transform: scale(1.1);
}
.brand-item h4 {
    display: none;
}
.brand-img {
    width: 100%;
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
}
/*---------- Brand Section End ---------*/

.full-width-card {
    align-items: center;
    width: 100%;
    gap: 0;
    display: grid;
    grid-template-columns: repeat(2, minmax(0px, 1fr));
}
.full-width-card-img img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}
.full-width-card-text {
    width: 100%;
    height: 400px;
    display: flex;
    justify-content: center;
    flex-direction: column;
    background: var(--primary-color);
    padding: 50px;
}
.full-width-card-text .check-list li {
    color: #fff;
}
.full-width-card-text ul {
    margin: 10px 0;
}
.full-width-card-text ul li {
    color: #ffffff;
    line-height: 30px;
}

/*------------- product page start -------------*/
.product-browse-grid {
    width: 100%;
    gap: 20px;
    display: grid;
    grid-template-columns: repeat(5, minmax(0px, 1fr));
}
.product-browse-img {
    background: #fff;
    border: 1px solid #dddddd;
    border-radius: 10px;
    padding: 15px;
}
.product-browse-item:hover .product-browse-img {
    border: 1px solid var(--primary-color);
}
.product-browse-item:hover .product-item-content h4 {
    color: var(--primary-color);
}
.product-browse-img img {
    width: 100%;
    height: 150px;
    object-fit: contain;
}
.product-item-content h4 {
    font-size: 12px;
    text-transform: capitalize;
    font-weight: 600;
    text-align: center;
    margin-top: 10px;
    margin-bottom: 0;
}
.product-pagination .pagination {
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 50px;
}
.product-pagination li {
    list-style: none;
    margin-left: 0;
}
.product-pagination .active>.page-link, .product-pagination .page-link.active {
    color: var(--bs-pagination-active-color);
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}
.product-pagination .page-link {
    color: var(--primary-color);
}
.product-pagination .page-item.active .page-link:hover {
    color: #fff;
}
.product-pagination .page-link:hover {
    color: var(--primary-color);
}
.product-pagination nav {
    background: transparent;
    box-shadow: 0 0 0 0 rgb(0 0 0 / 1%), 0 0 0 0 rgb(0 0 0 / 4%);
}
/*------------- product page end -------------*/


/*------------- product sidebar start -------------*/

.form-check {
    display: block;
    margin-bottom: 10px;
    position: relative;
    cursor: pointer;
    padding-left: 0;
}

.form-check input {
    position: absolute;
    opacity: 0;
}

.form-check label {
    position: relative;
    cursor: pointer;
    padding-left: 30px;
    text-transform: capitalize;
}

.form-check label:before {
    content: '';
    position: absolute;
    left: 0;
    top: 2px;
    width: 18px;
    height: 18px;
    border: 1px solid #979797;
    background: #fff;
}

.form-check input:checked + label:before {
    background: #000;
    border-color: #000;
}

.form-check input:checked + label:after {
    content: '';
    position: absolute;
    left: 6px;
    top: 4px;
    width: 5px;
    height: 10px;
    border: solid #fff;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.filter-sidebar-heading {
    font-size: 20px;
    line-height: 1;
    color: #000;
    border-bottom: 0;
    text-transform: uppercase;
    font-weight: 600;
}

.filter-sidebar-item {
    border-top: 1px solid #979797;
    padding: 20px 0 0;
    margin-bottom: 15px
}

.filter-sidebar .filter-sidebar-item:first-child {
    border-top: 0 solid #979797;
    padding-top: 0
}

@media only screen and (max-width: 991px) {
    .filter-sidebar {
        position: fixed;
        top: 0;
        left: -100%;
        background: #fff;
        width: 75%;
        padding: 20px;
        overflow-y: scroll;
        height: 100%;
        z-index: 111111
    }
    .filter-closed-btn {
        position: absolute;
        right: 20px;
        top: 20px;
        font-size: 20px
    }
}
/*------------- product sidebar end -------------*/



/*--------------------------------------------
        footer section start
--------------------------------------------*/
.footer-section {
    background: var(--secondary-color);
}
.footer-section:before {
    content: "";
    background: url(../images/footer-bg.png);
    width: 100%;
    height: 85px;
    background-position: left bottom;
    position: absolute;
    bottom: 0;
    background-size: contain;
    opacity: 0.1;
    background-repeat: repeat-x;
}
.footer-widget-menu {
    display: flex;
    align-items: center;
    width: 100%;
    justify-content: center;
    gap: 20px;
    margin: 0;
}
.main-footer {
    display: grid;
    width: 100%;
    grid-column-gap: 20px;
    grid-row-gap: 20px;
    grid-template-columns: repeat(1, minmax(0px, 1fr));
    padding: 30px 0 30px 0;
}
.footer-widget .footer-widget-menu a {
    width: fit-content;
    color: #ffffff;
    display: flex;
}
.footer-widget .footer-widget-menu a:hover {
    color: var(--primary-color);
}
.footer-widget .footer-widget-menu li {
    margin: 0;
    list-style: none;
}
.footer-widget p{
    font-size: 14px;
    line-height: 26px;
    color: #ffffff;
}
.footer-bottom {
    padding: 20px 0;
    position: relative;
    z-index: 2;
    border-top: 1px solid #ffffff;
}
.footer-bottom p {
    font-size: 12px;
    line-height: 24px;
    color: #ffffff;
    margin: 0;
}

/*--------------------------------------------
        footer section end
--------------------------------------------*/


/*----- breadcrumb-section start -----*/
.breadcrumb-section {
    background: #ffe8f3;
    padding: 10px 15px;
}
.breadcrumb-head {
    font-size: 20px;
    margin-bottom: 0;
    font-weight: 700;
    text-transform: uppercase;
    position: relative;
    color: var(--primary-color);
}
.breadcrumb-section .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.breadcrumb-section ul li a {
    color: var(--black-color);
    margin: 0;
    font-size: 14px;
    font-weight: 500;
}
.breadcrumb-section ul li a:hover {
    color: var(--primary-color);
}
.breadcrumb-section ul li {
    color: var(--black-color);
    font-size: 14px;
    position: relative;
    padding-right: 15px;
    margin-right: 15px;
    font-weight: 500;
    list-style: none;
    margin-left: 0;
}
.breadcrumb-section ul {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    width: 100%;
}
.breadcrumb-section ul li:last-child {
    padding-right: 0;
    margin-right: 0;
}
.breadcrumb-section ul li:before {
    content: "\f324";
    font-weight: 600;
    position: absolute;
    right: -5px;
    top: 0.5px;
    font-family: 'Font Awesome 6 Pro';
    font-size: 10px;
}
.breadcrumb-section ul li:last-child:before {
    display: none;
    opacity: 0;
}
/*----- breadcrumb-section end -----*/



/*--------------------------------------------
        login and signup start
--------------------------------------------*/
.crs_log_wrap {
    position: relative;
    width: 100%;
    margin: 0 auto;
    border: 1px solid #eff2f5;
    border-radius: 0.5rem;
    overflow: hidden;
    background: #ffffff;
}
.crs_log__thumb {
    height: 110px;
    width: 100%;
    position: relative;
    background: var(--primary-color);
}
.crs_log__thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.crs_log__caption {
    position: relative;
    padding: 0 2rem;
    width: 100%;
}
.rcs_log_123 {
    margin-top: -38px;
}
.rcs_log_123 .rcs_ico {
    background: #ffffff;
    display: flex;
    text-align: center;
    width: 75px;
    height: 75px;
    font-size: 30px;
    margin: 0 auto;
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    color: var(--primary-color);
    box-shadow: 0 0 10px 0 rgb(62 28 131 / 7%);
    -webkit-box-shadow: 0 0 10px 0 rgb(62 28 131 / 7%);
}
.Lpo09 {
    padding: 10px 0 14px 0;
    text-align: center;
}
.Lpo09 h4 {
    font-size: 24px;
    line-height: 35px;
    margin-bottom: 0;
    font-weight: 700;
}
.crs_log__footer {
    padding: 1rem;
    border-top: 1px solid #eaecf3;
    margin-top: 2rem;
}
.required-text {
    color: var(--primary-color);
}
.musrt a {
    color: var(--primary-color);
}
.musrt-1 a:hover {
    color: var(--primary-color);
}
.form-control:focus {
    color: #000000;
    background-color: #fff;
    border-color: #e80071;
    outline: 0;
    box-shadow: 0 0 0 0 rgba(13, 110, 253, .25);
}
.form-control {
    height: 45px;
    padding: 5px 15px;
    margin: 0 !important;
    box-shadow: none !important;
    background: #ffffff;
    border: 1px solid #e6ebf5;
    color: #000000;
    border-radius: 6px;
    font-size: 14px;
}
.form-group {
    margin-bottom: 15px;
}
label {
    font-weight: 500;
    margin-bottom: 5px;
}
textarea.form-control {
    min-height: 100px;
}

/*--------------------------------------------
        login and signup end
--------------------------------------------*/


/*--------------------------------------------
        footer fixed start
--------------------------------------------*/
.footer-fixed {
    position: fixed;
    bottom: 0;
    width: 100%;
    height: 70px;
    background: #fff;
    z-index: 111;
    display: none;
    grid-template-columns: repeat(4, minmax(0px, 1fr));
    border-radius: 10px 10px 0 0;
    box-shadow: 0 -2px 5px #0000000d;
}
.footer-fixed-item {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}
.footer-fixed-item h4 {
    font-size: 16px;
    margin: 0;
}
.footer-fixed-item span {
    font-size: 20px;
    margin-bottom: 5px;
}
.footer-fixed-item.active h4, .footer-fixed-item.active span{
    color: var(--primary-color);
}

/*--------------------------------------------
        footer fixed end
--------------------------------------------*/


/*--------------------------------------------
        Product gallery start
--------------------------------------------*/
.product-details-media {
    display: flex;
    gap: 15px;
}

/* ===== DESKTOP ===== */
.product__media--nav {
    width: 110px;
    height: 450px;
    position: relative;
    padding: 35px 0;
}

.product__media--preview {
    flex: 1;
    height: 450px;
}

.product__media--preview .swiper-slide {
    height: 100%;
}

.product__media--preview img {
    width: 100%;
    height: 350px;
    object-fit: contain;
}

.product__media--nav__items--img {
    width: 100%;
    height: 70px;
    object-fit: contain;
    cursor: pointer;
}
.product__media--nav__items {
    height: 100%;
    background: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 10px;
}

/* Desktop Arrow Position */
.thumb-prev {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%) rotate(90deg);
}

.thumb-next {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%) rotate(90deg);
}

/* ===== MOBILE ===== */
@media (max-width: 767px) {

    .product-details-media {
        flex-direction: column;
    }

    .product__media--nav {
        width: 100%;
        height: auto;
        padding: 0 40px;
        margin-top: 15px;
    }

    .product__media--preview {
        height: 300px;
    }

    /* Reset arrow */
    .thumb-prev,
    .thumb-next {
        transform: none;
        top: 50%;
        bottom: auto;
    }

    .thumb-prev {
        left: 0;
    }

    .thumb-next {
        right: 0;
        left: auto;
    }
}

/* FIX: Mobile preview height issue */
@media (max-width: 767px) {
    .product-details-media .swiper-button-prev {
        right: auto;
        left: 0 !important;
        margin-top: 30px !important;
    }
    .product-details-media .swiper-button-next {
        right: 0!important;
        left: auto!important;
        margin-bottom: 10px !important;
    }

    .swiper-button-next, .swiper-rtl .swiper-button-prev {
        right: 0;
        left: auto;
        bottom: 20px;
    }
    .product__media--preview {
        width: 100%;
        height: 300px !important;   /* 👈 force height */
        display: block;
    }

    .product__media--preview .swiper-wrapper,
    .product__media--preview .swiper-slide {
        height: 100% !important;
    }

    .product__media--preview img {
        width: 100%;
        height: 300px;
        object-fit: cover;
    }

}
.product-preview-items {
    background: #fff;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 10px;
}
.product-details-media .swiper-button-next, .product-details-media .swiper-button-prev {
    width: 30px;
    height: 30px;
    background: var(--primary-color);
    border-radius: 50%;
    color: #ffffff;
}
.product-details-media .swiper-button-next {
    top: auto;
}
.product-details-media .swiper-button-prev {
    top: auto;
    right: auto;
    left: 50%;
}
.product-details-media .swiper-button-next:after, .product-details-media .swiper-button-prev:after {
    font-size: 16px;
}
.product-details-media .swiper-button-prev {
    right: auto;
    left: 50%;
    margin-top: 0;
}
.product-details-media .swiper-button-next {
    top: auto;
    right: auto;
    left: 50%;
    margin-bottom: 15px;
}
.product-details-media .swiper-button-next.swiper-button-disabled, .product-details-media .swiper-button-prev.swiper-button-disabled {
    opacity: 1;
}
/*--------------------------------------------
        Product gallery end
--------------------------------------------*/