/*MG Global Elements*/
body {
    font-family: "Syne", sans-serif;
}

p {
    font-size: 14px;
    color: #656565;
    line-height: 24px;
}

.row>* {
    padding-right: calc(0.5rem * .5);
    padding-left: calc(0.5rem * .5);
}

.container {
    max-width: 1450px;
    margin: auto;
    padding: 0px 15px;
}

@media (min-width: 1700px) {
    .container {
        max-width: 1600px !important;
    }
}

@media (min-width: 1251px) and (max-width: 1500px) {
    .container {
        max-width: 1200px !important;
    }
}

@media (min-width: 1001px) and (max-width: 1250px) {
    .container {
        max-width: 980px !important;
    }
}

@media (min-width: 769px) and (max-width: 1000px) {
    .container {
        /* margin: 0px 20px; */
        margin: 0px 0px;
    }
}

@media (max-width: 768px) {
    .container {
        padding-left: 10px;
        padding-right: 10px;
    }
}

.col-md,
.col-md-2,
.col-md-3,
.col-md-4,
.col-md-5,
.col-md-6,
.col-md-7,
.col-md-8,
.col-md-9,
.col-md-10,
.col-md-11,
.col-md-12 {
    min-height: 1px;
    padding: 0 8px;
}

@media (min-width: 768px) {
    .col-md {
        flex: 0 0 20%;
        max-width: 20%;
    }

    .col-md-2 {
        flex: 0 0 16.666%;
        max-width: 16.666%;
    }

    .col-md-3 {
        flex: 0 0 25%;
        max-width: 25%;
    }

    .col-md-4 {
        flex: 0 0 33.333%;
        max-width: 33.333%;
    }

    .col-md-5 {
        flex: 0 0 41.666%;
        max-width: 41.666%;
    }

    .col-md-6 {
        flex: 0 0 50%;
        max-width: 50%;
    }

    .col-md-7 {
        flex: 0 0 58.333%;
        max-width: 58.333%;
    }

    .col-md-8 {
        flex: 0 0 66.666%;
        max-width: 66.666%;
    }

    .col-md-9 {
        flex: 0 0 75%;
        max-width: 75%;
    }

    .col-md-10 {
        width: 83.333%;
        max-width: 83.333%;
    }

    .col-md-12 {
        flex: 0 0 100%;
        max-width: 100%;
    }
}

@media (min-width: 768px) and (max-width: 992px) {
    .col-lg-3 {
        flex: 0 0 25%;
        max-width: 25%;
    }

    .col-lg-4 {
        flex: 0 0 33.333%;
        max-width: 33.333%;
    }

    .col-lg-5 {
        flex: 0 0 41.666%;
        max-width: 41.666%;
    }

    .col-lg-6 {
        flex: 0 0 50%;
        max-width: 50%;
    }

    .col-lg-7 {
        flex: 0 0 58.333%;
        max-width: 58.333%;
    }

    .col-lg-8 {
        flex: 0 0 66.666%;
        max-width: 66.666%;
    }
}

@media (min-width: 992px) and (max-width: 1300px) {
    .col-xl-3 {
        flex: 0 0 25%;
        max-width: 25%;
    }

    .col-xl-4 {
        flex: 0 0 33.333%;
        max-width: 33.333%;
    }

    .col-xl-5 {
        flex: 0 0 41.666%;
        max-width: 41.666%;
    }

    .col-xl-6 {
        flex: 0 0 50%;
        max-width: 50%;
    }

    .col-xl-7 {
        flex: 0 0 58.333%;
        max-width: 58.333%;
    }

    .col-xl-8 {
        flex: 0 0 66.666%;
        max-width: 66.666%;
    }
}


@media (min-width: 1300px) and (max-width: 1500px) {
    .col-xxl-3 {
        flex: 0 0 25%;
        max-width: 25%;
    }

    .col-xxl-4 {
        flex: 0 0 33.333%;
        max-width: 33.333%;
    }

    .col-xxl-5 {
        flex: 0 0 41.666%;
        max-width: 41.666%;
    }

    .col-xxl-6 {
        flex: 0 0 50%;
        max-width: 50%;
    }

    .col-xxl-7 {
        flex: 0 0 58.333%;
        max-width: 58.333%;
    }

    .col-xxl-8 {
        flex: 0 0 66.666%;
        max-width: 66.666%;
    }
}


/* Responsive Breakpoints */
@media (max-width: 768px) {


    .col-6 {
        flex: 0 0 50%;
        max-width: 50%;
        padding-left: 5px;
        padding-right: 5px;
    }

    .padding-main {
        padding: 20px 0;
    }

    .p--0 {
        padding: 0 !important;
    }
}







button.btn.mg-btn {
    border-radius: 0;
    box-shadow: none;
}

.mg-btn {
    background-color: #000000;
    padding: 10px 30px;
    display: inline-block;
    text-decoration: none;
    font-family: "Syne", sans-serif;

    text-transform: uppercase;
    font-size: 14px;
    color: #fff;
    text-align: center;
}

.mg-btn.mg-btn-white {
    background-color: #fff;
    color: #000;
}

.mg-btn:hover,
.mg-btn:focus,
.mg-btn:active {
    background-color: #fff;
    color: #000;
    transition: all 0.3s ease-in;
}

.mg-btn.mg-btn-white:hover,
.mg-btn.mg-btn-white:focus,
.mg-btn.mg-btn-white:active {
    background-color: #000000;
    color: #fff;
}

.mg-btn.mg-light-bg-btn:hover,
.mg-btn.mg-light-bg-btn:focus,
.mg-btn.mg-light-bg-btn:active {
    background-color: #000;
    color: #fff;
}

.mg-section-spacing {
    padding: 50px 0 0 0;
    overflow: hidden;
}


.mg-index-section-spacing {
    padding-top: 100px;
}

.mg-heading {
    font-family: "Syne", sans-serif;
    text-transform: uppercase;
    font-size: 35px;
    color: #666666;
}

.mg-heading > span {
    color: #000000;
}

.mg-subheading h3 {
    font-size: 20px;
    border-bottom: 1px dashed rgba(112, 112, 112, 0.5);
    padding-bottom: 12px;
    margin-bottom: 12px;
    color: #000;
}

.mg-section-tittles {
    margin-bottom: 35px;
}

.img-fluid {
    width: 100%;
}

.mg-product-slider-main .mg-product-slider {
    aspect-ratio: 5 / 6;
    overflow: hidden;
    max-width: 550px;
    margin: 0;
    background: #f7f4ef;
}

.mg-product-slider-main .mg-img-main,
.mg-product-slider-main .mg-product-gallery-trigger {
    width: 100%;
    height: 100%;
}

.mg-product-slider-main .mg-product-gallery-trigger {
    display: block;
    padding: 0;
    border: 0;
    background: transparent;
}

.mg-product-gallery__grid .mg-product-gallery__item:nth-child(n+5){
    display:none;
}

.mg-product-slider-main .mg-img-main img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.mg-pb-100 {
    padding-bottom: 100px !important;
}

.breadcrumb-item+.breadcrumb-item::before {
    content: "›";
    /* Chevron */
    margin: 0 8px;
    color: #999;
    font-size: 16px;
}



.mg-breadcrumb-outer .breadcrumb {
    margin-bottom: 0;
}

.mg-breadcrumb-outer {
    border-bottom: 1px solid rgba(112, 112, 112, 0.15);
    padding: 5px 0;
}

.mg-breadcrumb-outer .breadcrumb .breadcrumb-item a,
.mg-breadcrumb-outer .breadcrumb .breadcrumb-item {
    text-decoration: none;
    font-size: 12px;
    color: #656565;
    display: flex;
    align-items: center;
}

.mg-breadcrumb-outer .breadcrumb .breadcrumb-item.active {
    color: #000000;
}

.breadcrumb.breadcrumb a:hover {
    color: #000000;
}


.mg-page-outer {
    padding: 70px 0;
}

/*MG Global Elements End Here*/
/*MG Header Start Here*/
.mg-header-outer {
    padding: 15px 0;
    border-bottom: 1px solid rgba(112, 112, 112, 0.15);
}

.header-logo img {
    max-width: 110px !important;
}

.mg-navigation-outer .navbar-nav .nav-link {
    color: #000;
    font-size: 13px;
    padding: 0;
}

.mg-navigation-outer .navbar-nav .nav-link.active {
    color: #000000;
}

.mg-navigation-outer .navbar-nav .nav-link:hover,
.mg-navigation-outer .navbar-nav .nav-link:focus,
.mg-navigation-outer .navbar-nav .nav-link:active {
    color: #000000;
    transition: all 0.3s ease-in;
}

.mg-navigation-outer .navbar-nav .nav-item {
    padding: 0 18px;
}

.mg-navigation-outer .navbar-nav .nav-item:first-child {
    padding-left: 0;
}

.mg-navigation-outer .navbar-nav .nav-item:last-child {
    padding-right: 0;
}

.header-icons-outer ul {
    list-style: none;
    margin: 0;
    padding: 0;
    width: 100%;
}

.header-icons-outer ul li {
    display: inline-block;
    vertical-align: top;
    padding: 0 5px;
    position: relative;
}

.header-icons-outer ul li:last-child {
    padding-right: 0;
}

.header-icons-outer ul li img {
    max-width: 20px;
}

.header-icons-outer ul li i {
    display: inline-block;
    font-size: 16px;
    width: 20px;
    text-align: center;
    color: #000;
    transition: opacity .3s ease;
}

.mg-header-icon-counter {
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    right: 5px;
    bottom: -1px;
    background-color: #000;
    color: #fff;
    border-radius: 50%;
    min-width: 12px;
    height: 12px;
    font-size: 10px;
    text-align: center;
}

.mg-header-icon-counter.cart-counter {
    right: -2px;
    bottom: -3px;
}

.header-icons-outer ul li.mg-search-icon {
    padding-right: 20px;
    margin-right: 15px;
}

.header-icons-outer ul li.mg-search-icon::after {
    background: #000000;
    width: 1px;
    height: 16px;
    top: 7px;
    content: '';
    position: absolute;
    right: 0;
}

.header-icons-outer ul li.mg-search-icon img {
    max-width: 16px;
}

.mg-search-pop-up .modal-content {
    background-color: rgba(0, 0, 0, 0.85);
}

.mg-search-pop-up .modal-header {
    border-bottom: none;
}

.mg-search-pop-up .mg-pop-up-close-btn {
    opacity: 1;
    border-radius: 0;
    position: absolute;
    right: 0;
    top: 0;
    font-size: 20px;
    z-index: 1;
    padding: 20px 20px;
    background-image: none;
    line-height: 20px;
    color: #fff;
}

button.btn-close.mg-pop-up-close-btn:focus,
button.btn-close.mg-pop-up-close-btn:active {
    box-shadow: none;
}

.mg-search-pop-form-outer {
    padding: 25px 135px 35px;
    min-height: 103px;
}

.search-heading {
    color: #fff;
    font-size: 25px;
    padding-left: 10px;
}

.mg-search-pop-form-outer input {
    background-color: transparent;
    border-radius: 0;
    border: none;
    border-bottom: 2px solid rgba(255, 255, 255, 0.5);
    color: #fff;
}

.mg-search-pop-form-outer input:focus {
    background: transparent;
    box-shadow: none;
    border-color: rgba(255, 255, 255, 0.1);
    color: #fff;
}

.navbar-toggler {
    display: none;
}

/*MG Header End Here*/
/*MG Slider Start Here*/

.mg-home-banner-main-heading {
    background-color: rgba(255, 255, 255, 0.5);
    display: inline-block;
    padding: 8px;
}

.mg-home-banner-main-heading h2,
.mg-home-banner-main-heading h3 {
    font-family: "Syne", sans-serif;
    text-transform: uppercase;
    font-size: 40px;
    margin: 0;
    line-height: 1.4;
    color: #000;
}

.mg-banner-btns .mg-btn {
    margin: 0 12px;
    min-width: 160px;
    font-size: 16px;
}

.mg-banner-btns .mg-btn:first-child {
    margin-left: 0;
}

.mg-banner-btns .mg-btn:last-child {
    margin-right: 0;
}

.mg-banner-btns {
    margin-top: 70px;
}

.mg-home-banner-main-heading-inner::before {
    background-image: url('../images/Corner1.html');
    left: 0;
    background-position: top center;
}

.mg-home-banner-main-heading-inner::after {
    background-image: url('../images/Corner2.html');
    right: 0;
    bottom: 0;
    background-position: bottom center;
}

.mg-home-banner-main-heading-inner::before,
.mg-home-banner-main-heading-inner::after {
    content: '';
    width: 55px;
    height: 55px;
    position: absolute;
    background-repeat: no-repeat;
    background-size: contain;
}

.mg-home-banner-main-heading-inner-tittles {
    padding: 18px 25px 18px 35px;
}

.home-slider .swiper-button-next {
    right: 35px;
}

.home-slider .swiper-button-prev {
    left: auto;
    right: 120px;
}

.home-slider .swiper-button-next,
.home-slider .swiper-button-prev {
    z-index: 1;
    bottom: 70px;
    top: auto;
}

.swiper-button-next:after,
.swiper-button-prev:after {
    display: none;
}

.home-slider .swiper-button-next:before {
    background-image: url('../images/Arrow-right.html');
    right: 0;
}

.home-slider .swiper-button-prev:before {
    background-image: url('../images/Arrow-left.html');
    left: 0;
}

.home-slider .swiper-button-next:before,
.home-slider .swiper-button-prev:before {
    content: '';
    width: 45px;
    height: 45px;
    background-size: contain;
    background-position: center center;
    background-repeat: no-repeat;
    position: absolute;
}

.home-slider {
    margin: 0 !important;
}

.home-slider .swiper-pagination {
    bottom: auto;
    width: auto;
    top: 50%;
    left: 40px;
    transform: translate(0, -50%);
}

.home-slider .swiper-pagination .swiper-pagination-bullet {
    width: 7px;
    height: 7px;
    background-color: #000;
    border-radius: 50%;
    opacity: 1;
    display: block;
    margin: 9px !important;
    position: relative;
}

.home-slider .swiper-pagination .swiper-pagination-bullet-active {
    background-color: #000000;
    border: 1px solid #000 !important;
    border-radius: 50%;
    outline: 8px solid transparent;
    box-shadow: 0 0 0 1px #000;
}

/*MG Slider Social Bar Start Here*/
.banner-social-bar ul {
    margin: 0;
    padding: 0;
    list-style: none;
    width: 100%;
}

.banner-social-bar ul li {
    display: inline-block;
    padding: 0 15px;
    line-height: 1;
    position: relative;
}

.banner-social-bar ul li:first-child {
    padding-left: 0;
}

.banner-social-bar ul li:last-child {
    padding-right: 0
}

.banner-social-bar ul li:after {
    background: #000;
    height: 8px;
    width: 1px;
    content: '';
    position: absolute;
    top: calc(50% - 2px);
    left: 100%;
}

.banner-social-bar ul li:last-child:after {
    content: none;
}

.banner-social-bar {
    position: absolute;
    bottom: 50px;
    left: 40px;
}

.banner-social-bar ul li a {
    text-decoration: none;
    color: #000;
    font-size: 15px;
}

.banner-social-bar ul li a:hover,
.banner-social-bar ul li a:focus,
.banner-social-bar ul li a:active {
    color: #000000;
    transition: all 0.3s ease-in;
}

/*MG Slider Social Bar End Here*/
/*MG Slider End Here*/
/*MG Collection List Start Here*/
.mg-collection-list-tittles {
    position: absolute;
    bottom: 0;
    background-color: #000000;
    padding: 10px 15px;
    color: #fff;
    font-family: "Syne", sans-serif;
    text-transform: capitalize;
    font-size: 20px;
    max-width: 90%;
}

.mg-collection-list-grid:hover .mg-collection-list-tittles,
.mg-collection-list-grid:focus .mg-collection-list-tittles,
.mg-collection-list-grid:active .mg-collection-list-tittles {
    background-color: #B3B2B0;
    color: #fff;
    transition: all 0.3s ease-in;
}

/*MG Collection List End Here*/
/*MG Product List Start Here*/
.mg-product-tittles {
    margin:8px 0 8px 0;
    font-family: "Jost", sans-serif !important;
}
.mg-product-main .mg-product-image{
    aspect-ratio: 5/6.5;
    overflow: hidden;
}
.mg-product-main .mg-product-image img{
    height: 100%;
    width: 100%;
    object-fit: cover;
}
.mg-product-name {
    color: #999999;
    font-size: 12px;
    font-weight: 600;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.mg-product-name:hover {
    color: #000;
}

.mg-regular-price {
    color: #000;
    font-size: 14px;
    margin: 5px 0 0 0;
    display: flex;
    font-weight: 700;
    justify-content: center;
    align-items: center;
    gap:10px;
}
.mg-product-main .action-button a{
        width: 100%;
    display: block;
    text-align: center;
    background: black;
    color: white;
    text-decoration: none;
    padding: 8px;
    text-transform: uppercase;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 2px;
}
.mg-product-main .action-button a:hover{
    background: #d4d4d4;
    color: black;
    font-weight: 700;
}

.product-card-spacing{
    padding: 0px 5px 15px 5px;
}
.mg-regular-price ins{
    order:1;
    text-decoration: none;
}
.mg-regular-price del{
    order:2;
    opacity: 0.6;
}

.mg-discount-price {
    position: relative;
    margin-right: 10px;
 
}

.mg-discount-price::after {
    content: '';
    position: absolute;
    width: 110%;
    border-top: 1px solid #666666;
    top: 50%;
    left: -5%;
    -webkit-transform: rotate(-15deg);
    -ms-transform: rotate(-15deg);
    -o-transform: rotate(-15deg);
    transform: rotate(-15deg);
    
}

.mg-product-add-to-cart-btn {
    position: absolute;
    bottom: 0;
    width: 100%;
    background-color: #000000;
    text-align: center;
    color: #fff;
    text-decoration: none;
    padding: 7px 15px;
    display: inline-block;
    text-transform: uppercase;
    font-size: 14px;
    font-weight: 500;
    border-radius: 8px;
}

.mg-product-add-to-cart-btn:hover,
.mg-product-add-to-cart-btn:focus,
.mg-product-add-to-cart-btn:active {
    background-color: #000000;
    color: #fff;
    transition: all 0.3s ease-in;
}

.mg-product-icons-outer {
    position: absolute;
    top: 18px;
    right: 18px;
    display: flex;
    flex-direction: column;
    /* opacity: 0; */
}

.mg-product-add-to-cart-btn-outer {
    opacity: 0;
}

.mg-product-main:hover .mg-product-icons-outer,
.mg-product-main:hover .mg-product-add-to-cart-btn-outer {
    opacity: 1;
    transition: all 0.5s ease-in;
}

.mg-product-icon img {
    max-width: 18px;
    opacity: 0.4;
    display: inline-block;
}

/* .mg-product-main .mg-product-image img {
    border-radius: 10px;
} */

.mg-product-icon-svg path{
    fill: #7a7878;
    transition: fill 0.2s ease;
}

.mg-wishlist-btn.mg-in-wishlist .mg-product-icon-svg path{
    fill: #e11d48;
}

.mg-product-icon a {
    background-color: #fff;
    width: 35px;
    border-radius: 50%;
    height: 35px;
    text-align: center;
    line-height: 32px;
    display: inline-block;
    margin-bottom: 8px;
}

.mg-product-icon a:hover .mg-product-icon-img,
.mg-product-icon a:focus .mg-product-icon-img,
.mg-product-icon a:active .mg-product-icon-img {
    opacity: 1;
}

.mg-product-list-section-outer .mg-product-row {
    --bs-gutter-x: 30px;
}

.mg-collection-product-list-outer {
    padding: 0px 10px;
}

.mg-product-list-section-outer {
    padding-bottom: 15px;
}

img.img-fluid.mg-hover-img {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    object-fit: contain;
    transition: opacity .2s;
}

.mg-products-list-v2 .mg-product-icons-outer {
    left: 10px;
}

.mg-product-main:hover .mg-hover-img {
    opacity: 1;
}

.mg-top-products-box:hover .mg-hover-img {
    opacity: 1;
}
.mg-tooltip{
    position: relative;
    display: inline-block;
    cursor: pointer;
}

.mg-tooltip-text{
    visibility: hidden;
    position: absolute;
    top: 100%;
    right: 0;
    margin-top: 6px;
    border-radius: 4px;
    padding: 4px 8px;
    background:black;
    color: #ffffff;
    white-space: nowrap;
    z-index: 10;
}

.mg-tooltip-text::before{
    content: "";
    position: absolute;
    bottom: 100%;
    right: 12px;
    border-width: 6px;
    border-style: solid;
    border-color: transparent transparent black transparent;
}

.mg-tooltip:hover .mg-tooltip-text{
    visibility: visible;
}

/*MG Product List End Here*/
/*product page badges and style*/
.mg-p-badges {
    position: absolute;
    top: 10px;
    right: 10px;
}

/*******************************/
/*MG Info Banner Start Here*/
.mg-info-bannner-tittles-outer {
    background: rgba(0, 0, 0, 0.85);
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    padding: 20px 15px;
    max-width: 60%;
    transition: all .7s ease-out;
}

/*offer hover bg color change animation*/
.mg-info-banner-variant1:hover .mg-info-bannner-tittles-outer {
    background: rgba(0, 0, 0, 0.85);
}

.mg-info-banner-variant2:hover .mg-info-bannner-tittles-outer {
    background: rgba(0, 0, 0, 0.85);
}

.mg-info-banner-variant3:hover .mg-info-bannner-tittles-outer {
    background: rgb(0, 0, 0);
}

.mg-info-banner-variant4:hover .mg-info-bannner-tittles-outer {
    background: rgb(0, 0, 0);
}

.mg-info-banner-image {
    aspect-ratio: 6/4;
    overflow: hidden;
}

.mg-info-banner-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/*****************************/

.mg-info-banner-variant2 .mg-info-bannner-tittles-outer {
    background: rgba(0, 0, 0, 0.85);
}

.mg-info-bannner-tittles-inner {
    transform: translate(-50%, -50%);
    top: 50%;
    left: 50%;
    position: relative;
    text-align: center;
}

.mg-info-banner-heading {
    color: #fff;
    font-family: "Syne", sans-serif;
    font-size: 20px;
    line-height: 1.2;
}

.mg-info-banner-text {
    color: #fff;
    font-family: "Syne", sans-serif;
    font-size: 35px;
    line-height: 1.2;
}

.mg-info-banner-price-off-text {
    color: #fff;
    font-family: "Syne", sans-serif;
    font-size: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.55);
    border-bottom: 1px solid rgba(255, 255, 255, 0.55);
    line-height: 1;
    padding: 10px 8px 10px 8px;
    margin: 15px 0 10px 0;
}

/*MG Info Banner Start Here*/
/*MG Product Carousal Start Here*/
.mg-product-carousal {
    margin: 0 -15px 40px -15px;
}

.mg-product-carousal .mg-product-main {
    padding: 0 5px;
}

.mg-product-carousal .swiper-button-next {
    right: calc(50% - 52px);
}

.mg-product-carousal .swiper-button-prev {
    left: calc(50% - 52px);
}

.mg-product-carousal .swiper-button-next,
.mg-product-carousal .swiper-button-prev {
    z-index: 1;
    bottom: -10px;
    top: auto;
}

.mg-product-carousal .swiper-button-next:before {
    background-image: url('../images/Arrow-right.html');
    right: 0;
}

.mg-product-carousal .swiper-button-prev:before {
    background-image: url('../images/Arrow-left.html');
    left: 0;
}

.mg-product-carousal .swiper-button-next:before,
.mg-product-carousal .swiper-button-prev:before {
    content: '';
    width: 45px;
    height: 45px;
    background-size: contain;
    background-position: center center;
    background-repeat: no-repeat;
    position: absolute;
}

/*MG Product Carousal End Here*/
/*MG Information Banner 2 Start Here*/
.mg-info-banner-style2 .mg-info-bannner-tittles-outer {
    right: auto;
    top: auto;
    bottom: 0;
    left: 50%;
    transform: translate(-50%, 0%);
}

.mg-info-banner-style2 .mg-info-bannner-tittles-inner {
    transform: none;
    top: auto;
    left: auto;
}

.mg-info-banner-style2 .mg-info-banner-heading {
    font-size: 28px;
}

.mg-info-banner-style2 .mg-info-banner-price-off-text {
    font-size: 60px;
    padding: 15px 8px 10px 8px;
    margin: 20px 0 10px 0;
}

.mg-info-banner-variant3 .mg-info-bannner-tittles-outer {
    background: rgba(179, 178, 176, 1);
}

.mg-info-banner-variant4 .mg-info-bannner-tittles-outer {
    background: rgba(143, 107, 108, 1);
}

/*MG Information Banner 2 End Here*/
/*MG Information Banner Fullwidth Start Here*/
.mg-info-bannner-fullwidth-tittles-inner {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: #fff;
    padding: 40px 35px 45px;
    max-width: 70%;
    border-radius: 5px;
}

.mg-info-bannner-fullwidth-tittles-outer {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    height: 100%;
    width: 100%;
}

.mg-info-bannner-fullwidth-tittles-inner {
    text-align: center;
}

.mg-info-banner-fullwidth-subheading {
    font-size: 15px;
    color: #000000;
    line-height: 1;
}

.mg-info-banner-fullwidth-heading {
    font-size: 40px;
    color: #000000;
}

.mg-info-banner-fullwidth-price-off-text {
    font-size: 115px;
    color: #000;
    font-family: "Syne", sans-serif;
    border-top: 1px solid #707070;
    border-bottom: 1px solid #707070;
    line-height: 1;
    padding: 20px 8px 10px;
    margin: 25px 0 12px 0;
}

.mg-info-banner-fullwidth-text {
    font-size: 20px;
    color: #000;
    font-family: "Syne", sans-serif;
}

.mg-info-banner-fullwidth-btn {
    margin: 25px 0 0 0;
}

.mg-info-banner-fullwidth-btn .mg-btn {
    padding: 10px 30px;
    font-size: 15px;
    min-width: auto;
}

.mg-info-banner-fullwidth-btn .mg-btn:hover,
.mg-info-banner-fullwidth-btn .mg-btn:focus,
.mg-info-banner-fullwidth-btn .mg-btn:active {
    background-color: #000;
    color: #fff;
}

/*MG Information Banner Fullwidth End Here*/
/*MG Blog Section Start Here*/
.mg-blog-name-tittle {
    text-decoration: none;
    color: #000;
    font-size: 18px;
    line-height: 35px;
}

.mg-blog-name-tittle:hover,
.mg-blog-name-tittle:focus,
.mg-blog-name-tittle:active {
    color: #000000;
}

.mg-blog-sec-tittles {
    margin: 20px 20px;
}

.mg-blog-meta-text {
    font-size: 13px;
    text-transform: uppercase;
}

.mg-blog-meta-text a {
    color: #000000;
    text-decoration: none;
}

.mg-blog-meta-text a:hover,
.mg-blog-meta-text a:focus,
.mg-blog-meta-text a:active {
    color: #000;
}

.mg-blog-metas {
    margin: 0 20px;
}

.mg-blog-grid-outer-shadow-3 {
    margin-bottom: 15px;
    box-shadow: 5px 5px 10px rgba(68, 68, 68, 0.2);
    padding-bottom: 20px;
    text-align: left !important;
}

.mg-blog-metas .mg-meta-col {
    position: relative;
}

.mg-blog-metas .mg-meta-col::after {
    background: #707070;
    height: 10px;
    width: 1px;
    content: '';
    position: absolute;
    top: calc(50% - 5px);
    left: 100%;
}

.mg-blog-metas .mg-meta-col:last-child::after {
    content: none;
}

.mg-blog-grid-outer {
    margin-bottom: 15px;
}

.mg-blog-image.mg-blog-image-style1 {
    border-radius: 50px;
}

.mg-blog-slider .swiper-slide {
    padding: 0 12px;
}

.mg-blog-slider .swiper-wrapper {
    margin: 0 -12px;
}

.mg-blog-slider .swiper-button-prev::before {
    content: "\f053";
}

.mg-blog-slider .swiper-button-next::before {
    content: "\f054";
}

.mg-blog-slider .swiper-button-prev::before,
.mg-blog-slider .swiper-button-next::before {
    font-family: FontAwesome;
    color: #000;
}

.mg-blog-slider .swiper-button-prev {
    left: -6px;
}

.mg-blog-slider .swiper-button-next {
    right: -6px;
}

/*MG Blog Section End Here*/
/*MG Partner Slider Start Here*/
.mg-partner-slider.swiper-initialized .swiper-slide,
.mg-carousel.swiper-initialized .swiper-slide {
    display: inline-block;
    vertical-align: middle;
    padding: 0 15px;
}

.mg-partner-slider .swiper-slide,
.mg-carousel .swiper-slide {
    float: none;
}

.mg-partner-slide-logo img {
    max-width: 100%;
    margin: 0 auto;
    max-height: 60px;
    object-fit: contain;
    object-position: center center;
    opacity: .8;
}

.mg-partner-slide-logo img:hover {
    opacity: 1;
}

.mg-partner-slider .swiper-button-prev::before,
.mg-carousel .swiper-button-prev::before {
    content: "\f053";
}

.mg-partner-slider .swiper-button-prev::before,
.mg-partner-slider .swiper-button-next::before,
.mg-carousel .swiper-button-prev::before,
.mg-carousel .swiper-button-next::before {
    font-family: FontAwesome;
    color: #000;
}

.mg-partner-slider .swiper-button-next::before,
.mg-carousel .swiper-button-next::before {
    content: "\f054";
}

.mg-partner-section-outer {
    padding: 20px 0 50px 0;
}

/*MG Partner Slider End Here*/
/*MG Footer Start Here*/
.mg-footer-outer {
    background-color: #1E1E1E;
    padding: 60px 0 0 0;
}

.mg-footer-outer div,
.mg-footer-outer p,
.mg-footer-outer a {
    color: #fff;
    font-size: 14px;
    text-decoration: none;
}

.mg-footer-outer a:hover,
.mg-footer-outer a:focus,
.mg-footer-outer a:active {
    color: #B3B2B0;
}

.mg-footer-list ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.mg-footer-outer .mg-footer-heading {
    font-family: "Syne", sans-serif;
    font-size: 17px;
    text-transform: capitalize;
    margin-bottom: 20px;
}

.mg-footer-list ul li {
    padding: 5px 0;
}

.mg-footer-list ul li:first-child {
    padding-top: 0;
}

.mg-footer-list ul li:last-child {
    padding-bottom: 0;
}

.footer-logo img {
    max-width: 130px !important;
}

.footer-logo {
    margin-bottom: 20px;
}

.mg-footer-about-des p {
    margin-bottom: 10px;
}

.mg-footer-social-icon-outer ul {
    margin: 0;
    padding: 0;
    list-style: none;
    width: 100%;
}

.mg-footer-social-icon-outer ul li {
    display: inline-block;
    padding: 0 4px;
}

.mg-footer-social-icon-outer ul li:first-child {
    padding-left: 0;
}

.mg-footer-social-icon-outer ul li:last-child {
    padding-right: 0;
}

.mg-footer-social-icon-outer ul li img {
    max-width: 30px;
}

.mg-footer-social-icon-outer ul li i {
    display: inline-block;
    font-size: 20px;
    width: 30px;
    text-align: center;
    color: #000;
    transition: opacity .3s ease;
}

.mg-footer-social-icon-outer {
    margin-top: 60px;
}

.mg-footer-social-icon-outer ul li a:hover i,
.mg-footer-social-icon-outer ul li a:hover {
    opacity: 0.75;
}

.mg-footer-social-icon-outer ul li a:hover {
    opacity: 0.75;
}

.mg-copyright-outer {
    border-top: 1px solid rgba(255, 255, 255, 50%);
    margin-top: 60px;
    padding: 15px 0;
    text-align: center;
}

.mg-footer-outer .mg-copyright {
    color: rgba(255, 255, 255, 50%);
    font-size: 14px;
}

.mg-newsletter-form input {
    border-radius: 0;
    border: none;
    font-size: 12.5px;
    color: #000;
    padding: 8px 15px;
}

.mg-newsletter-form input:focus {
    box-shadow: none;
    border: none;
}

.mg-newsletter-form .btn.mg-btn {
    border-radius: 0;
    font-size: 12.5px;
    padding: 8px 30px;
    margin-top: 20px;
}

.mg-newsletter-form input.form-control {
    max-width: 300px;
    margin: 0 auto;
}

.back-to-top {
    bottom: 20px;
    cursor: pointer;
    display: none;
    position: fixed;
    right: 20px;
    z-index: 999;
    width: 40px;
    color: #fff;
    height: 40px;
    text-decoration: none;
    background: #000000;
    border: 1px solid #fff;
    font-size: 24px;
    text-align: center;
    line-height: 32px;
}

.back-to-top:hover,
.back-to-top:focus,
.back-to-top:active {
    color: #fff;
}

.back-to-top-style2 {
    bottom: 20px;
    cursor: pointer;
    display: none;
    position: fixed;
    right: 20px;
    z-index: 999;
    width: 40px;
    color: #fff;
    height: 40px;
    text-decoration: none;
    background: #000000;
    border: 1px solid #fff;
    font-size: 24px;
    text-align: center;
    line-height: 32px;
    border-radius: 20px;
}

.back-to-top-style2:hover,
.back-to-top-style2:focus,
.back-to-top-style2:active {
    color: #fff;
}

.back-to-top-style3 {
    bottom: 20px;
    cursor: pointer;
    display: none;
    position: fixed;
    right: 20px;
    z-index: 999;
    width: 40px;
    color: #fff;
    height: 40px;
    text-decoration: none;
    background: #000000;
    border: 1px solid #fff;
    font-size: 24px;
    text-align: center;
    line-height: 32px;
    border-radius: 10px;
}

.back-to-top-style3:hover,
.back-to-top-style3:focus,
.back-to-top-style3:active {
    color: #fff;
}

/*MG Footer End Here*/
/*Contact Page Start Here*/
.mg-contact-description-pannel h3 {
    font-size: 22px;
    font-family: "Syne", sans-serif;
}

.mg-contact-detail-icon {
    max-width: 15px;
}

.mg-contact-detail-heading {
    color: #000;
    margin-bottom: 0;
    margin-top: 10px;
}

.mg-contact-detail-subheading a {
    text-decoration: none;
    color: #656565;
}

.mg-contact-detail-subheading {
    margin: 4px 0 0 0;
}

.mg-contact-description-pannel-outer {
    border-right: 1px dashed rgba(112, 112, 112, 0.5);
    padding-right: 30px;
}

.mg-contact-detail-pannel-inner {
    padding-right: 40px;
}

.mg-contact-form-pannel-outer {
    padding-left: 40px;
}

.mg-form .form-label {
    font-size: 14px;
}

.mg-form .mg-input {
    border-radius: 0;
    border: 1px solid rgba(112, 112, 112, 0.15);
    padding: 8px 15px;
    color: #000;
    font-size: 13px;
    line-height: 1;
}

.mg-form textarea.mg-input {
    min-height: 100px;
}

.mg-btn.mg-form-btn {
    
    border-radius: 0;
    font-size: 14px;
    padding: 8px 30px;
    width: 100%;
}

.mg-form .mg-input:focus {
    outline: none;
    box-shadow: none;
}

/*Contact Page End Here*/
/*Privacy Policy Page Start Here*/
.mg-accordian-outer .accordion-button {
    padding: 0;
}

.mg-accordian-outer .accordion-body {
    padding: 10px 0 15px 0;
}

.mg-accordian-outer .accordion-button {
    font-size: 18px;
    border-bottom: 1px dashed rgba(112, 112, 112, 0.5);
    color: #000;
    font-weight: normal;
    padding: 18px 0;
    line-height: 1;
    background-color: transparent;
    box-shadow: none;
}

.mg-accordian-outer .accordion-item {
    border: none;
}

.mg-accordian-outer .accordion-button::after {
    background-size: 15px;
}

.mg-accordian-outer .accordion-collapse.collapse {
    border-bottom: 1px dashed rgba(112, 112, 112, 0.5);
}

.accordion-button:not(.collapsed)::after {
    background-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='black'><path fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/></svg>");
}

/*Privacy Policy Page End Here*/
/*Collection Page Start Here*/
.mg-collection-banner {
    background-image: url(../images/collection-banner.html);
    background-size: cover;
    background-position: center center;
    padding: 60px 0;
}

.mg-collection-banner-tittles .mg-heading {
    text-transform: capitalize;
}

.mg-collection-banner-tittles p {
    color: #000;
    font-size: 16px;
    margin-bottom: 25px;
}

.mg-heading.mg-heading-small {
    text-transform: capitalize;
    font-size: 30px;
}

.mg-sorting select {
    width: auto;
    display: inline-block;
    border: none;
    padding: 0;
    font-size: 13px;
    text-transform: capitalize;
    box-shadow: none !important;
    cursor: pointer;
    color: #000;
    min-width: 120px;
}

.mg-sorting label,
.mg-html-sorting-bar {
    font-size: 13px;
    text-transform: capitalize;
    color: rgba(0, 0, 0, 0.5);
    cursor: pointer;
}

.mg-html-sorting-bar {
    cursor: pointer;
    display: inline-block;
}

.mg-html-sorting-bar .mg-sorting-selected {
    color: #000;
    padding-left: 7px;
}

.mg-sorting select option {
    font-size: 12px;
    color: #000;
}

.mg-html-sorting-options-pannel ul {
    margin: 0;
    padding: 0;
    list-style: none;
    width: auto;
    display: inline-block;
    border: 1px solid #000000;
    background-color: #fff;
}

.mg-html-sorting-options-pannel li a {
    font-size: 13px;
    color: rgba(0, 0, 0, 1);
    text-decoration: none;
    padding: 5px 20px;
    display: block;
}

.mg-html-sorting-options-pannel li.selected a,
.mg-html-sorting-options-pannel li a:hover,
.mg-html-sorting-options-pannel li a:focus,
.mg-html-sorting-options-pannel li a:active {
    color: #fff;
    background-color: #000000;
    transition: all 0.3s ease-in;
}

.mg-html-sorting-outer {
    position: relative;
    margin-bottom: 15px;
}

.mg-html-sorting-options-pannel {
    position: absolute;
    z-index: 1;
    display: none;
}

.mg-filter-checkbox ul {
    margin: 0;
    padding: 0;
    list-style: none;
    width: 100%;
}

.mg-filter-checkbox ul li a {
    text-decoration: none;
    font-size: 14px;
    color: rgba(0, 0, 0, 0.6);
    position: relative;
    width: 100%;
    display: block;
}

.mg-filter-checkbox a:hover {
    color: #000000;
}

.mg-filter-checkbox ul li {
    padding: 8px 0;
    position: relative;
}

.mg-filter-checkbox ul li a::after {
    content: "";
    position: absolute;
    border: 1px solid rgba(112, 112, 112, 0.15);
    width: 18px;
    height: 18px;
    top: 50%;
    transform: translateY(-50%);
    color: #fff;
    font-size: 10px;
    font-weight: 900;
    text-align: center;
    right: 0;
    font-family: FontAwesome;
}

.mg-filter-checkbox ul li.active>a::after {
    content: "\f00c";
    background-color: #000;
    border-color: #000;
}

.mg-filter-outer .accordion-button:not(.collapsed)::after {
    transform: none;
}

.mg-filter-outer .mg-accordian-outer .accordion-button {
    border-bottom: none;
    padding: 35px 0 18px 0;
}

.mg-filter-outer .mg-accordian-outer .accordion-item {
    border-bottom: 1px solid rgba(112, 112, 112, 0.15);
    border-radius: 0;
}

.mg-filter-outer .mg-accordian-outer .accordion-collapse.collapse {
    border-bottom: none;
    border-radius: 0;
}

.mg-filter-outer .mg-accordian-outer .accordion-item:first-child .accordion-button {
    padding-top: 0;
}

.mg-filter-outer .mg-accordian-outer .accordion-item:last-child {
    border-bottom: none !important;
}

.mg-filter-outer .mg-color-variant-outer ul li {
    margin: 0 2px 5px 0;
}

.mg-active-variant {
    border: 1px solid #000000;
    padding: 1px;
}

.mg-active-variant .mg-color-variant {
    width: 21px;
    height: 21px;
}

.mg-filter-outer .mg-color-variant-outer {
    max-width: 70%;
}

.mg-filter-checkbox ul li:first-child {
    padding-top: 0;
}

.mg-filter-outer .mg-accordian-outer .accordion-body {
    padding: 0 0 15px 0;
    margin-bottom: 20px;
}

.mg-filter-outer .mg-accordian-outer .accordion-button.collapsed {
    padding-top: 18px;
}

/*Collection Page End Here*/
/*MG Pagination Start Here*/
.mg-pagination-outer .page-item {
    padding: 0 5px;
}

.mg-pagination-outer .page-link {
    border-radius: 0 !important;
    padding: 4px 12px;
    font-size: 15px;
    color: #000;
    border: 1px solid rgba(112, 112, 112, 0.15);
}

.mg-pagination-outer .pagination-nextprev .page-link {
    border: none;
    padding: 0 10px;
}

.pagination-nextprev .page-link img {
    max-width: 8px;
}

.mg-pagination-outer .page-link:hover,
.mg-pagination-outer .page-link:focus,
.mg-pagination-outer .page-link:active,
.mg-pagination-outer .page-link.active {
    color: #fff;
    background-color: #000000;
    border-color: #000000;
    box-shadow: none;
}

.mg-pagination-outer .pagination-nextprev .page-link:hover,
.mg-pagination-outer .pagination-nextprev .page-link:focus,
.mg-pagination-outer .pagination-nextprev .page-link:active {
    background-color: transparent;
    opacity: 0.75;
}

.mg-pagination-outer .pagination {
    margin: 0;
}

.mg-pagination-outer {
    border-top: 1px dashed rgba(112, 112, 112, 0.5);
    padding: 20px 0 0 0;
}

.mg-pagination-outer.pagination-no-border {
    border: none;
}

/*MG Pagination End  Here*/
/*MG Blog Start Here*/
.mg-blog-page-outer .mg-blog-grid-outer {
    margin-bottom: 50px;
}

.mg-blog-small-tittle .mg-blog-name-tittle {
    font-size: 16px;
    line-height: 28px;
}

/*MG Blog End Here*/
/*MG Single Blog Start Here*/
.mg-single-blog-content-pannel h2,
.mg-single-blog-content-pannel h3 {
    font-size: 18px;
    margin: 30px 0 15px 0;
}

.mg-single-blog-content-pannel h4,
.mg-single-blog-content-pannel h5,
.mg-single-blog-content-pannel h6 {
    font-size: 15px;
    margin: 30px 0 15px 0;
}

.mg-single-blog-content-pannel {
    margin: 25px 0 0 0;
}

.mg-single-blog-content-pannel p {
    color: #000;
}

.mg-single-comment-box-outer {
    border-top: 1px dashed rgba(112, 112, 112, 0.5);
    padding: 30px 0 0 0;
    margin: 30px 0 0 0;
}

.mg-single-comment-box-outer .mg-btn.mg-form-btn {
    width: auto;
    padding: 5px 40px;
}

.mg-single-comment-box-outer .mg-form textarea.mg-input {
    min-height: 80px;
}

.mg-related-blog-outer {
    margin-top: 70px;
}

.mg-related-blog-outer .mg-section-tittles {
    margin-bottom: 50px;
}

.mg-single-blog-sidebar-heading h3 {
    font-size: 18px;
    color: #000;
    font-weight: normal;
    margin: 15px 0;
}

.mg-single-blog-categories-outer ul {
    margin: 0;
    padding: 0;
    list-style: none;
    width: 100%;
}

.mg-single-blog-categories-outer ul li a {
    text-decoration: none;
    font-size: 14px;
    color: #656565;
}

.mg-single-blog-categories-outer ul li a:hover,
.mg-single-blog-categories-outer ul li a:focus,
.mg-single-blog-categories-outer ul li a:active {
    color: #000000;
    transition: all 0.3s ease-in;
}

.mg-single-blog-categories-outer ul li {
    padding: 3px 0;
}

.mg-single-blog-categories-outer ul li:first-child {
    padding-top: 0;
}

.mg-single-blog-categories-outer ul li:last-child {
    padding-bottom: 0;
}

.mg-border-break {
    border-top: 1px dashed rgba(112, 112, 112, 0.5);
    margin: 30px 0;
}

.mg-recent-post-tittles h3 {
    font-size: 14px;
    color: #000;
    line-height: 1.4;
    margin: 0;
}

.mg-recent-post-grid a {
    text-decoration: none;
}

.mg-recent-post-date {
    color: #656565;
    font-size: 12px;
    margin-top: 8px;
}

.mg-recent-post-grid {
    margin-bottom: 15px;
}

.mg-recent-post-grid a:hover .mg-recent-post-tittles h3 {
    color: #000000;
    transition: all 0.3s ease-in;
}

.mg-single-blog-tags-outer ul {
    margin: 0;
    padding: 0;
    list-style: none;
    width: 100%;
}

.mg-single-blog-tags-outer ul li a {
    font-size: 14px;
    text-decoration: none;
    color: #656565;
}

.mg-single-blog-tags-outer ul li a:hover,
.mg-single-blog-tags-outer ul li a:focus,
.mg-single-blog-tags-outer ul li a:active {
    color: #000000;
    transition: all 0.3s ease-in;
}

.mg-single-blog-tags-outer ul li {
    padding: 0px 5px 0 0;
    display: inline-block;
}

.mg-single-blog-tags-outer ul li:last-child {
    padding-right: 0;
}

.mg-single-blog-tags-outer ul li a::after {
    content: ',';
}

.mg-single-blog-tags-outer ul li:last-child a:after {
    content: '';
}

.mg-search-box input {
    border-radius: 0;
    border: 1px solid rgba(255, 255, 255, 0.5);
    padding: 7.5px 0 7.5px 18px;
    line-height: 1;
    font-size: 12px;
    color: #000;
    border-right: none;
    box-shadow: none;
    background: transparent;
}

.mg-single-blog-search .mg-search-box input {
    border: 1px solid rgba(0, 0, 0, 0.15);
    border-right: none;
}

.mg-search-box input:focus {
    border-color: rgba(255, 255, 255, 0.5);
    box-shadow: none;
}

.mg-search-box .btn {
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 0;
    font-size: 19px;
    padding: 0 8px;
    border-left: none;
    color: rgba(112, 112, 112, 0.3);
}

.banner-adds img {
    border-radius: 5px;
}


.mg-single-blog-search .mg-search-box .btn {
    border: 1px solid rgba(0, 0, 0, 0.15);
}

.mg-search-box .btn:focus {
    border-color: rgba(255, 255, 255, 0.5);
    box-shadow: none;
}

.mg-single-blog-search .mg-search-box .form-outline {
    width: calc(100% - 50px);
}

.mg-single-blog-search {
    margin-bottom: 30px;
}

/*MG Single Blog End Here*/
/*MG Profile Page Start Here*/
.mg-user-image img {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    object-fit: cover;
    object-position: center;
}

.mg-profile-user-name h2 {
    font-family: "Syne", sans-serif;
    margin: 0 0 10px 0;
    font-size: 24px;
    color: #000;
}

.mg-profile-user-login-details p {
    margin: 0;
    color: rgba(0, 0, 0, 0.5);
}

.mg-profile-user-login-details a {
    color: rgba(0, 0, 0, 0.5);
    text-decoration: none;
    padding-left: 15px;
}


.mg-profile-user-details-list-main {
    margin-top: 60px;
}

.mg-profile-user-details-list-heading {
    margin: 0;
    color: #000;
}

.mg-profile-user-details-list-des {
    margin: 0;
    color: #000;
}

.mg-profile-user-details-list-des a {
    color: #000;
    text-transform: uppercase;
    font-size: 13px;
}

.mg-profile-user-details-list-des a:hover,
.mg-profile-user-details-list-des a:focus,
.mg-profile-user-details-list-des a:active {
    color: #000000;
}

.mg-btn-fullwidth-half .mg-btn {
    width: auto;
    min-width: 50%;
}

.mg-profile-user-details-list-main {
    margin-top: 60px;
    margin-bottom: 50px;
}

/*MG Profile Page End Here*/
/*My Order Page Start Here*/
.mg-order-details-list-outer {
    margin-top: 60px;
    position: relative;
}

.mg-order-detail-list-grid {
    border-bottom: 1px dashed rgba(112, 112, 112, 0.5);
    padding: 35px 0 10px 0;
}

.mg-order-detail-list-grid:last-child {
    border-bottom: 1px dashed rgba(112, 112, 112, 0.5);
}

.mg-order-details div,
.mg-order-details span {
    font-size: 13px;
}

.mg-order-details .order-detil-grand-total {
    margin-top: 10px;
    font-size: 15px;
}

.mg-order-image {
    width: 60px;
    display: inline-block;
    vertical-align: top;
}

.mg-left-order-tittles {
    width: calc(100% - 65px);
    display: inline-block;
    padding-left: 10px;
}

.mg-order-price span {
    color: #656565;
    font-size: 11px;
    padding-left: 8px;
}

.mg-order-product-counter {
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    right: -5px;
    top: -5px;
    background-color: #000;
    color: #fff;
    border-radius: 50%;
    min-width: 15px;
    height: 15px;
    font-size: 10px;
    text-align: center;
}

.mg-order-product-size ul {
    margin: 0;
    padding: 0;
    list-style: none;
    width: 100%;
}

.mg-order-product-size ul li {
    display: inline-block;
}

.mg-order-product-size-text {
    border: 1px solid rgba(112, 112, 112, 0.15);
    padding: 3px 5px;
    font-size: 12px !important;
}

.mg-order-product-size {
    margin-top: 8px;
}

.mg-order-tittle-heading a {
    text-decoration: none;
    color: #000;
}

.mg-order-tittle-heading a:hover,
.mg-order-tittle-heading a:focus,
.mg-order-tittle-heading a:active {
    color: #000000;
}

.order-list-heading-main {
    font-size: 13px;
    border-top: 1px dashed rgba(112, 112, 112, 0.5);
    padding-top: 15px;
}

/*My Order Page End Here*/
/*MG Thank You Page Start Here*/
.thank-you-icon img {
    max-width: 90px;
}

.mg-thank-for-order-heading h2 {
    font-family: "Syne", sans-serif;
    font-size: 28px;
    margin: 25px 0 15px 0;
}

.mg-thank-you-des {
    margin: 0;
    color: #000;
    font-size: 16px;
}

.mg-thank-you-order-number {
    margin: 0;
    font-size: 13px;
    margin-top: 8px;
    color: #000;
}

.mg-order-confirmation-bar {
    border-bottom: 1px dashed rgba(112, 112, 112, 0.5);
    border-top: 1px dashed rgba(112, 112, 112, 0.5);
    padding: 10px 0;
}

.mg-order-confirmation-bar p {
    margin: 0;
    color: #000;
}

.mg-order-confirmation-bar {
    border-bottom: 1px dashed rgba(112, 112, 112, 0.5);
    border-top: 1px dashed rgba(112, 112, 112, 0.5);
    padding: 10px 0;
    margin-top: 60px;
}

.mg-order-detail-grid-heading {
    font-size: 18px;
    margin-bottom: 20px;
}

.mg-order-detail-list-grid.mg-order-heading-grid {
    padding: 20px 0 10px 0;
}

.mg-thank-you-order-product-details-outer {
    position: relative;
}

.mg-thank-you-order-product-details-outer .mg-order-detail-grid-heading {
    margin: 0;
    border-top: 1px dashed rgba(112, 112, 112, 0.5);
    padding-top: 15px;
}

.mg-delivery-details-outer .mg-order-detail-list-grid {
    border: none;
    padding-bottom: 20px;
}

.mg-payment-information-outer .mg-order-detail-list-grid {
    padding-bottom: 20px;
}

/*MG Thank You Page End Here*/
/*MG CART PAGE START HERE*/
.mg-cart-details-pannel-outer {
    background-color: #F9F9F9;
    padding: 20px 20px;
}

.mg-cart-order-summery-heading.text-center {
    font-family: "Syne", sans-serif;
    font-size: 20px;
}

.mg-cart-order-summary-des.text-center {
    font-size: 14px;
    margin-top: 5px;
}

.mg-cart-line-break {
    border-top: 1px solid rgba(112, 112, 112, 0.15);
    margin: 15px 0;
}

.mg-cart-list-text {
    font-size: 14px;
}

.mg-cart-detail-list-grid {
    margin-bottom: 10px;
}

.mg-btn.mg-black-btn {
    background-color: #000;
}

.mg-btn.mg-black-btn:hover,
.mg-btn.mg-black-btn:focus,
.mg-btn.mg-black-btn:active {
    background-color: #000000;
}

.mg-cart-secure-btn {
    font-size: 14px;
}

.mg-cart-secure-btn img {
    max-width: 24px;
    vertical-align: initial;
    padding-right: 10px;
}

.mg-cart-product-list-image {
    width: 100px;
    display: inline-block;
}

.mg-cart-product-list-image img {
    max-width: 100%;
}

.mg-cart-productr-list-details {
    width: calc(100% - 105px);
    display: inline-block;
    vertical-align: top;
    padding-left: 10px;
}

.mg-cart-product-tittle a {
    font-size: 14px;
    text-decoration: none;
    color: #000;
    margin-bottom: 10px;
    display: inline-block;
}

.mg-cart-quantity-size-btn-outer a{
        background: black;
    color: #fff;
    font-size: 13px;
    border: 1px solid black;
    position: absolute;
    right: 15px;
    bottom: 15px;
    padding: 6px 20px;
    text-decoration: none;
    text-transform: uppercase;

}

.mg-cart-product-price {
    font-size: 14px;
    color: #000;
}

.mg-cart-product-price span {
    font-size: 11px;
    color: #656565;
    padding-left: 5px;
}

.mg-cart-small-text {
    font-size: 11px;
    color: #656565;
}

.mg-cart-quantiy-outer {
    border: 1px solid rgba(112, 112, 112, 0.15);
    width: auto;
    display: inline-block;
}

.mg-cart-quantity {
    appearance: textfield;
    box-shadow: none;
    border: none;
    text-align: center;
    font-size: 14px;
    padding: 0;
    max-width: 50px;
    height: 28px;
}

.mg-cart-quantity:focus {
    outline: none;
    box-shadow: none;
    border: none;
}

.mg-quantity-step-btn {
    background: transparent;
    font-size: 8px;
    border: none;
    padding: 0 8px;
    height: 28px;
    vertical-align: top;
}

.mg-cart-size-btn-outer {
    display: inline-block;
    padding-left: 10px;
}

.mg-cart-size {
    border: 1px solid rgba(112, 112, 112, 0.15);
    font-size: 13px;
    padding: 4px 8px;
}

.mg-cart-stock-text {
    font-size: 14px;
    color: rgba(0, 218, 93, 0.8);
    margin-top: 10px;
}

.color-red {
    color: rgba(218, 0, 7, 0.8);
}

.mg-cart-product-list-heading {
    color: #000;
    font-size: 16px;
    border-bottom: 1px solid rgba(112, 112, 112, 0.15);
    padding-bottom: 10px;
}

.mg-cart-product-list-grid {
    border-bottom: 1px dashed rgba(112, 112, 112, 0.5);
    padding: 20px 0 15px 0;
    position: relative;
    display: flex;
}

.mg-cart-product-remove-btn a {
    background-color: rgba(240, 240, 240, 1);
    border-radius: 3px;
    width: 25px;
    font-size: 15px;
    height: 25px;
    display: inline-block;
    text-align: center;
    line-height: 25px;
    color: #656565;
    text-decoration: none;
}

.mg-cart-product-remove-btn {
    position: absolute;
    right: 0;
}

.mg-wishlist-add-to-cart-outer {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    align-self: center;
    order: -1;
    margin: 0 14px 0 0;
    padding-left: 0;
}

.mg-wishlist-add-to-cart-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 112px;
    min-height: 32px;
    padding: 7px 12px;
    border: 1px solid #111;
    border-radius: 6px;
    background: #111;
    color: #fff;
    font-size: 11px;
    font-weight: 600;
    line-height: 1.2;
    text-decoration: none;
    text-transform: uppercase;
    transition: background 0.2s ease, color 0.2s ease, opacity 0.2s ease;
}

.mg-wishlist-add-to-cart-btn:hover,
.mg-wishlist-add-to-cart-btn:focus {
    background: #fff;
    color: #111;
}

.mg-wishlist-add-to-cart-btn--disabled {
    border-color: #d8d8d8;
    background: #eeeeee;
    color: #777;
    cursor: not-allowed;
}

.mg-wishlist-add-to-cart-btn--disabled:hover,
.mg-wishlist-add-to-cart-btn--disabled:focus {
    background: #eeeeee;
    color: #777;
}

.mg-you-may-like-product-carousal .mg-product-main {
    padding: 0 15px;
}

.mg-you-may-like-section-outer {
    padding-top: 100px;
}

.mg-you-may-like-product-carousal .swiper-button-prev::before {
    content: "\f053";
}

.mg-you-may-like-product-carousal .swiper-button-prev::before,
.mg-you-may-like-product-carousal .swiper-button-next::before {
    font-family: FontAwesome;
    color: #000;
}

.mg-you-may-like-product-carousal .swiper-button-next::before {
    content: "\f054";
}

.mg-you-may-like-product-carousal .mg-product-tittles {
    margin: 20px 0 0 0;
}

.mg-cart-promo-input-main {
    border: 1px solid rgba(112, 112, 112, 0.15);
    padding: 5px;
}

.cart-promo-code-form input {
    border: none;
    font-size: 14px;
}

.cart-promo-code-form input:focus {
    box-shadow: none;
    border: none;
}

.mg-btn.mg-promo-btn {
    border-radius: 0;
    padding: 5px 15px;
    border: none;
}

/*MG CART PAGE END HERE*/
/*Checkout Page Start Here*/
.mg-checkout-order-details-list-outer .mg-cart-product-list-heading {
    border-bottom: 1px dashed rgba(112, 112, 112, 0.5);
    padding: 0 0 15px 0;
}

.mg-checkout-login-text {
    font-size: 14px;
    color: #656565;
}

.mg-checkout-login-text a {
    color: #656565;
    text-decoration: none;
}

.mg-checkout-form-heading {
    font-size: 16px;
    color: #000;
}

.mg-checkout-form label {
    color: #656565;
    font-size: 14px;
}

.mg-checkout-form .form-check-input[type="checkbox"] {
    border-radius: 0;
}

.mg-form select.mg-input {
    color: rgba(0, 0, 0, 0.5);
}

.mg-form .mg-input::placeholder {
    color: rgba(0, 0, 0, 0.5);
    opacity: 1;
}

/*Checkout Page End Here*/
/*MG Homepage 3 Start Here*/
.mg-top-bar-outer {
    background-color: #222222;
    padding: 5px 0;
}

.top-bar-text {
    color: #fff;
    font-size: 12px;
}

.top-bar-text {
    height: 20px;
    position: relative;
    overflow: hidden;
}

.top-bar-text span {
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    width: 100%;
    opacity: 0;
    animation: topBarBounce 9s infinite;
}

.top-bar-text span:nth-child(1) {animation-delay: 0s;}
.top-bar-text span:nth-child(2) {animation-delay: 3s;}
.top-bar-text span:nth-child(3) {animation-delay: 6s;}

@keyframes topBarBounce {
    0% {
        opacity: 0;
        transform: translateY(18px);
    } 
    8% {
        opacity: 1;
        transform: translateY(-4px);
    }
    14% {
        transform: translateY(0);
    }
    32% {
        opacity: 1;
        transform: translateY(0px);
    }
    42% {
        opacity: 0;
        transform: translateY(-18px);
    }
    100% {
        opacity: 0;
        transform: translateY(-18px);
    }
}

.top-bar-text a {
    color: #fff;
    text-decoration: none;
}

.mg-top-bar-social-icons ul {
    margin: 0;
    padding: 0;
    list-style: none;
    line-height: 1;
}

.mg-top-bar-social-icons ul li {
    display: inline-block;
}

.mg-top-bar-social-icons ul li i {
    display: inline-block;
    font-size: 14px;
    text-align: center;
    color: #fff;
    transition: opacity .3s ease;
}

.mg-top-bar-social-icons img:hover,
.mg-top-bar-social-icons ul li a:hover i {
    opacity: 0.9;
}

.mg-home3 .mg-header-icon-counter {
    background-color: #000000;
}

.mg-dark-bg-banner .mg-home-banner-main-heading h2,
.mg-dark-bg-banner .mg-home-banner-main-heading h3 {
    color: #fff;
}

.mg-dark-bg-banner .mg-home-banner-main-heading {
    background-color: transparent;
}

.mg-dark-bg-banner .banner-social-bar ul li a {
    color: #fff;
}

.mg-dark-bg-banner .banner-social-bar ul li a:hover,
.mg-dark-bg-banner .banner-social-bar ul li a:focus,
.mg-dark-bg-banner .banner-social-bar ul li a:active {
    color: #fff;
}

.mg-dark-bg-banner .banner-social-bar ul li::after {
    background: #fff;
}

.mg-dark-bg-banner .home-slider .swiper-pagination .swiper-pagination-bullet {
    background-color: #fff;
}

.mg-dark-bg-banner .home-slider .swiper-pagination .swiper-pagination-bullet-active {
    background-color: #fff;
    border-color: #fff !important;
    box-shadow: 0 0 0 1px #fff;
}

.mg-dark-bg-banner .home-slider .swiper-button-prev::before {
    background-image: url('../images/white-arrow-left.html');
}

.mg-dark-bg-banner .home-slider .swiper-button-next::before {
    background-image: url('../images/white-arrow-right.html');
}

.mg-btn.mg-outlined-btn {
    background-color: transparent;
    border: 1px solid #fff;
}

.mg-btn.mg-outlined-btn:hover,
.mg-btn.mg-outlined-btn:focus,
.mg-btn.mg-outlined-btn:active {
    background-color: #fff;
    color: #000;
}

/*MG Video Banner Start Here*/
.mg-video-banner {
    height: 100vh;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mg-video-banner-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.mg-video-banner-content {
    position: relative;
    z-index: 2;
    width: 100%;
    height: 100%;
}

.mg-video-banner .mg-home-banner {
    width: 100%;
}

.mg-video-banner .mg-home-banner-main-heading h2,
.mg-video-banner .mg-home-banner-main-heading h3 {
    color: #fff;
}

.mg-video-banner .banner-social-bar {
    z-index: 3;
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
}

/*MG Video Banner End Here*/
.mg-light-bg-footer.mg-footer-outer {
    background-color: #f6f6f6;
}

.mg-light-bg-footer.mg-footer-outer div,
.mg-light-bg-footer.mg-footer-outer p,
.mg-light-bg-footer.mg-footer-outer a {
    color: #000;
}

.mg-light-bg-footer.mg-footer-outer .mg-footer-heading {
    color: #000000;
}

.mg-light-bg-footer .mg-newsletter-form input {
    border: 1px solid rgba(112, 112, 112, 0.15);
}

.mg-light-bg-footer .mg-btn:hover,
.mg-light-bg-footer .mg-btn:focus,
.mg-light-bg-footer .mg-btn:active {
    background-color: #000;
    color: #fff;
}

.mg-bg-partner-section.mg-partner-section-outer {
    padding: 30px 0;
    background-color: #F9F9F9;
}

.mg-copyright-outer.mg-light-bg-footer-copyright {
    background-color: #000000;
    padding: 20px 0;
    margin-top: 30px;
}

.mg-footer-outer.mg-light-bg-footer .mg-light-bg-footer-copyright .mg-copyright {
    color: #fff;
}

/* .mg-video-section-inner {
    background-image: url('../images/info-banner5.html');
    background-position: center center;
    padding: 100px 0;
} */
.mg-video-section-description-pannel {
    background-color: rgba(255, 255, 255, 0.65);
    padding: 15px;
}

.mg-video-section-description-pannel h2 {
    font-family: "Syne", sans-serif;
    text-transform: uppercase;
    font-size: 28px;
}

.mg-video-section-description-pannel p {
    max-width: 55%;
    margin: 0 auto;
}

.mg-video-play-section-main a {
    display: inline-block;
    text-decoration: none;
}

.mg-video-play-inner {
    background-color: rgba(143, 107, 108, 0.79);
    width: 100px;
    height: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
}

/* VIDEO SLIDER BUTTON OVERLAY */
.mg-video-slider-item {
    position: relative;
    padding: 0px 7px;
}

.mg-video-slider-item video {
    display: block;
    width: 100%;
    height: auto;
    object-fit: cover;
    max-height: 500px;
    border-radius: 12px;
}

.mg-video-slide-button {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
}

.mg-shop-now-btn {
    background-color: rgba(0, 0, 0, 0.85);
    color: #fff;
    padding: 14px 34px;
    text-decoration: none;
    font-size: 15px;
    font-weight: 700;
    border-radius: 50px;
    display: inline-block;
    transition: all 0.3s ease;
}

.mg-shop-now-btn:hover,
.mg-shop-now-btn:focus,
.mg-shop-now-btn:active {
    background-color: #fff;
    color: #000;
    text-decoration: none;
}

.mg-video-play-inner:hover {
    background-color: #000000;
}

.mg-video-play-inner i {
    color: #fff;
    font-size: 30px;
}

.mg-video-play-section-main {
    margin-bottom: 20px;
}


@media (max-width:768px) {
    .mg-shop-now-btn {
        padding: 4px 8px !important;
        font-size: 12px !important;
    }
}

/*MG Homepage 3 End Here*/
/*Account Modal Start Here*/
.mg-account-modal-content .modal-header {
    padding: 10px 10px;
    border: none;
}

.modal-content.mg-account-modal-content {
    border-radius: 0;
    border: none;
    padding: 0 0;
}

.mg-account-modal-content .modal-body {
    padding: 0 25px 30px 25px;
}

.mg-account-modal-content .modal-header .btn-close {
    font-size: 10px;
    color: #000;
    opacity: 1;
}

.mg-account-tabs .mg-account-tab-btn {
    padding: 0 0 12px 0;
    width: 50%;
    border: none;
    border-bottom: 2px solid rgba(0, 0, 0, 0.1);
    font-family: "Syne", sans-serif;
    font-size: 20px;
    color: #000;
}

.mg-account-tabs .mg-account-tab-btn.active {
    border-bottom: 2px solid #000000;
    color: #000;
}

.mg-account-tab-content {
    padding: 15px 0 0 0;
}

.mg-form-text {
    color: #000;
    font-size: 14px;
}

.mg-form-text a {
    color: #000;
    text-decoration: none;
}

.mg-form-text a:hover,
.mg-form-text a:focus,
.mg-form-text a:active {
    color: #000000;
}

.mg-account-modal-outer button:focus,
button:focus {
    box-shadow: none;
    outline: none;
}

.form-label {
    margin-bottom: 12px;
}
/* 
.mg-account-modal-outer .modal-dialog {
    max-width: 400px; 
}
     */
.mg-account-modal-outer .modal-dialog {
    width: calc(100% - 20px);
    max-width: 400px;
    margin: 10px auto;
}


.mg-login-other-options {
    border-top: 1px dashed rgba(112, 112, 112, 0.5);
    padding-top: 30px;
}

.mg-login-other-options ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.mg-login-other-options ul li {
    display: inline-block;
}

.mg-login-other-options ul li img {
    max-width: 25px;
}

.mg-login-other-options ul li i {
    display: inline-block;
    font-size: 20px;
    width: 25px;
    text-align: center;
    color: #000;
    transition: opacity .3s ease;
}

.mg-login-other-options ul li a:hover i,
.mg-login-other-options ul li a:hover {
    opacity: 0.75;
}

.mg-login-other-heading {
    margin-bottom: 12px;
}

.mg-login-other-options.mg-signup-other-options {
    border: none;
}
.mg-product-page-details-outer{
    padding-left: 60px;
}
/*Account Modal End Here*/
/*Product Page Start Here*/
.mg-product-gallery {
    width: 100%;
    max-width: 620px;
}

.mg-product-gallery__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

.mg-product-gallery__item {
    position: relative;
    display: block;
    width: 100%;
    aspect-ratio: 1 / 1;
    padding: 0;
    border: 0;
    border-radius: 10px;
    overflow: hidden;
    background: #f5f5f5;
    cursor: zoom-in;
}

.mg-product-gallery__item--hidden {
    display: none;
}

.mg-product-gallery__item img {
    width: 100%;
    height: 100%!important;
    display: block;
    object-fit: cover;
    transition: transform 0.35s ease;
}

.mg-product-gallery__item:hover img,
.mg-product-gallery__item:focus img {
    transform: scale(1.04);
}

.mg-product-gallery__more {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px;
    background: rgba(0, 0, 0, 0.68);
    color: #fff;
    font-family: "Syne", sans-serif;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 1px;
    text-align: center;
    text-transform: uppercase;
}

body.mg-lightbox-open {
    overflow: hidden;
}

.mg-product-lightbox {
    position: fixed;
    inset: 0;
    z-index: 99999;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 74px 90px 128px;
    background: rgba(0, 0, 0, 0.92);
}

.mg-product-lightbox.is-open {
    display: flex;
}

.mg-product-lightbox__stage {
    position: relative;
    width: min(86vw, 980px);
    height: min(70vh, 720px);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: auto;
    padding: 0 20px;
}

.mg-product-lightbox__stage img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    border-radius: 8px;
    transition: transform 0.25s ease;
    cursor: zoom-in;
}

.mg-product-lightbox__stage img.is-zoomed {
    max-width: none;
    max-height: none;
    width: auto;
    height: auto;
    transform: scale(1.5);
    cursor: zoom-out;
}

.mg-product-lightbox__close,
.mg-product-lightbox__zoom,
.mg-product-lightbox__nav,
.mg-product-lightbox__thumb {
    border: 0;
    color: #fff;
    background: rgba(255, 255, 255, 0.12);
}

.mg-product-lightbox__close,
.mg-product-lightbox__zoom,
.mg-product-lightbox__nav {
    position: absolute;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s ease, color 0.2s ease;
}

.mg-product-lightbox__close:hover,
.mg-product-lightbox__zoom:hover,
.mg-product-lightbox__nav:hover {
    background: #fff;
    color: #000;
}

.mg-product-lightbox__close {
    top: 24px;
    right: 28px;
    font-size: 42px;
    
}

.mg-product-lightbox__zoom {
    top: 24px;
    right: 86px;
    display: none;
    z-index: 2;
}

.mg-product-lightbox__nav {
    top: 50%;
    transform: translateY(-50%);
}

.mg-product-lightbox__nav--prev {
    left: 28px;
}

.mg-product-lightbox__nav--next {
    right: 28px;
}

.mg-product-lightbox__thumbs {
    position: absolute;
    left: 50%;
    bottom: 28px;
    width: min(760px, calc(95vw - 40px));
    display: flex;
    gap: 10px;
    justify-content: center;
    overflow-x: auto;
    transform: translateX(-50%);
    padding-bottom: 4px;
}

.mg-product-lightbox__thumbs.is-hidden {
    display: none;
}

.mg-product-lightbox__thumb {
    width: 68px;
    height: 78px;
    flex: 0 0 auto;
    padding: 0;
    border-radius: 8px;
    overflow: hidden;
    opacity: 0.52;
    outline: 2px solid transparent;
}

.mg-product-lightbox__thumb.is-active {
    opacity: 1;
    outline-color: #fff;
}

.mg-product-lightbox__thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}


@media (max-width: 768px) {
    .mg-product-gallery__grid {
        gap: 8px;
    }

    .mg-product-gallery__more {
        font-size: 12px;
    }

    .mg-product-lightbox {
        padding: 64px 14px 112px;
    }

    .mg-product-lightbox__stage {
        width: 100%;
        height: calc(100vh - 188px);
    }

    .mg-product-lightbox__close {
        top: 14px;
        right: 14px;
    }

    .mg-product-lightbox__zoom {
        top: 8px;
        right: 60px;
    }

    .mg-product-lightbox__nav {
        width: 38px;
        height: 38px;
        background:white;
        color: black;
        z-index: 2;
        box-shadow: 0px 4px 20px #0000001a;
    }

    .mg-product-lightbox__nav--prev {
        left: 10px;
    }

    .mg-product-lightbox__nav--next {
        right: 10px;
    }

    .mg-product-lightbox__thumb {
        width: 54px;
        height: 64px;
    }
  
}

.mg-product-slider-thumb .swiper-wrapper{
    margin-left: 0 !important;
}
.mg-product-slider-thumb .swiper-slide {
    height: 92px;
    padding: 0;
    opacity: 0.55;
    transition: opacity 0.2s ease;
}

.mg-product-slider-thumb {
    margin-top: 15px;
    max-width: 550px;
    padding: 0 26px;
    cursor: pointer;
}

.mg-product-slider-thumb .swiper-button-prev::before {
    content: "\f053";
}

.mg-product-slider-thumb .swiper-button-prev::before,
.mg-product-slider-thumb .swiper-button-next::before {
    font-family: FontAwesome;
    color: #656565;
    font-size: 12px;
}

.mg-product-slider-thumb .swiper-button-next::before {
    content: "\f054";
}

.mg-product-slider-thumb .swiper-button-prev {
    left: 0;
}

.mg-product-slider-thumb .swiper-button-next {
    right: 0;
}

.mg-product-slider-thumb .swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border: 1px solid transparent;
    opacity: 1;
}

.mg-product-slider-thumb .swiper-slide.swiper-slide-thumb-active {
    opacity: 1;
}

.mg-product-slider-thumb .swiper-slide.swiper-slide-thumb-active img {
    border-color: #111;
}

.mg-product-page-product-tittle {
    font-family: "Syne", sans-serif;
    font-size: 24px;
}

.mg-ratings-full i {
    font-size: 13px;
    padding-right: 2px;
    color: rgba(112, 112, 112, 0.15);
}

.mg-ratings {
    position: absolute;
    left: 0;
    white-space: nowrap;
    overflow: hidden;
}

.mg-ratings i {
    color: #000;
}

.mg-ratings-full {
    position: relative;
    display: inline-block;
}

.mg-rating-count {
    display: inline-block;
    padding-left: 10px;
    font-size: 14px;
}

.mg-rating-outer {
    display: inline-block;
}

.mg-rating-pannel {
    margin-top: 5px;
}

.mg-price {
    font-size: 25px;
    font-weight: bold;

}
.mg-offer-price {
    display: flex;
    gap: 10px;
    align-items: center;
}
.mg-offer-price bdi{
    font-family: "jost",sans-serif!important;
    font-weight: 700;
    font-size: 24px;
}


.mg-offer-price .mg-inclusive-text {
    font-size: 14px;
    color: #bcbcbc;
    font-weight: 600;
}

.mg-product-page-regular-price {
    font-family: "jost",sans-serif!important;
    font-size: 18px;
    color: #979797;
    font-weight: 600;
}

.mg-product-page-small-text {
    font-size: 16px;
    font-weight: 500;
    text-transform: uppercase;
    color: #00863a;
}

.mg-og-price{
    display: flex;
    gap: 30px;
    align-items: flex-end;
    margin-top: 6px;
}

.short-description a{
    font-size:14px;
    font-weight: 500; 
}

.mg-short-description-body {
    font-size: 14px;
    margin-top: 10px;
    color: #666666;
    font-weight: 500;
}
/* 
.mg-product-page-small-text {
    font-size: 14px;
    color: rgba(0, 0, 0, 0.5);
} */

.mg-product-page-small-heading {
    font-size: 14px;
    color: rgba(0, 0, 0, 0.5);
    margin-bottom: 5px;
}

.mg-stock-text {
    font-size: 14px;
    color: #00DA5D;
    white-space: nowrap;
}

.mg-color-variant-outer ul {
    margin: 0;
    padding: 0;
    list-style: none;
    width: 100%;
}

.mg-color-variant-outer ul li {
    display: inline-block;
}

.mg-color-variant {
    width: 25px;
    height: 25px;
    display: block;
    border: 1px solid rgba(112, 112, 112, 0.15);
    text-decoration: none;
}

.mg-size-variant-outer ul {
    margin: 0;
    padding: 0;
    list-style: none;
    width: 100%;
}

.mg-size-variant-outer ul li {
    display: inline-block;
    padding: 0 2px;
}

.mg-size-variant-outer ul li a {
    text-decoration: none;
    border: 1px solid rgba(112, 112, 112, 0.15);
    font-size: 13px;
    color: #000;
    padding: 4px 8px;
    display: inline-block;
}

.mg-size-variant-outer ul li a:hover,
.mg-size-variant-outer ul li a:focus,
.mg-size-variant-outer ul li a:active {
    background-color: #000000;
    color: #fff;
    transition: all 0.3s ease-in;
}

.mg-size-variant-outer ul li.active a {
    background-color: #000000;
    color: #fff;
}

.mg-size-chart span img {
    max-width: 30px;
}

.mg-size-chart span {
    vertical-align: bottom;
    padding-right: 12px;
}

.mg-size-chart a {
    color: rgba(0, 0, 0, 0.5);
    text-decoration: none;
}

.mg-quantity-variant-outer .mg-cart-quantity {
    font-size: 20px;
    max-width: 60px;
    height: 40px;
}

.mg-quantity-variant-outer .mg-quantity-step-btn {
    font-size: 10px;
    padding: 0 15px;
    height: 40px;
}

.mg-product-page-sec-spacing {
    margin-top: 30px;
}

.mg-btn-icon {
    vertical-align: text-bottom;
}

.mg-btn-icon img {
    max-width: 17px;
    margin-right: 12px;
}

.mg-product-brief-details,
.mg-product-brief-details div,
.mg-product-brief-details span {
    color: #656565;
    font-size: 14px;
}

.mg-free-shipping-bar {
    background-color: rgba(0, 0, 0, 0.05);
    font-size: 14px;
    padding: 10px 10px;
}

.mg-list li a {
    color: #656565;
    text-decoration: none;
}

.mg-list {
    list-style: none;
    margin: 0;
    padding: 0 0 0 20px;
}

.mg-list li {
    font-size: 14px;
    color: #656565;
    padding: 0 0 20px 0;
    position: relative;
}

.mg-list li::before {
    content: url('../images/list-type.html');
    position: absolute;
    left: -25px;
    top: 5px;
}

.mg-rating-count.mg-rating-count-review-tab {
    display: block;
    padding: 0;
}

.mg-rating-pannel{
    display: inline-flex;
    gap: 10px;
    margin-top: 8px;
}

span.woocommerce-Price-amount.amount{
    font-family: "jost",sans-serif!important;
}

.mg-rating-progress {
    width: 300px;
    height: 8px;
    background-color: #F5F5F5;
}

.mg-rating-progress span {
    background-color: #000;
    display: block;
    height: 100%;
}

.mg-rating-label {
    font-size: 14px;
    line-height: 1;
}

.mg-rating-label-outer {
    display: inline-block;
    width: 110px;
    text-align: left;
}

.mg-rating-progress-outer {
    display: inline-block;
}

.mg-rating-score {
    font-size: 28px;
    font-family: "Syne", sans-serif;
    color: #000;
    line-height: 1;
}

.mg-customer-review-user-detail-image img {
    width: 60px;
    height: 60px;
    object-fit: cover;
}

/* VIDEO SLIDER SECTION START */
.mg-video-slider-section {
    position: relative;
    width: 100%;
}

.mg-video-slider {
    position: relative;
}

.mg-video-slider-item {
    position: relative;
}

.mg-video-slider-item video {
    display: block;
    max-height: 500px;
    object-fit: cover;
}

.mg-video-slider-btn-overlay {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
}

.mg-shop-now-btn {
    background-color: #0000006b;
    color: #fff;
    padding: 4px 14px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 400;
    display: inline-block;
    transition: all 0.3s ease;
}

.mg-shop-now-btn:hover,
.mg-shop-now-btn:focus,
.mg-shop-now-btn:active {
    background-color: #fff;
    color: #000;
    border-color: #000;
}



.mg-customer-review-user-detail-image {
    display: inline-block;
    width: 70px;
}

.mg-customer-review-user-details {
    display: inline-block;
    width: calc(100% - 75px);
    vertical-align: middle;
}

.mg-customer-username {
    font-size: 14px;
    color: #000;
    line-height: 1;
}

.mg-user-review-date {
    color: #656565;
    font-size: 12px;
}

.mg-customer-review-text p {
    color: #000;
}

.mg-customer-review-like-comment-btn ul {
    list-style: none;
    padding: 0;
    margin: 0;
    width: 100%;
}

.mg-customer-review-like-comment-btn ul li {
    display: inline-block;
    padding: 0 10px 0px 0;
    font-size: 14px;
    color: #000;
}

.mg-customer-review-like-comment-btn ul li a {
    color: #000;
    text-decoration: none;
}

.mg-customer-review-like-comment-btn ul li a:hover,
.mg-customer-review-like-comment-btn ul li a:focus,
.mg-customer-review-like-comment-btn ul li a:active {
    color: #000000;
}

.color-acent,
.color-acent a {
    color: #000000 !important;
}

.color-acent a:hover,
.color-acent a:focus,
.color-acent a:active {
    color: #000;
}

.mg-see-more-reviews-btn a {
    color: #000;
    font-size: 16px;
    text-transform: uppercase;
}

.mg-write-review-btn {
    margin-top: 35px;
    margin-bottom: 20px;
}

.mg-write-review-btn .mg-btn {
    color: white;
}

.mg-write-review-btn .mg-btn:hover {
    color: white;
}

.modal-content.mg-default-modal-content {
    border-radius: 0;
    border: none;
    padding: 20px 20px;
}

.mg-default-modal-content .modal-header .btn-close {
    font-size: 10px;
}

.mg-default-modal-content .modal-header {
    border: none;
    padding: 0;
}

.mg-default-modal-content .modal-body {
    padding: 20px 0 0 0;
}

.mg-size-table th {
    padding: 8px 10px;
    background-color: #000;
    color: #fff;
    font-size: 14px;
    font-weight: normal;
    border: none;
}

.mg-size-table tr {
    font-size: 13px;
    color: #656565;
    text-align: center;
}

.mg-size-table td {
    padding: 13px 10px;
    border-bottom: 1px dashed rgba(112, 112, 112, 0.5);
    background-color: rgba(27, 27, 27, 0.05);
}

.mg-size-table td:nth-child(2n+1) {
    background: #fff;
}

.mg-default-modal .modal-dialog {
    max-width: 600px;
}

.mg-size-table tbody {
    border: 1px solid rgba(112, 112, 112, 0.5);
}

.table.mg-size-table>thead {
    border: 1px solid #000;
}

.mg-size-table tr td:first-child {
    text-align: left;
}

.table.mg-size-table {
    margin: 0;
}

.size-chart-heading {
    font-family: "Syne", sans-serif;
    font-size: 24px;
}

.size-chart-heading span {
    font-size: 14px;
}

.mg-product-add-to-cart-outer .mg-btn.mg-form-btn {
    font-size: 13px;
    padding: 8px 10px;
}

.mg-product-add-to-cart-outer .mg-btn.mg-black-btn {
    font-size: 16px;
    padding: 16px;
    background: #F9FAFB;
    border: 1px black solid;
    border-radius: 10px;
    color: black;
    font-weight: bold;
    opacity: 100%;
}

.mg-product-add-to-cart-outer .mg-btn.mg-black-btn:hover{
    background-color: #eaeaea;
}

.mg-product-add-to-cart-outer .mg-btn.mg-wishlist-btn{
    font-size: 16px;
    padding: 16px;
    background: black;
    color: white;
    font-weight: bold;
    border-radius: 10px;
    border: 1px black solid;
    opacity: 100%;
}

.mg-product-add-to-cart-outer .mg-btn.mg-wishlist-btn:hover{
    background-color: black;
    opacity: 70%!important;
}

.mg-product-add-to-cart-outer .row {
    gap: 10px;
}

.mg-product-add-to-cart-outer .col-6 {
    width: calc(50% - 5px);
}

.mg-product-add-to-cart-outer .mg-btn.mg-out-of-stock-btn {
    font-size: 16px;
    padding: 16px;
    background: #eaeaea;
    color: rgb(127, 127, 127);
    font-weight: bold;
    border-radius: 10px;
    border: 1px #eaeaea solid;
    opacity: 100%;
}

.mg-cart-sub-banner {
    padding: 20px 0 0 0;
}

.mg-cart-sub-banner .cart-sub-banner-item p {
    padding: 13px 0 0 0;
    font-size: 13px;
    line-height: 17px;
}

.mg-cart-sub-banner .cart-sub-banner-item svg{
    width: 2em;
    height: 2em;
}



.mg-you-may-like-product-carousal {
    margin-top: 70px;
}


.mg-btn-icon img {
    margin-right: 14px;
    width: 22px;
    height: auto;
}

.mg-review-star-rating-form label:before {
    content: "\f005";
}

.mg-review-star-rating-form label {
    font-family: FontAwesome;
    font-size: 18px;
    float: right;
    cursor: pointer;
}

.mg-review-star-rating-form-inner:not(:checked)>label {
    color: rgba(112, 112, 112, 0.15);
}

.mg-review-star-rating-form-inner:not(:checked)>label:hover,
.mg-review-star-rating-form-inner:not(:checked)>label:hover~label {
    color: #000;
}

.mg-review-star-rating-form-inner>input:checked~label {
    color: #000;
}

.mg-review-star-rating-form {
    width: 100%;
    display: flex;
    justify-content: flex-start;
}

.mg-review-star-rating-form input {
    display: none;
}

.mg-write-review-pannel-heading h3 {
    font-family: "Syne", sans-serif;

    font-size: 24px;
    margin-bottom: 0;
}

.mg-write-review-pannel-outer {
    display: none;
}

/*Product Page End Here*/
/*Homepage 2 Start Here*/
.mg-blog-grid-outer-shadow {
    margin-bottom: 15px;
    box-shadow: 0 3px 10px rgb(0 0 0 / 0.1);
    padding-bottom: 20px;
    border-radius: 5px;
}

.mg-blog-grid-outer .mg-blog-image {
    border-radius: 12px;
}

.mg-transparent-header {
    background-color: #000;
}

.mg-transparent-header .mg-header-outer {
    padding: 15px 0;
    border-bottom: none;
}

.mg-footer-style2-menu ul {
    padding: 0;
    list-style: none;
    width: 100%;
    margin: 0;
}

.mg-footer-style2-menu ul li a {
    text-decoration: none;
    color: #000;
    font-size: 14px;
}

.mg-footer-style2-menu ul li a:hover,
.mg-footer-style2-menu ul li a:focus,
.mg-footer-style2-menu ul li a:active {
    color: #000000;
}

.mg-footer-style2-menu li {
    padding: 3px 0;
}

.mg-footer-style2-outer {
    padding: 60px 0;
}

.mg-footer-style2-outer .mg-copyright a {
    text-decoration: none;
    color: #212529;
}

.mg-home2-footer-logo img {
    max-width: 200px;
}

.mg-home2-footer-logo-text {
    font-size: 22px;
    font-family: "Syne", sans-serif;
}

.mg-home2-footer-newsletter-outer {
    margin-top: 50px;
}

.mg-home2-newsletter-form input {
    border-radius: 0;
    font-size: 14px;
    padding: 8px 20px;
    color: #000;
    border: 1px solid rgba(112, 112, 112, 0.15);
}

.mg-home2-newsletter-form input:focus {
    box-shadow: none;
    outline: none;
}

.home-2 .mg-copyright-outer {
    border-top: none;
    margin-top: 40px;
    padding: 0;
    text-align: center;
}

.mg-footer-style2-outer {
    padding: 60px 0 50px 0;
}

.home2-footer-social-icons ul {
    list-style: none;
    padding: 0;
    margin: 0;
    width: 100%;
    display: flex;
    justify-content: center;
}

.home2-footer-social-icons ul li {
    display: inline-block;
    padding: 0 3px;
}

.home2-footer-social-icons ul li img {
    max-width: 35px;
}

.home2-footer-social-icons img:hover {
    background: #f7f7f7;
}

.home2-footer-social-icons {
    margin-top: 30px;
}

.mg-transparent-header .mg-navigation-outer .navbar-nav .nav-link {
    color: #fff;
}

.mg-header-icon-style2 .mg-search-box input {
    max-width: 138px;
    color: #fff;
}

.mg-header-icon-style2 .mg-search-box input::placeholder {
    color: #fff;
}

.mg-header-icon-style2 .mg-search-box input:focus {
    background: transparent;
}

.mg-header-icon-style2.header-icons-outer ul li.mg-search-icon img {
    vertical-align: initial;
}

.mg-header-icon-style2.header-icons-outer ul li.mg-search-icon::after {
    background: transparent;
    width: 0;
    height: 0;
    top: auto;
    content: '';
    position: relative;
    right: auto;
}

.mg-header-icon-style2.header-icons-outer ul li.mg-search-icon {
    padding-right: 15px;
    margin-right: 0;
}

.mg-dark-bg-banner .mg-home-banner-main-heading-inner::before {
    background-image: url('../images/corner-left-top.png');
}

.mg-dark-bg-banner .mg-home-banner-main-heading-inner::after {
    background-image: url('../images/corner-right-bottom.html');
}

.mg-dark-bg-banner .mg-home-banner-main-heading {
    position: relative;
    padding: 0;
}

.mg-dark-bg-banner .mg-home-banner-main-heading::before,
.mg-dark-bg-banner .mg-home-banner-main-heading::after {
    content: '';
    width: 55px;
    height: 55px;
    position: absolute;
    background-repeat: no-repeat;
    background-size: contain;
}

.mg-dark-bg-banner .mg-home-banner-main-heading::before {
    background-image: url('../images/corner-left-bottom.html');
    bottom: 0;
    left: 0;
}

.mg-dark-bg-banner .mg-home-banner-main-heading::after {
    background-image: url('../images/corner-right-top.html');
    top: 0;
    right: 0;
}

.home-2 .mg-home-banner-main-heading-inner-tittles {
    padding: 30px 40px;
}

.home-2 .mg-home-banner-main-heading h2,
.home-2 .mg-home-banner-main-heading h3 {
    font-size: 45px;
}

.mg-mobile-menu-search {
    display: none;
}

/*Homepage 2 End Here*/
/*MG Quick View Modal Start Here*/
.modal-content.mg-quick-view-modal-content {
    border-radius: 0;
    border: none;
    padding: 20px 20px;
}

.mg-quick-view-modal-outer .modal-dialog {
    max-width: 700px;
}

.mg-quick-view-modal-outer .modal-header {
    border: none;
    padding: 0;
}

.mg-quick-view-modal-content .modal-header .btn-close {
    font-size: 10px;
}

.mg-quick-view-modal-content .modal-body {
    padding: 0 0 0 0;
}

.mg-quick-view-slider-thumb .swiper-slide {
    padding: 0 6px;
}

.mg-quick-popup-more-info-btn a {
    color: #000;
    text-transform: uppercase;
    font-size: 14px;
}

.mg-quick-popup-more-info-btn {
    margin-top: 25px;
}

.mg-quick-view-modal-outer .mg-product-page-sec-spacing {
    margin-top: 20px;
}

/*MG Quick View Modal End Here*/
/*MG search pop close button start here*/
span.mg-spcb-bar-one {
    border-left: 1px solid #fff;
    height: 25px;
    display: inline-block;
    transform: rotate(45deg);
}

span.mg-spcb-bar-two {
    border-left: 1px solid #fff;
    height: 25px;
    display: inline-block;
    transform: rotate(-45deg);
    position: relative;
    left: -5px;

}

/*MG search pop close button end here*/
.home2-footer-social-icons a {
    height: 35px;
    width: 35px;
    display: flex;
    border: 1px solid rgba(112, 112, 112, 0.15);
    align-items: center;
    justify-content: center;
}

/* Premium Filter UI Redesign */
.mg-filter-premium {
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
    padding: 15px;
    margin-bottom: 30px;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.mg-filter-premium .accordion-item {
    border-bottom: 1px solid rgba(0, 0, 0, 0.05) !important;
    margin-bottom: 8px;
}

.mg-filter-premium .accordion-item:last-child {
    border-bottom: none !important;
    margin-bottom: 0;
}

.mg-filter-premium .accordion-button {
    font-size: 15px;
    font-weight: 600;
}

/* Wishlist Icon in Product Header */
.mg-wishlist-icon-wrapper {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.mg-wishlist-icon-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    padding: 5px;
}

.mg-wishlist-icon-btn:hover i {
    transform: scale(1.1);
}

.mg-wishlist-icon-btn i {
    transition: all 0.3s ease;
}

.mg-wishlist-icon-btn.mg-in-wishlist i {
    color: #e74c3c !important;
    font-weight: bold;
}

.mg-filter-premium .accordion-button:not(.collapsed) {
    color: #000;
}

.mg-filter-premium .accordion-button::after {
    filter: invert(1);
    /* Ensure the icon matches a dark or custom tone */
    transform: scale(0.85);
    transition: transform 0.3s ease;
}

.mg-filter-premium .accordion-body {
    padding: 5px 5px 20px 5px !important;
    
}

.mark,mark {
    all: unset;
}
/* Checkboxes Custom */
.custom-premium-checkboxes ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.custom-premium-checkboxes ul li {
    padding: 6px 0;
    border-radius: 8px;
    transition: all 0.2s ease;
}

.custom-premium-checkboxes ul li a {
    display: flex;
    align-items: center;
    font-size: 14px;
    color: #555;
    text-decoration: none;
    transition: all 0.25s;
    position: relative;
    padding-left: 28px;
}

.custom-premium-checkboxes ul li a::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 18px;
    height: 18px;
    border: 1px solid #ccc;
    border-radius: 4px;
    background: #fff;
    transition: all 0.3s ease;
}

/* Remove old circle/after element from mg-filter-checkbox styles to avoid double icons, ensuring our specific class overrides */
.custom-premium-checkboxes ul li a::after {
    display: none !important;
}

.custom-premium-checkboxes ul li:hover a {
    color: #000;
    transform: translateX(4px);
}

.custom-premium-checkboxes ul li:hover a::before {
    border-color: #000;
}

.custom-premium-checkboxes ul li.active a {
    color: #000;
    font-weight: 600;
}

.custom-premium-checkboxes ul li.active a::before {
    background: #000;
    border-color: #000;
}

.custom-premium-checkboxes ul li.active a::after {
    content: '\f00c' !important;
    /* FontAwesome check */
    font-family: 'FontAwesome';
    display: block !important;
    position: absolute;
    left: 4px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 10px;
    color: #fff;
    border: none;
    width: auto;
    height: auto;
    background: transparent;
}

/* Remove Coupon Button Styling */
.mg-remove-coupon-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-left: 8px;
    width: 16px;
    height: 16px;
    font-size: 13px;
    line-height: 1;
    color: #fff;
    background-color: #8F6B6C;
    border-radius: 50%;
    text-decoration: none;
    transition: background-color 0.25s ease, transform 0.2s ease;
    vertical-align: middle;
    font-style: normal;
}

.mg-remove-coupon-btn:hover,
.mg-remove-coupon-btn:focus {
    background-color: #000;
    color: #fff;
    transform: scale(1.15);
    text-decoration: none;
}

/* ── Dynamic Filter Chips ─────────────────────────────── */
.mg-active-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 12px;
}

.mg-filter-chip {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #f5f5f5;
    border: 1px solid #d9cece;
    border-radius: 20px;
    padding: 4px 12px;
    font-size: 12px;
    color: #333;
    text-decoration: none;
    transition: background 0.2s ease, border-color 0.2s ease;
}

.mg-filter-chip:hover {
    background: #f5f5f5;
    border-color: #333333;
    color: #000;
    text-decoration: none;
}

.mg-filter-chip-clear {
    background: #000000;
    border-color: #000000;
    color: #fff;
}

.mg-filter-chip-clear:hover {
    background: #f5f5f5;
    border: 1px solid #d9cece;;
    color: #000000;
    transition: background 0.2s ease, border-color 0.2s ease;
}

/* Filter count badge */
.mg-filter-count {
    font-size: 11px;
    color: #999;
    margin-left: 2px;
}

/* Clear all link in sidebar header */
.mg-filter-clear-all {
    font-size: 12px;
    color: #ffffff;
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: border-color 0.2s ease;
}
.mg-filter-clear-all:hover {
    border-bottom-color: #8F6B6C;
    color: #8F6B6C;
}

/* Sort dropdown */
.mg-sort-select {
    font-size: 13px;
    border: 1px solid #ddd;
    border-radius: 0;
    padding: 5px 10px;
    color: #333;
    cursor: pointer;
    background-color: #fff;
    transition: border-color 0.2s ease;
}
.mg-sort-select:focus {
    outline: none;
    border-color: #8F6B6C;
    box-shadow: none;
}

.mg-info-banner-variant2{
    position: relative;
    overflow: hidden;
}
.mg-category-btn{
    position: absolute;
    bottom: 25px;
    left: 50%;
    transform: translateX(-50%);
    background: #fff;
    padding: 12px 50px;
    border-radius: 5px;
    font-size: 16px;
    font-weight: 600;
    color: #000;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: all 0.3s ease;
}
.mg-category-btn span{
    white-space: nowrap()
}
.mg-category-btn:hover {
    background: #000;
    color: #fff;
    transition: 0.4s ease-in-out;
}

button.wc-block-components-button.wp-element-button.wc-block-components-checkout-place-order-button.contained{
    background: black;
    color: white;
    text-transform: uppercase;
    border: none;
}
body:not(.woocommerce-block-theme-has-button-styles) .wc-block-components-button:not(.is-link){
     background: black;
    color: white;
    text-transform: uppercase;
    border: none;
}
.wc-block-components-order-summary .wc-block-components-order-summary-item__description p {
    display: none;
}
.wc-block-components-product-badge{
    display: none !important;
}
.wp-block-woocommerce-checkout-order-summary-block .wc-block-components-checkout-order-summary__title{
    display: none !important;
}
/* bdi {
    font-weight: 700;
    font-family: "Jost", sans-serif !important;
} */
p.woocommerce-notice.woocommerce-notice--success.woocommerce-thankyou-order-received {
    color: #00DA5D;
    border: 1px solid #00DA5D;
    border-radius: 5px;
    background-color: #f6fdf9;
    padding: 15px 20px;
    margin-top: 10px;
}
.woocommerce-table__product-name a {
    text-decoration: none;
    font-weight: 700;
}
.woocommerce-table__product-total .product-total bdi{
    font-weight: 700;
}
tr.woocommerce-table__line-item.order_item span{
    font-weight: 700;
}
.mg-product-page-details-outer span.woocommerce-Price-amount.amount bdi{
    font-weight: 500;
}

.custom-premium-checkboxes ul li a::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 18px;
    height: 18px;
    border: 1px solid #999;
    border-radius: 10%;
    background: #fff;

    transition: all 0.3s ease;
}
.custom-premium-checkboxes ul li.active a::before {
    background: #fff;
    border-color: #000;

    box-shadow: inset 0 0 0 5px #000;
}

.woocommerce-order-overview {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 12px;
    padding:0;
    margin: 50px 0;
}
.woocommerce-order-overview li {
    list-style: none;
    background: #ffffff;
    padding: 20px !important;
    border-radius: 10px;
    border: 1px solid #f3f4f6;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
    transition: all 0.3s ease;
    margin: 0 !important;
}

.woocommerce-order-overview li:hover {
    transform: translateY(-6px);
    box-shadow: 0 4px 10px rgba(0,0,0,0.08),
       
}
.woocommerce ul.order_details li {
    border-right: none !important;
}
.woocommerce-order-overview li {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #6b7280;
    font-weight: 500;
}
.woocommerce-order-overview li strong {
    display: block;
    margin-top: 12px;
    font-size: 16px !important;
    line-height: 1.3;
    font-weight: 700;
    color: #111827;
}
.woocommerce-order-overview__payment-method strong {
    font-size: 22px;
}
.woocommerce ul.order_details::before{
    display: none!important;
}
.wc-block-checkout-empty a.hover{
    color: white;
}
.woocommerce-order-overview li strong {
    white-space: nowrap;
    overflow-x: auto;
    overflow-y: hidden;
    display: block;
    scrollbar-width: none;
}
.mg-profile-user-details-list-heading svg{
    width: 20px;
    height: 20px;
    margin-right: 20px;
}
.mg-profile-user-details-list-des a{
    text-decoration: none;

}
.mg-profile-user-details-list-heading{
    text-transform: uppercase;
}

.mg-profile-user-details-list-des svg{
    width: 24px;
    height: 24px;
    margin-left: 15px;
}

.mg-profile-user-details-list-grid{
    background:#fff;
    border:1px solid #ececec;
    border-radius:10px;
    padding:24px;
    box-shadow:0 4px 10px rgba(0,0,0,0.04);
    transition:all .3s ease;
    height:100%;
}

.mg-profile-user-details-list-grid:hover{
    transform:translateY(-4px);
}

.mg-profile-user-details-list-grid .row{
    align-items:center;
    height:100%;
}

.mg-profile-user-details-list-heading{
    display:flex;
    align-items:center;
    gap:12px;
    font-size:16px;
    font-weight:600;
    margin:0;
}

.mg-profile-user-details-list-heading svg{
    font-size:22px;
    flex-shrink:0;
}

.mg-profile-user-details-list-des{
    margin:0;
}

.mg-profile-user-details-list-des a{
    text-decoration:none;
    color:#777;
    font-weight:500;
    transition:all .3s ease;
}

.mg-profile-user-details-list-des a:hover{
    color:#000;
}

.mg-order-count-badge{
    min-width:24px;
    height:24px;
    border-radius:50px;
    background:#000;
    color:#fff;
    font-size:12px;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    padding:0 8px;
    margin-left:10px;
}
.mg-user-profile-details-outer{
    background:#000;
    border-radius:30px;
    padding:30px 30px;
    text-align:center;
    margin-bottom:40px;
}

.mg-user-image img{
    border:3px solid rgba(255, 255, 255, 0.22);
    padding:4px;
}

.mg-profile-user-name h2{
    color:#fff;
}

.mg-profile-user-login-details p{
    color:rgba(255,255,255,0.7);
}
.mg-user-profile-details-outer.text-center{
    display: flex;
    gap: 40px;
    align-items: center;
}
.mg-user-details{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}
.mg-profile-user-login-details{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

/* 404 ERROR PAGE */

.creative-404 {
    position: relative;
    min-height: 90vh;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 80px 20px;
    background-color: #fbfbfb;
}
.error-orbit {
    position: relative;
    z-index: 2;
    font-size: 14px;
    color: #7d7d7d;
    letter-spacing: 4px;
    text-transform: capitalize;
    margin-bottom: 15px;
}
.error-card h1{
    position: relative;
    font-size: 40px;
    font-weight: 700;
    text-transform: capitalize;
    z-index: 2;
    line-height: 1.1;
    margin-bottom: 20px;
}
.error-copy {
    position: relative;
    z-index: 2;
    max-width: 620px;
    margin: auto;
    font-size: 16px;
    line-height: 1.8;
    color: #666;
}
.error-actions{
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: center;
    margin-top: 50px;
    gap: 15px;
    flex-wrap: nowrap;
}
.error-actions a{
    padding: 15px 20px;
    text-decoration: none;
    text-transform: uppercase;
    border-radius: 15px;
    font-size: 14px;
    transition: 0.35s ease;
    width: 250px;
    height: 50px;
    flex-wrap: 0;
}
.btn-primary{
    background: black;
    color: white;
    box-shadow:0 2px 4px rgba(0, 0, 0, 0.1);
}
.btn-primary:hover{
    transform: translateY(-4px);
    background: black;
}
.btn-outline{
    background: white;
    color: #666;
    box-shadow:0 2px 4px rgba(0, 0, 0, 0.1);
}
.btn-outline:hover{
    background-color: white;
    color: #434343;
    transform: translateY(-4px);
}
.error-404-bg{
    position: absolute;
    left: 50%;
    bottom: 0px;
    transform: translatex(-50%);
    display: flex;
    gap: 70vh;
    z-index: 0;
    pointer-events: none;
}
.error-404-bg .left,
.error-404-bg .right
{
    font-size: 100px;
    font-weight: lighter;
    color: #afafaf;
    
}
.error-404-bg .middle{
    font-size: 100px;
    font-weight: lighter;
    color: rgb(240, 240, 240);
}
.error-404-bg span{
    animation: float404 3s ease-in-out infinite;
}

.error-404-bg span:nth-child(1){
    animation-delay: 0s;
}

.error-404-bg span:nth-child(2){
    animation-delay: .6s;
}
.error-404-bg span:nth-child(2){
    animation-delay: .9s;
}
@keyframes float404{
    0%,100%{
        transform: translateY(0px);
    }

    50%{
        transform: translateY(-12px);
    }
}

/* WARRANTY SECTION */

.mg-warranty-section{
    background: #fff;
    border: #b9b9b9 1px solid;
    border-radius: 10px;
    padding: 20px 20px;
    overflow: hidden;
}
.warranty-sect-det-head{
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    border-bottom: 1px solid #efefef;
    padding-bottom: 20px;
    flex-wrap: wrap;
    margin-bottom: 20px;
}
.warranty-sect-det-head > svg{
    width: 45px;
    height: 45px;
    padding: 12px;
    border-radius: 16px;
    background: #f7f7f7;
    color: #111;
    flex-shrink: 0;
}
.warranty-sect-det-head .heading{
    flex: 1;
}
.warranty-sect-det-head p{
    margin: 4px 0 0;
    color: #ffffff;
    font-size: 14px;
}
.warranty-sect-det-head span{
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #000000;
    border: 1px solid #e5e5e5;
    padding: 5px 14px;
    border-radius: 100px;
    letter-spacing: 1px;
    color: #ffffff;
}

.warranty-sect-det-head span svg{
    width: 18px;
    height: 18px;
}
.warranty-sect-det-head .heading p{
    color: #818181;
}


.coverage-sec,
.domestic-warranty{
    background: #fafafa;
    border: 1px solid #ececec;
    border-radius: 10px;
    padding: 15px;
    height: 100%;
}
.coverage-sec span:first-child,
.domestic-warranty span:first-child{
    display: block;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 12px;
    font-weight: 700;
    color: #7b7b7b;
}
.coverage-sec span,
.domestic-warranty span{
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 10px;
    font-size: 14px;
    color: #111;
    font-weight: 500;
}

.coverage-sec span:last-child,
.domestic-warranty span:last-child{
    color: #8c8c8c;
    font-size: 14px;
    font-weight: 400;
    margin-bottom: 0;
}

.coverage-sec svg,
.domestic-warranty svg{
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}

.customer-service-sec{
    border: rgb(214, 214, 214) 1px solid;
    border-radius: 10px;
    margin-top: 20px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap:15px;
    flex-wrap: wrap;
    justify-content: space-between;
    padding: 20px;
}
.customer-service-sec p{
    line-height: 0px !important;
}
.customer-service-sec span{
    display: inline-flex;
    gap: 10px;
    justify-content: flex-end;
    color: #04b04f;
    border: #04b04f 1px solid;
    border-radius: 100px;
    background: #04b04f17;
    padding: 5px 20px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    align-items: center;

}
.customer-service-sec span svg{
    width: 20px;
    height: 20px;
}
.contact-sec-warranty{
    display: flex;
    gap: 10px;
    justify-content: center;
    align-items: center;
}
.warranty-not-covered p{
    font-size: 14px;
    color:#d2d2d2;
    
}
.warranty-not-covered{
    border-top: 1px solid #efefef;
    border-bottom: 1px solid #efefef;
    padding-bottom: 10px;
    padding-top: 10px;
    display: flex;
    flex-direction: column;
}
.warranty-not-covered span{
    font-size: 14px;
    line-height: 30px;
    font-size: 14px;
    line-height: 33.5px;
    background: #ff00000d;
    border: 1px solid #ff000024;
    border-radius: 5px;
    padding: 2px 10px;
    margin-bottom: 5px;
}
.caution-section{
    display: flex;
    gap: 10px;
    margin-top: 10px;
    font-size: 11px;
    font-weight: 600;
    color: #adadad;
}
.caution-section p{
    font-size: 11px;
    color: #adadad;
}
.caution-section svg{
    margin-top: 3px;
    width: 14px;
    height: 14px;
}

.mg-img-main{
    position:relative;
    overflow:hidden;
    cursor:zoom-in;
}

.mg-img-main img{
    width:100%;
    display:block;
}

.zoom-lens{
    position:absolute;
    width:250px;
    height:250px;
    border:1px solid rgba(0,0,0,0.15);
    box-shadow:0 4px 12px rgba(0,0,0,0.20);
    border-radius: 5px;
    pointer-events:none;
    display:none;
    z-index:9;
    background-repeat:no-repeat;
    background-position: 89.1471% 52.0699%;
    
}
