body {
    /* font-family: 'Montserrat', sans-serif; */
    /*  font-family: 'Georgia', serif; */
    font-family: 'AmpleSoft Pro', sans-serif;
    font-weight: 400;
    color: var(--primary-color);
    background: var(--secondary-color);
    font-size: 14px;
    line-height: 20px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

:root {
    --background-color: none;
    --border-color: rgba(255, 255, 255, 0.1);
    --primary-hover-color: none;
    --secondary-color: none;
    --primary-color: #fff;
}

/*----------------------------------------------*/
/* General Style */
/*----------------------------------------------*/
h1,
h2,
h3,
h4,
h5,
h6 {
    color: var(--primary-color);
    font-weight: 500;
    text-transform: capitalize;
}

/* Override the bootstrap defaults */
h1 {
    font-size: 33px;
}

h2 {
    font-size: 28px;
}

h3 {
    font-size: 21px;
}

h4 {
    font-size: 16px;
}

h5 {
    font-size: 12px;
}

h6 {
    font-size: 10.2px;
}

a {
    color: var(--primary-color);
}

a:hover {
    text-decoration: none;
}

.fa {
    font-size: 14px;
}

legend {
    font-size: 18px;
    padding: 7px 0px;
    border-bottom: 1px solid var(--border-color);
}

label {
    font-size: 14px;
    font-weight: normal;
}

select.form-control,
textarea.form-control,
input[type="text"].form-control,
input[type="password"].form-control,
input[type="datetime"].form-control,
input[type="datetime-local"].form-control,
input[type="date"].form-control,
input[type="month"].form-control,
input[type="time"].form-control,
input[type="week"].form-control,
input[type="number"].form-control,
input[type="email"].form-control,
input[type="url"].form-control,
input[type="search"].form-control,
input[type="tel"].form-control,
input[type="color"].form-control {
    font-size: 14px;
}

.input-group input,
.input-group select,
.input-group .dropdown-menu,
.input-group .popover {
    font-size: 14px;
}

.input-group .input-group-addon {
    font-size: 14px;
    height: 30px;
}

/* Fix some bootstrap issues */
span.hidden-xs,
span.hidden-sm,
span.hidden-md,
span.hidden-lg {
    display: inline;
}

a:focus,
a:hover,
div:focus,
img:focus {
    text-decoration: none;
    outline: none;
    color: var(--primary-hover-color);
}

div.required .control-label:before {
    content: '* ';
    color: #F00;
    font-weight: bold;
}

.btn.focus:active,
.btn:active:focus,
.btn:focus,
.addcart:focus {
    outline: none;
}

.btn.active.focus,
.btn.active:focus,
.btn.focus,
.btn:active.focus,
.btn:active:focus,
.btn:focus,
button:focus,
input:focus,
select:focus,
textarea:focus,
div:focus,
img:focus,
.form-control:focus,
i:focus {
    outline: none;
    box-shadow: none;
    text-decoration: none;
}

/*----------------------------------------------*/
/* scrollToTop */
/*----------------------------------------------*/
a.scrollToTop {
    position: fixed;
    right: 60px;
    bottom: 60px;
    height: 50px;
    width: 50px;
    text-align: center;
    z-index: 1001;
    /* border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%; */
    color: var(--secondary-color);
    /* background: var(--primary-hover-color); */
}

/* a.scrollToTop:hover {
    background: var(--primary-color);
} */

a.scrollToTop i {
    font-size: 20px;
    line-height: 50px;
}

@media (max-width: 991px) {
    a.scrollToTop {
        width: 34px;
        height: 34px;
        right: 15px;
        bottom: 15px;
    }

    a.scrollToTop i {
        font-size: 16px;
        line-height: 34px;
    }
}

/*----------------------------------------------*/
/* loader */
/*----------------------------------------------*/

.loader {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    background: url('../image/mahardhi/ajax_loader.gif') 50% 50% no-repeat rgb(255, 255, 255);
    opacity: 1;
}
@media (max-width: 768px) {
    .loader {
        background-size: 700px;
    }
}

@media (max-width: 480px) {
    .loader {
        background-size: 500px;
    }
}
/*----------------------------------------------*/
/* QuickView Loader*/
/*----------------------------------------------*/
.quickview-wrapper {
    background-color: var(--secondary-color);
    display: none;
    height: 80vh;
    left: 0;
    margin: 0 auto;
    overflow: auto;
    padding: 20px 0;
    position: fixed;
    right: 0;
    top: 7%;
    width: 70%;
    z-index: 9999;
}

.quickview-overlay {
    display: none;
    background-color: rgba(0, 0, 0, 0.8);
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    position: fixed;
    z-index: 99;
}

.quickview-btn {
    position: absolute;
    z-index: 200;
    top: 0;
    right: 0;
    font-size: 12px;
    height: 30px;
    width: 30px;
    line-height: 30px;
    text-align: center;
    color: var(--primary-color);
    background: var(--secondary-color);
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
}

.quickview-loader {
    display: none;
    position: fixed;
    top: 0;
    width: 50px;
    height: 50px;
    left: 0;
    right: 0;
    bottom: 0;
    text-align: center;
    z-index: 9999;
    margin: auto;
    background-color: transparent;
    line-height: 50px;
}

.quickview-loader-inner {
    font-size: 16px;
}

@media (max-width: 991px) {
    .quickview-wrapper {
        width: 90%;
    }
}

/*----------------------------------------------*/
/* alert */
/*----------------------------------------------*/
.alert.alert-success {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    z-index: 999;
    border-radius: 0;
    margin: 0 0 20px 0;
}

.alert {
    padding: 9px 30px 9px 15px;
    border-radius: 0;
    text-align: center;
    position: relative;
    line-height: 20px;
    z-index: 1;
}

.alert-dismissable .close,
.alert-dismissible .close {
    font-size: 22px;
    opacity: 1;
    position: absolute;
    right: 10px;
    top: 0;
    line-height: 38px;
    text-shadow: none;
}

.newsletterblock .alert {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 11;
}

#form-review .alert.alert-success,
#post_comment .alert {
    position: relative;
}

/*----------------------------------------------*/
/* Start Newsletter Popup */
/*----------------------------------------------*/
.newsletter-wrap {
    background: var(--secondary-color);
    text-align: center;
    display: flex;
    align-items: center;
}

.newsletter-image {
    background: url(../image/mahardhi/newsletter-popup.jpg) no-repeat center center;
    background-size: cover;
    width: 50%;
    height: 450px;
}

.newsletter-content {
    width: 50%;
}

.newsletter-content-innner {
    padding: 30px;
}

#newsletter-popup .modal-content {
    background: transparent;
    box-shadow: none;
}

.modal-dialog-centered {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    min-height: calc(100% - (.5rem * 2));
}

.modal-content {
    border: none;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    width: 100%;
    pointer-events: auto;
    background-color: var(--secondary-color);
    background-clip: padding-box;
    border-radius: 0;
}

.newsletter-popup .modal-dialog {
    margin: 20px auto;
    max-width: 700px;
    text-align: center;
}

.newsletter-btn-close.close {
    position: absolute;
    right: 0;
    top: 0;
    opacity: 1;
    width: 26px;
    height: 26px;
    line-height: 26px;
    text-shadow: none;
    font-size: 12px;
    border-radius: 0;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    color: var(--secondary-color);
    background: var(--primary-hover-color);
}

.newsletter-btn-close.close i {
    display: block;
}

.newsletter-btn-close.close:hover {
    color: var(--secondary-color);
    background: var(--primary-color)
}

.newsletter-popup .modal-body {
    padding: 0;
    z-index: 1;
}

.newsletter-content-innner .newsletter-promo {
    position: relative;
    font-size: 18px;
    font-weight: 700;
    padding-bottom: 10px;
    margin-bottom: 30px;
    color: var(--primary-hover-color);
}

.newsletter-content-innner .newsletter-promo::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    width: 50px;
    height: 2px;
    background: var(--primary-hover-color);
}

.newsletter-content-innner h3 {
    font-size: 20px;
    margin: 0 0 15px;
    font-weight: 700;
    text-transform: uppercase;
    position: relative;
}

.newsletter-content-innner p {
    margin: 0;
    font-size: 14px;
    line-height: 22px;
    color: var(--secondary-light-color);
}

.newsletter-content-innner input[type="text"] {
    width: 70%;
    margin: 0 auto;
    height: 42px;
    border: 1px solid #ddd;
    padding: 0 10px;
}

.newsletter-content-bottom {
    margin-top: 20px;
}

.newsletter-content-innner .alert {
    margin: 15px 0 10px;
    display: table;
    position: relative;
    width: 100%;
}

.newsletter-content-innner .newsletter_usr_popup_email {
    padding: 5px 10px;
    width: 100%;
    height: 40px;
    text-align: center;
    border-radius: 25px;
    border: none;
    background: var(--background-color);
}

#frmnewsletterpopup {
    margin: 20px 0;
}

#frmnewsletterpopup button {
    margin: 20px 0 0 0;
    padding: 10px 30px;
    color: var(--secondary-color);
    background: var(--primary-hover-color);
}

#frmnewsletterpopup button:hover {
    background: var(--primary-color);
    color: var(--secondary-color);
}

.newsletter-content-bottom label {
    margin: 0;
}

@media (min-width: 768px) {
    .newsletter-popup .modal-dialog {
        width: 100%;
    }
}

@media (max-width: 991px) {
    .newsletter-content-innner .newsletter_usr_popup_email {
        height: 34px;
    }

    #frmnewsletterpopup button {
        padding: 7px 20px;
        margin: 15px 0 0;
    }
}

@media (max-width: 767px) {
    .newsletter-popup .modal-dialog {
        width: 90%;
    }
}

@media (max-width: 680px) {
    .newsletter-image {
        display: none;
    }

    .newsletter-content {
        background: url(../image/mahardhi/newsletter-popup.jpg) no-repeat center center;
        background-size: cover;
        padding: 30px;
        width: 100%;
    }

    .newsletter-content-innner {
        padding: 20px 50px;
        background: rgba(255, 255, 255, 0.8);
    }

    .newsletter-content-innner .newsletter-promo {
        margin-bottom: 20px;
    }
}

@media (max-width: 540px) {

    .newsletter-content,
    .newsletter-content-innner {
        padding: 20px;
    }
}

@media (max-width: 480px) {

    .newsletter-content,
    .newsletter-content-innner {
        padding: 15px;
    }

    .newsletter-content-innner .newsletter-promo {
        font-size: 16px;
    }

    .newsletter-content-innner h3 {
        font-size: 18px;
    }

    #frmnewsletterpopup {
        margin: 10px 0;
    }
}

/*----------------------------------------------*/
/* Start header */
/*----------------------------------------------*/
/* Header fixed */
.header-fixed {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    -webkit-animation: fadeInDown 0.5s ease-out forwards;
    -moz-animation: fadeInDown 0.5s ease-out forwards;
    -o-animation: fadeInDown 0.5s ease-out forwards;
    animation: fadeInDown 0.5s ease-out forwards;
    z-index: 9;
    background: var(--secondary-color);
    -webkit-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.11);
    -moz-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.11);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.11);
    border: none;
}

/*header*/
header {
    position: relative;
}

.header-inner,
.header-bottom-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.customer-detail {
    color: var(--primary-color);
    text-transform: capitalize;
}

.customer-support {
    display: flex;
    align-items: center;
}

.customer-support i {
    display: block;
    font-size: 20px;
    height: 50px;
    width: 50px;
    text-align: center;
    line-height: 50px;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    margin: 0 15px 0 0;
    background: var(--primary-hover-color);
    color: var(--secondary-color);
}

.customer-text {
    font-size: 16px;
    margin: 0 0 3px;
}

.customer-call {
    color: var(--primary-color);
}

.header-bottom {
    background: var(--primary-hover-color);
}

.icon-sh-user svg {
    width: 33px;
    height: auto;
}

.icon-sh-sr svg {
    width: 40px;
}

.icon-sh-cart svg {
    width: 42px;
    height: auto;
}



/*header search*/
.btn_search {
    position: relative;
}

/*-- mahardhi edit --*/
#mahardhiSearch,
#search {
    display: flex;
    align-items: center;
    min-width: 315px;
}

#mahardhiSearch>input,
#search>input {
    background: var(--secondary-color);
    display: block;
    padding: 0 15px;
    color: var(--secondary-light-color);
    font-size: 14px;
    border: none;
    border-radius: 25px 0 0 25px;
}

#mahardhiSearch .btn-search,
#search .input-group-btn {
    width: auto;
    background: transparent;
}

#mahardhiSearch .btn-search button,
#search .input-group-btn button {
    position: relative;
    padding: 12px;
    border: none;
    color: var(--primary-color);
    background: var(--secondary-color);
    border-radius: 0 25px 25px 0;
}

#mahardhiSearch .btn-search button:hover,
#search .input-group-btn button:hover {
    color: var(--primary-hover-color);
}

#mahardhiSearch .btn-search button::before,
#search .input-group-btn button::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    margin: auto;
    height: 30px;
    width: 1px;
    background: var(--border-color);
}

#mahardhiSearch .btn-search button i,
#search .input-group-btn button i {
    font-size: 16px;
    display: block;
}

.ui-autocomplete.ui-menu .ui-menu-item {
    list-style-image: none;
}

.ui-autocomplete .mahardhi-search {
    position: relative;
    display: table;
    width: 100%;
    padding: 5px 0px;
}

.ui-autocomplete.ui-widget-content {
    background: var(--secondary-color);
}

.ui-autocomplete .mahardhi-search>div {
    display: table-cell;
    vertical-align: top;
}

.ui-autocomplete .mahardhi-search .images {
    width: 75px;
    padding-right: 10px;
}

.ui-autocomplete .mahardhi-search .images img {
    border-radius: 5px;
}

.ui-autocomplete .mahardhi-search .product-detail {
    font-size: 14px;
}

.ui-autocomplete .mahardhi-search .product-detail .price-old {
    color: var(--secondary-light-color);
    text-decoration: line-through;
    margin-left: 10px;
}

#mahardhiSearch select.form-control.input-lg {
    padding: 2px 30px 2px 20px;
    line-height: 1.42857143;
    color: var(--primary-color);
    background: var(--background-color);
    min-width: 198px;
    height: 50px;
    border-radius: 5px 0 0 5px;
    -webkit-border-radius: 5px 0 0 5px;
    -moz-border-radius: 5px 0 0 5px;
}

.category-search {
    position: relative;
}

.category-search:after {
    content: '\f107';
    font-family: 'fontawesome';
    position: absolute;
    right: 20px;
    line-height: 50px;
    color: var(--primary-color);
    z-index: 11;
}

/*header right*/
.header-links {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.header-links>div+div {
    margin: 0 0 0 20px;
}

/*account*/
#btnAuthToggle>a {
    display: block;
}

#btnAuthToggle i {
    display: block;
    padding: 0;
    font-size: 20px;
    display: block;
    height: 44px;
    width: 44px;
    line-height: 44px;
    border-radius: 50%;
    text-align: center;
    color: var(--secondary-color);
    background: var(--primary-hover-color);
}

#btnAuthToggle button {
    text-align: left;
    padding: 5px 10px;
    text-transform: capitalize;
    border: none;
    color: var(--primary-color);
}

#btnAuthToggle .dropdown-menu a:hover,
#btnAuthToggle button:hover {
    color: var(--primary-hover-color);
}

#btnAuthToggle .dropdown-menu {
    padding: 5px 10px;
    right: 0;
    left: auto;
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border: none;
    border-bottom: 2px solid var(--primary-hover-color);
}

#btnAuthToggle .dropdown-menu li a {
    padding: 5px 0;
    text-align: left;
    border: none;
    color: var(--primary-color);
}

.language .language-drop,
.currency .currency-drop {
    padding: 0 0 5px;
    border-bottom: 1px solid #eee;
    width: 100%;
    display: block;
    margin: 10px 0;
    text-align: left;
}

.language ul.language-selector,
.currency ul.currency-selector,
.language-dropdown,
.currency-dropdown {
    padding: 0;
}

.language .language-selector li,
.currency .currency-selector li,
.language-dropdown li,
.currency-dropdown li {
    display: block;
}

#form-currency .dropdown-toggle,
#form-language .dropdown-toggle {
    border-bottom: 1px solid var(--border-color);
    width: 100%;
    padding: 5px 0;
    margin: 2px 0;
    border-radius: 0;
    font-weight: 500;
    color: var(--primary-color);
}
.currency-icon-head{
 width: 56px;
    height: auto;
    position: relative;
    bottom: 0px;
    right: -15px;
}
.currency-icon{
    width: 50px;
    height: auto;
}
.dropdown-menu-shamanique{

}




/* Wishlist */
.wishlist-header #wishlist-total i {
    font-size: 22px;
    display: block;
}

/*cart*/
.header_cart {
    position: relative;
}

#cart {
    vertical-align: top;
}

#cart>.btn {
    background: transparent;
    padding: 0;
    border: none;
    color: var(--primary-color);
    display: flex;
    align-items: center;
    box-shadow: none;
}

#cart>.btn:hover {
    color: var(--primary-hover-color);
}

#cart-total>span {
    display: block;
}

#cart-total {
    font-size: 16px;
    line-height: 20px;
    text-align: left;
    /* display: none; */
}

#cart-total .text-item {
    margin: 0 0 3px;
}

#cart-total .cart-item {
    font-size: 14px;
}

#cart>.btn:before {
    font-size: 20px;
    padding: 0;
    width: 44px;
    height: 44px;
    line-height: 44px;
    border-radius: 50%;
    margin-right: 15px;
    color: var(--secondary-color);
    background: var(--primary-hover-color);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

#cart .dropdown-menu {
    overflow: hidden;
    display: none;
    z-index: 1001;
    margin: 0;
    padding: 0px;
    width: 300px;
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-bottom: 2px solid var(--primary-hover-color);
}

#cart .dropdown-menu li {
    float: none;
    padding: 0px 20px;
}

#cart .dropdown-menu li p {
    margin: 0;
    font-size: 14px;
    color: var(--primary-color);
}

#cart .dropdown-menu li p .btn {
    padding: 10px 20px;
}

.product-cart-empty {
    padding: 20px 0;
}

.header_cart i.fa.fa-shopping-cart {
    display: none;
}

#cart .dropdown-menu .cart-content-product {
    max-height: 281px;
    overflow-y: auto;
    overflow-x: hidden;
}

#cart .dropdown-menu table {
    margin-bottom: 10px;
    border: none;
}

.table-striped>tbody>tr:nth-of-type(odd) {
    background-color: transparent;
}

#cart .dropdown-menu>li.cart-content-product .table>tbody>tr:last-child {
    border-bottom: none;
    padding-bottom: 10px;
    margin-bottom: 0px;
}

#cart .dropdown-menu>li.cart-content-product .table>tbody>tr {
    padding-bottom: 20px;
    padding-top: 20px;
    position: relative;
    border-bottom: 1px solid var(--border-color);
    display: block;
}

#cart .dropdown-menu .table>tbody>tr>td,
#account-address .table>tbody>tr>td {
    vertical-align: top;
}

#cart .dropdown-menu table td.product-cart-thumb {
    padding: 0;
    width: 75px;
}

#cart .dropdown-menu table td {
    background: none;
    border: none;
    padding: 5px 4px;
    color: var(--primary-color);
}

#cart .dropdown-menu li td,
td.cart-total-price {
    font-size: 14px;
    font-weight: 500;
}

#cart .img-thumbnail {
    padding: 0;
    border-radius: 0;
    max-width: unset;
}

#cart .dropdown-menu table td.product-cart-details {
    padding-left: 10px;
    padding-right: 10px;
}

#cart .dropdown-menu .product-item-name,
#cart .product-cart-info .product-cart-qty {
    font-weight: normal;
    display: inline-block;
    font-size: 14px;
}

.product-cart-info {
    margin-top: 8px;
}

#cart .product-cart-info .product-cart-price,
.product-cart-total {
    color: var(--primary-hover-color);
}

#cart .dropdown-menu li tr:last-child td:last-child,
tr:last-child td.cart-total-price:last-child {
    font-size: 16px;
    color: var(--primary-hover-color);
}

#cart .dropdown-menu table td.product-cart-close,
#cart .dropdown-menu table td.voucher-close {
    position: absolute;
    top: 20px;
    right: 0;
    padding: 0;
}

#cart .dropdown-menu .btn-danger {
    background: transparent;
    color: var(--primary-color);
    border-radius: 0;
    line-height: 20px;
    font-size: 12px;
    padding: 0;
    border: none;
    box-shadow: none;
    -webkit-box-shadow: none;
}

#cart .dropdown-menu li+li {
    border-top: 1px solid var(--border-color);
    padding: 10px 20px 0px 20px;
}

#cart .dropdown-menu li td strong,
#cart .dropdown-menu li small,
td.cart-total-title {
    font-size: 14px;
    font-weight: 500;
}

.product-cart-button {
    padding: 0px 0px 20px 0px;
}

@media (max-width: 1199px) {
    .customer-support i {
        margin: 0 5px 0 0;
    }
}

@media (max-width: 991px) {
    .header-top {
        padding: 15px 0;
    }

    #btnAuthToggle i {
        height: 34px;
        width: 34px;
        line-height: 34px;
        font-size: 14px;
    }

    .header-links>div+div {
        margin: 0 0 0 10px;
    }

    #cart>.btn:before {
        height: 34px;
        width: 34px;
        line-height: 34px;
        font-size: 14px;
        margin: 0;
    }

    #cart-total {
        position: absolute;
        right: -4px;
        top: 23px;
    }

    #cart-total .cart-item {
        font-size: 12px;
    }

    .header-bottom-inner {
        padding: 10px 0;
    }

    #mahardhiSearch .btn-search button,
    #search .input-group-btn button {
        padding: 9px;
    }
}

@media (max-width: 767px) {

    #mahardhiSearch,
    #search {
        width: 100%;
        min-width: unset;
    }
}

@media (max-width: 425px) {
    #cart .dropdown-menu {
        right: -5px;
    }
}

/*----------------------------------------------*/
/* menu start */
/*----------------------------------------------*/
#menu {
    border: none;
    border-radius: 0;
    text-transform: uppercase;
    min-height: unset;
    display: inline-block;
    vertical-align: top;
    margin: 0;
}

#menu .nav>li>a {
    padding: 20px 0;
    font-size: 16px;
    font-weight: 500;
    border-radius: 0;
    background: transparent;
    text-transform: uppercase;
    color: var(--secondary-color);
}

#menu .nav>li+li {
    margin: 0 0 0 40px;
}

#menu .dropdown-inner,
#navCategory .dropdown-inner {
    display: table;
}

#menu .dropdown-inner ul,
#navCategory .dropdown-inner>ul {
    display: table-cell;
}

#menu .menulist .dropdown-menu a {
    font-size: 14px;
    text-transform: capitalize;
}

#menu .dropdown-inner ul.mega-dropdown-menu.childs_1>li>a:hover,
#menu .nav.navbar-nav li:hover>span,
#menu .dropdown-inner li:hover>a,
#navCategory .dropdown-inner li a:hover,
.vertical-category ul>li:hover>a,
#menu #topCategoryList .dropdown-inner li:hover>a,
#menu .column-1 .dropdown-inner li.dropdown-submenu:hover>.fa {
    color: var(--primary-hover-color);
    background-color: transparent;
}

#menu .dropdown-inner .dropdown-submenu,
#navCategory .dropdown-inner .dropdown-submenu {
    position: relative;
}

#menu .column-1 .dropdown-inner li.dropdown-submenu>.fa {
    position: absolute;
    right: 10px;
    top: 0;
    padding: 8px 0;
}

#menu .see-all {
    display: block;
    margin-top: 0.5em;
    border-top: 1px solid #ddd;
    padding: 3px 20px;
    -webkit-border-radius: 0 0 4px 4px;
    -moz-border-radius: 0 0 4px 4px;
    border-radius: 0 0 3px 3px;
    font-size: 12px;
}

#menu .see-all:hover,
#menu .see-all:focus {
    text-decoration: none;
    color: var(--primary-hover-color);
    background-color: #229ac8;
    background-image: linear-gradient(to bottom, #23a1d1, #1f90bb);
    background-repeat: repeat-x;
}

@media (min-width: 992px) {
    #menu .nav>li>a:after {
        content: "";
        background: var(--secondary-color);
        width: 0;
        height: 2px;
        left: 0;
        right: 0;
        margin: auto;
        display: block;
        position: absolute;
        margin-top: 6px;
        transition: all 350ms ease-out 0s;
        -moz-transition: all 350ms ease-out 0s;
        -o-transition: all 350ms ease-out 0s;
        -webkit-transition: all 350ms ease-out 0s;
    }

    #menu .nav>li:hover>a:after {
        width: 30px;
    }

    #menu .dropdown-menu.navcol-menu.item-column .dropdown-submenu.sub-menu-item>a {
        font-weight: 600;
    }

    #menu .dropdown-inner a {
        display: block;
        padding: 5px 15px;
        font-size: 14px;
        font-weight: 400;
        text-transform: capitalize;
        min-width: 180px;
        text-align: left;
        color: var(--secondary-light-color);
    }

    #menu ul li.hiden_menu .dropdown-inner .dropdown-menu {
        display: none;
    }

    #menu .dropdown-menu,
    #menu .hiden_menu.menu_drop .dropdown-inner {
        display: block;
        top: 50px;
        left: 0px;
        min-width: 180px;
        z-index: 999;
        text-align: left;
        right: auto;
        padding: 10px 0;
    }

    #menu .dropdown-menu,
    #menu .hiden_menu.menu_drop .dropdown-inner,
    #menu .column-1 .dropdown-inner .dropdown-submenu ul.sub-menu {
        position: absolute;
        top: 125px;
        padding: 10px 0;
        visibility: hidden;
        background: var(--secondary-color);
        border: none;
        border-bottom: 2px solid var(--primary-hover-color);
        border-radius: 5px;
        -webkit-border-radius: 5px;
        -moz-border-radius: 5px;
        opacity: 0;
        -khtml-opacity: 0;
        -webkit-opacity: 0;
        -moz-opacity: 0;
        filter: alpha(opacity=0);
        transform-origin: 15% 15% 0;
        -webkit-transition: all 0.5s ease 0s;
        -moz-transition: all 0.5s ease 0s;
        -o-transition: all 0.5s ease 0s;
        transition: all 0.5s ease 0s;
        filter: alpha(opacity=0);
        transform-origin: center top 0;
        box-shadow: 0 1px 5px rgba(0, 0, 0, 0.11);
        -moz-box-shadow: 0 1px 5px rgba(0, 0, 0, 0.11);
        -webkit-box-shadow: 0 1px 5px rgba(0, 0, 0, 0.11);
    }

    #menu .dropdown:hover .dropdown-menu,
    #menu ul li.hiden_menu.menu_drop:hover .dropdown-inner,
    #menu .column-1 .dropdown-inner .dropdown-submenu:hover ul.sub-menu {
        display: block;
        top: 100%;
        visibility: visible;
        opacity: 1;
        -khtml-opacity: 1;
        -webkit-opacity: 1;
        -moz-opacity: 1;
        visibility: visible;
        filter: alpha(opacity=100);
    }

    #menu .column-1 .dropdown-inner .dropdown-submenu ul.sub-menu {
        left: 100%;
        top: 100%;
    }

    #menu .column-1 .dropdown-inner .dropdown-submenu:hover ul.sub-menu {
        top: 0px;
    }

    #menu ul.nav .item-column {
        padding: 10px;
    }

    #menu .dropdown-menu.navcol-menu.item-column .dropdown-submenu.sub-menu-item>a {
        border-bottom: 1px solid var(--border-color);
        color: var(--primary-color);
        font-size: 14px;
        font-weight: 400;
        margin: 0 10px 5px;
        padding: 5px 0 5px 0;
    }

    #menu ul.nav .item-column ul.list-unstyled li a {
        padding-left: 0;
        padding-right: 0;
        margin: 0 10px;
    }
}

@media (max-width: 1199px) {
    #menu .nav>li+li {
        margin: 0 0 0 15px;
    }
}

@media (max-width: 991px) {
    #menu .nav>li+li {
        margin: 0;
    }

    #topCategoryList {
        background: var(--secondary-color);
        display: block !important;
        position: fixed;
        top: 0;
        left: 0;
        height: 100%;
        width: 100%;
        max-width: 350px;
        z-index: 999;
        margin: 0;
        -webkit-transform: translate(-400px, 0);
        -moz-transform: translate(-400px, 0);
        -ms-transform: translate(-400px, 0);
        -o-transform: translate(-400px, 0);
        transform: translate(-400px, 0);
        -moz-transition-property: -moz-transform;
        -o-transition-property: -o-transform;
        -webkit-transition-property: -webkit-transform;
        transition-property: transform;
        -moz-transition-duration: .5s;
        -o-transition-duration: .5s;
        -webkit-transition-duration: .5s;
        transition-duration: .5s;
        overflow: auto;
    }

    #topCategoryList.box-menu {
        -webkit-transform: translate(0, 0);
        -moz-transform: translate(0, 0);
        -ms-transform: translate(0, 0);
        -o-transform: translate(0, 0);
        transform: translate(0, 0);
    }

    .menu-close {
        background: var(--primary-hover-color);
        color: var(--secondary-color);
        padding: 12px 15px;
        font-weight: 600;
        font-size: 16px;
        display: flex;
        justify-content: space-between;
        margin-bottom: 10px;
    }

    .menu-close i {
        line-height: 20px;
        font-size: 12px;
    }

    #menu li i {
        font-size: 14px;
    }

    #menu .btn-navbar.open-menu:after {
        top: 0;
        left: 0;
        content: "";
        width: 100%;
        display: block;
        position: fixed;
        height: 100%;
        background: rgba(0, 0, 0, .5);
        z-index: 99;
        transition: opacity 0.2s cubic-bezier(0, 0, .3, 1);
        transition-delay: 0.1s;
    }

    #menu .btn-navbar span:before,
    #menu .btn-navbar span:after {
        content: "";
        position: absolute;
        width: 100%;
        height: 1px;
        background: var(--primary-color);
        left: 0;
        transition: all 0.5s ease 0s;
        -moz-transition: all 0.5s ease 0s;
        -webkit-transition: all 0.5s ease 0s;
        -o-transition: all 0.5s ease 0s;
    }

    #menu .btn-navbar span:after {
        top: 6px;
    }

    #menu .btn-navbar span:before {
        top: -6px;
    }

    #menu .btn-navbar span {
        position: absolute;
        width: 20px;
        height: 1px;
        background: var(--primary-color);
        left: 0;
        right: 0;
        top: 0;
        bottom: 0;
        margin: auto;
        text-align: center;
    }

    #menu .nav>li>a,
    #menu #topCategoryList .dropdown-inner a {
        color: var(--primary-color);
        font-weight: 400;
        padding: 6px 30px 6px 15px;
        display: block;
        font-size: 14px;
        text-transform: capitalize;
    }

    #menu .nav>li>a,
    #menu #topCategoryList .menu_drop>.dropdown-inner>li>a {
        font-size: 14px;
    }

    #menu #topCategoryList ul {
        float: none;
        display: block;
        text-align: left;
        margin: 0;
        background: transparent;
    }

    #menu #topCategoryList ul.category-list {
        margin-bottom: 10px;
    }

    #menu .dropdown-inner,
    #navCategory .dropdown-inner {
        display: block;
    }

    #topCategoryList .dropdown.menulist .dropdown-menu .dropdown-inner {
        display: block;
        padding: 0 10px;
    }

    #topCategoryList .dropdown.menulist .dropdown-menu {
        position: relative;
        float: none;
        background-color: transparent;
        border: none;
        box-shadow: none;
        display: none;
        padding: 0;
    }

    #menu #topCategoryList .dropdown-inner .dropdown-submenu ul.sub-menu {
        display: none;
        position: unset;
        border: none;
        padding: 0 10px;
    }

    #topCategoryList li .toggle-menu {
        position: absolute;
        right: 0;
        top: 0;
        padding: 9px 10px;
        color: var(--primary-color);
    }

    #topCategoryList .dropdown-submenu>.fa {
        display: none;
    }

    #topCategoryList ul li {
        float: none;
    }

    #topCategoryList #more_cat {
        display: none;
    }

    #menu .btn-navbar {
        display: block;
        padding: 0;
        margin: 0;
        border: none;
        height: 34px;
        width: 34px;
        background: var(--secondary-color);
        border-radius: 50%;
    }

    .category-list .menu-item.dropdown .dropdown-menu {
        position: relative;
        box-shadow: none;
        width: 100%;
        border: none;
        padding: 0 15px;
        float: none;
    }

    #menu #topCategoryList>ul {
        margin: 0 0 10px;
    }
}

@media (max-width: 480px) {
    #menu {
        margin: 0 10px 0 0;
    }

    #topCategoryList {
        max-width: 280px;
    }
}

/*----------------------------------------------*/
/* slider start */
/*----------------------------------------------*/
.common-home .swiper-viewport {
    box-shadow: none;
    border: none;
    border-radius: 0;
    margin-bottom: 0;
    background: transparent;
}

/*----------------------------------------------*/
/* category feature */
/*----------------------------------------------*/
.category-thumb {
    position: relative;
    text-align: center;
    background: var(--secondary-color);
    z-index: 0;
    overflow: hidden;
    display: flex;
    border-radius: 5px;
}

.category-thumb .caption {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
}

.category-thumb .cat-title {
    margin: 0;
    padding: 8px 5px 12px;
    line-height: 20px;
    font-size: 18px;
    font-weight: 400;
    text-transform: capitalize;
    background: var(--background-color);
}

.category-thumb .cat-title:hover {
    background: var(--primary-hover-color);
}

.category-thumb .cat-title:hover a {
    color: var(--secondary-color);
}

@media (max-width: 991px) {
    .category-thumb .cat-title {
        font-size: 16px;
        padding: 7px 5px;
    }
}

@media (max-width: 480px) {
    .category-thumb .cat-title {
        font-size: 14px;
    }
}

/*----------------------------------------------*/
/* banners */
/*----------------------------------------------*/
.html1 .banners,
.html2 .banners {
    position: relative;
    overflow: hidden;
}

.inner1 img {
    width: 100%;
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
}

.html1 {
    /* background: url(../image/mahardhi/banner-bg.jpg) no-repeat center center; */
    background-size: cover;
    padding: 120px 0;
    /* margin: -60px 0;*/
}

.banner1 .inner1 img {
    border-radius: 5px 0 0 5px;
}

.banner3 .inner1 img {
    border-radius: 0 5px 5px 0;
}

.html1-inner {
    display: flex;
    align-items: center;
}

.html1-inner>div {
    padding: 0;
    width: 100%;
}

.banners.banner2 {
    z-index: 1;
}

.inner2 {
    position: absolute;
    left: 0;
    right: 0;
    top: auto;
    bottom: 30px;
    margin: auto;
    text-align: center;
}

.inner2 .promo-title {
    font-size: 24px;
    font-weight: 700;
    margin: 17px 0 30px;
    color: var(--secondary-color);
}

.inner2 .promo-sale {
    font-size: 18px;
    font-weight: 400;
    color: var(--secondary-color);
}

.inner2 .button {
    border: none;
    background: var(--secondary-color);
    color: var(--primary-color);
    text-transform: uppercase;
    font-weight: 400;
    padding: 10px 30px;
    border-radius: 25px;
    -webkit-border-radius: 25px;
    -moz-border-radius: 25px;
    transition-duration: 500ms;
    -webkit-transition-duration: 500ms;
    -moz-transition-duration: 500ms;
    -ms-transition-duration: 500ms;
    -o-transition-duration: 500ms
}

.inner2 .button:hover {
    color: var(--secondary-color);
    background: var(--primary-hover-color);
}

/* html2 */
.html2 .inner2 {
    left: auto;
    top: 0;
    bottom: 0;
    right: 23%;
    height: fit-content;
    height: -moz-fit-content;
}

.html2 .inner2 .promo-title {
    margin: 17px 0 22px;
    color: var(--primary-color);
}

.html2 .inner2 .promo-sale {
    color: var(--primary-hover-color);
}

.html2 .inner2 .button {
    color: var(--secondary-color);
    background: var(--primary-hover-color);
}

.html2 .inner2 .button:hover {
    color: var(--secondary-color);
    background: var(--primary-color);
}

.banners.banner2 {
    padding-top: 30px;
    padding-bottom: 40px;
}

.promo-text-box {
    margin-bottom: 30px;
}


@media (min-width: 992px) {
    .inner1 img {
        max-width: 100%;
        transform: scale(1.0);
        -webkit-transform: scale(1.0);
        -moz-transform: scale(1.0);
        -o-transform: scale(1.0);
        -ms-transform: scale(1.0);
        -webkit-transition: all 0.7s ease;
        -moz-transition: all 0.7s ease;
        -o-transition: all 0.7s ease;
        transition: all 0.7s ease;
    }

    .banners:hover .inner1 img {
        transform: scale(1.05);
        -webkit-transform: scale(1.05);
        -moz-transform: scale(1.05);
        -o-transform: scale(1.05);
        -ms-transform: scale(1.05);
        -webkit-transition: all 0.7s ease;
        -moz-transition: all 0.7s ease;
        -o-transition: all 0.7s ease;
        transition: all 0.7s ease;
    }

    .inner2 .promo-title,
    .inner2 .promo-sale {
        transition: all 0.8s ease 0s;
        -webkit-transition: all 0.8s ease 0s;
        -moz-transition: all 0.8s ease 0s;
        -ms-transition: all 0.8s ease 0s;
        -o-transition: all 0.8s ease 0s;
    }

    .banners:hover .inner2 .promo-title {
        transform: translateY(-40px);
        -webkit-transform: translateY(-40px);
        -ms-transform: translateY(-40px);
        -o-transform: translateY(-40px);
        -moz-transform: translateY(-40px);
        transition: all 0.8s ease 0s;
        -webkit-transition: all 0.8s ease 0s;
        -moz-transition: all 0.8s ease 0s;
        -ms-transition: all 0.8s ease 0s;
        -o-transition: all 0.8s ease 0s;
    }

    .banners:hover .inner2 .promo-sale {
        transform: translateY(40px);
        -webkit-transform: translateY(40px);
        -ms-transform: translateY(40px);
        -o-transform: translateY(40px);
        -moz-transform: translateY(40px);
        transition: all 0.8s ease 0s;
        -webkit-transition: all 0.8s ease 0s;
        -moz-transition: all 0.8s ease 0s;
        -ms-transition: all 0.8s ease 0s;
        -o-transition: all 0.8s ease 0s;
    }
}

@media (min-width: 1441px) {
    .html1-inner>div:nth-child(1) {
        margin: 0 -75px 0 0;
    }

    .html1-inner>div:nth-child(3) {
        margin: 0 0 0 -75px;
    }
}

@media (max-width: 1440px) {
    .inner2 .promo-title {
        font-size: 20px;
        margin: 13px 0 20px;
    }

    .inner2 .promo-sale {
        font-size: 16px;
    }

    .html2 .inner2 .promo-title {
        margin: 12px 0 17px;
    }
}

@media (max-width: 991px) {
    .html1 {
        padding: 60px 0;
        margin: -30px 0;
    }

    .html1-inner>div:last-child {
        display: none;
    }

    .inner2 .button {
        padding: 7px 20px;
    }

    .html2 .inner2 {
        right: 15%;
    }

    .html2 .inner2 .promo-title {
        margin: 7px 0 13px;
    }
}

@media (max-width: 680px) {
    .inner2 {
        bottom: 10px;
    }

    .inner2 .promo-title {
        font-size: 16px;
        margin: 10px 0 15px;
    }

    .inner2 .promo-sale {
        font-size: 14px;
    }

    .inner2 .button {
        padding: 5px 15px;
        font-size: 12px;
    }
}

@media (max-width: 540px) {
    .inner2 .promo-title {
        font-size: 14px;
        margin: 5px 0 10px;
    }

    .inner2 .promo-sale {
        font-size: 12px;
    }

    .html2 .inner2 .promo-sale {
        line-height: 16px;
    }

    .html2 .inner2 .promo-title {
        font-size: 14px;
        margin: 5px 0 8px;
    }
}

@media (max-width: 480px) {
    .inner2 .button {
        font-size: 10px;
        line-height: 14px;
    }

    .inner2 .promo-title {
        font-size: 12px;
    }

    .html2 .inner2 .promo-sale {
        display: none;
    }
}

@media (max-width: 375px) {
    .html2 .inner2 .promo-title {
        font-size: 12px;
        margin: 0 0 5px;
    }
}

/*----------------------------------------------
/* buttons 
/*----------------------------------------------*/
.buttons {
    margin: 1em 0;
}

#tab-review .buttons {
    margin: 1em 0 0;
}

button {
    transition-duration: 500ms;
    -webkit-transition-duration: 500ms;
    -moz-transition-duration: 500ms;
    -ms-transition-duration: 500ms;
    -o-transition-duration: 500ms;
}

.btn {
    font-size: 14px;
    line-height: 20px;
    border-radius: 0;
    transition-duration: 500ms;
    -webkit-transition-duration: 500ms;
    -moz-transition-duration: 500ms;
    -ms-transition-duration: 500ms;
    -o-transition-duration: 500ms;
}

.btn-xs {
    font-size: 9px;
}

.btn-sm {
    font-size: 10.2px;
}

.btn-lg {
    padding: 8px 20px;
    font-size: 14px;
}

.btn-group>.btn,
.btn-group>.dropdown-menu,
.btn-group>.popover {
    font-size: 14px;
}

.btn-group>.btn-xs {
    font-size: 9px;
}

.btn-group>.btn-sm {
    font-size: 10.2px;
}

.btn-group>.btn-lg {
    font-size: 14px;
}

#cart .text-right .addtocart-btn,
#cart .text-right .checkout-btn,
.btn-default,
.btn-primary {
    width: auto;
    display: inline-block;
    font-size: 14px;
    font-weight: 400;
    text-transform: uppercase;
    padding: 10px 30px;
    border: none;
    color: var(--secondary-color);
    background: var(--primary-hover-color);
    border-radius: 25px;
    -webkit-border-radius: 25px;
    -moz-border-radius: 25px;
    transition: all 0.5s ease-in-out;
    -webkit-transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -ms-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
}

#cart .text-right .addtocart-btn:hover,
#cart .text-right .addtocart-btn:focus,
#cart .text-right .checkout-btn:hover,
#cart .text-right .checkout-btn:focus,
.open>.dropdown-toggle.btn-primary.focus,
.open>.dropdown-toggle.btn-primary:focus,
.open>.dropdown-toggle.btn-primary:hover,
.btn-primary[disabled].active,
.btn-primary[disabled].focus,
.btn-primary[disabled]:active,
.btn-primary[disabled]:focus,
.btn-primary[disabled]:hover,
.btn-default:hover,
.btn-default:focus,
.btn-default:active:hover,
.btn-default:active,
.btn-default:active:focus,
.btn-primary:hover,
.btn-primary:focus,
.btn-primary:active,
.btn-primary:active:hover,
.btn-primary:active:focus,
.btn-primary.active,
.btn-primary.disabled,
.btn-primary[disabled],
.btn-info:hover,
.btn-info:active,
.btn-info.active,
.btn-info.disabled,
.btn-info[disabled],
.btn-info.focus,
.btn-info:focus,
.btn-info:active:focus,
.btn-info:active:hover {
    color: var(--secondary-color);
    background: var(--primary-color);
    box-shadow: none;
}

.btn-warning {
    color: var(--secondary-color);
    background-color: #faa732;
    border-radius: 25px;
    -webkit-border-radius: 25px;
    -moz-border-radius: 25px;
    font-weight: 400;
    transition: all 0.5s ease-in-out;
    -webkit-transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -ms-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
}

.btn-danger {
    color: var(--secondary-color);
    background-color: #da4f49;
    text-transform: uppercase;
    padding: 10px 30px;
    font-weight: 400;
    border: none;
    border-radius: 25px;
    -webkit-border-radius: 25px;
    -moz-border-radius: 25px;
    transition: all 0.5s ease-in-out;
    -webkit-transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -ms-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
}

.btn-success {
    font-weight: 400;
    color: var(--secondary-color);
    background-color: #5bb75b;
    background-repeat: repeat-x;
    border-radius: 25px;
    -webkit-border-radius: 25px;
    -moz-border-radius: 25px;
    transition: all 0.5s ease-in-out;
    -webkit-transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -ms-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
}

.btn-info {
    color: var(--secondary-color);
    background: var(--primary-hover-color);
    border: none;
    font-weight: 400;
    padding: 10px 30px;
    border-radius: 25px;
    -webkit-border-radius: 25px;
    -moz-border-radius: 25px;
    text-transform: uppercase;
    transition: all 0.5s ease-in-out;
    -webkit-transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -ms-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
}

.btn-link {
    border-color: rgba(0, 0, 0, 0);
    cursor: pointer;
    color: var(--primary-color);
    border-radius: 25px;
    -webkit-border-radius: 25px;
    -moz-border-radius: 25px;
    transition: all 0.5s ease-in-out;
    -webkit-transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -ms-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
}

.btn-link,
.btn-link:active,
.btn-link[disabled] {
    background-color: rgba(0, 0, 0, 0);
    background-image: none;
    box-shadow: none;
}

.btn-inverse {
    color: var(--primary-hover-color);
    background-color: #363636;
    background-repeat: repeat-x;
    border-color: var(--primary-color) var(--primary-color) #000000;
}

.btn-inverse:hover,
.btn-inverse:active,
.btn-inverse.active,
.btn-inverse.disabled,
.btn-inverse[disabled] {
    background-color: var(--primary-color);
}

.btn-link:focus,
.btn-link:hover {
    color: var(--secondary-color);
    text-decoration: none;
    outline: none;
}

/* list group */
.list-group a {
    border: none;
    color: var(--secondary-light-color);
    padding: 8px 12px;
}

.list-group a.active,
.list-group a.active:hover,
.list-group a:hover {
    color: var(--primary-color);
    background: var(--primary-hover-color);
}

.cart_input_block .input-group-btn .btn {
  margin-left: 0.5rem;
}

@media (max-width: 991px) {

    #cart .dropdown-menu li p .btn,
    .btn-default,
    .btn-primary,
    .btn-info,
    .btn-danger {
        padding: 7px 20px;
    }
}

@media (max-width: 500px) {

    .buttons{
        display: flex;
        flex-direction: column;
        align-items: center;
    }
}

/*----------------------------------------------*/
/* products */
/*----------------------------------------------*/
.owl-item.active.center .row-items,
.owl-item.active .image-additional,
.owl-item.active .product-layout,
.owl-item.active .category-layout {
    -moz-animation: zoomIn 500ms ease;
    -o-animation: zoomIn 500ms ease;
    -webkit-animation: zoomIn 500ms ease;
    animation: zoomIn 500ms ease;
}

.page-title {
    position: relative;
}

.page-title h3 {
    text-align: center;
    font-size: 24px;
    margin: 0 0 72px;
    text-transform: uppercase;
    position: relative;
    font-weight: 700;
    line-height: 24px;
    color: var(--primary-color);
}

.product-thumb {
    position: relative;
    overflow: hidden;
    margin-bottom: 30px;
    background: var(--secondary-color);
}

.product-thumb .image {
    text-align: center;
    position: relative;
    overflow: hidden;
}

.product-thumb .image a {
    display: block;
}

.product-thumb .image img {
    margin-left: auto;
    margin-right: auto;
    width: 100%;
}

.product-thumb .button-group {
    display: flex;
    gap: 20px;
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    opacity: 0;
    width: fit-content;
    width: -moz-fit-content;
    transition-duration: 500ms;
    -webkit-transition-duration: 500ms;
    -moz-transition-duration: 500ms;
    -ms-transition-duration: 500ms;
    -o-transition-duration: 500ms;
}

.product-thumb:hover .button-group {
    bottom: 44%;
    opacity: 1;
}

.product-thumb .button-group button {
    position: relative;
    font-size: 18px;
    padding: 0;
    bottom: 0;
    height: 44px;
    width: 44px;
    /* border-radius: 50%; */
    /* -webkit-border-radius: 50%;
    -moz-border-radius: 50%; */
    background: var(--secondary-color);
    color: var(--primary-color);
    border: none;
    z-index: 1;
}

.product-list .product-thumb .button-group button {
    background: var(--background-color);
}

.product-thumb .button-group button:hover,
.product-list .product-thumb .button-group button:hover {
    box-shadow: none;
    color: var(--secondary-color);
    background: var(--primary-hover-color);
}

.product-thumb .button-group button i {
    display: block;
}

.product-thumb .button-group button+button {
    margin: 0 0 0 5px;
}

.product-thumb .sale-text {
    position: absolute;
    font-size: 12px;
    font-weight: 400;
    top: 7px;
    right: -50px;
    line-height: 20px;
    z-index: 1;
    opacity: 0;
    text-transform: capitalize;
    background: transparent;
    color: var(--primary-color);
    transition-duration: 200ms;
    -webkit-transition-duration: 200ms;
    -moz-transition-duration: 200ms;
    -ms-transition-duration: 200ms;
    -o-transition-duration: 200ms;
}

.product-thumb:hover .sale-text {
    right: 10px;
    opacity: 1;
}

.product-thumb .description {
    color: var(--secondary-light-color);
    line-height: 24px;
    margin: 8px 0 0;
    font-size: 14px;
}

.thumb-description {
    position: relative;
    overflow: hidden;
}

.product-list .thumb-description {
    overflow: hidden;
}

.product-thumb .caption {
    padding: 18px 0 0;
    position: relative;
    text-align: center;
    -webkit-transition: all 0.3s ease 0s;
    -moz-transition: all 0.3s ease 0s;
    -ms-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
}

.product-thumb .product-title {
    margin: 0;
}

.product-thumb .product-title a {
    text-transform: uppercase;
    font-size: 16px;
    font-weight: 400;
    display: block;
    padding: 0 0 20px;
    margin: 0 0 16px;
    border-bottom: 1px solid var(--border-color);
}

.product-thumb .price {
    display: inline-block;
    vertical-align: middle;
    float: left;
    font-size: 16px;
    font-weight: 700;
    margin: 0;
    line-height: 20px;
    color: var(--primary-color);
}

.product-thumb .price-new {
    margin-right: 5px;
}

.product-thumb .price-old {
    text-decoration: line-through;
    display: inline-block;
    font-weight: 700;
    font-size: 14px;
    color: var(--secondary-light-color);
    line-height: 19px;
}

.product-thumb .price-tax {
    display: none;
}

.product-thumb .rating {
    position: relative;
    display: inline-block;
    vertical-align: middle;
    float: right;
    font-weight: 400;
    font-size: 0;
    z-index: 1;
    text-transform: capitalize;
}

.product-list .product-thumb .product-title a,
#column-left .product-thumb .product-title a,
#column-right .product-thumb .product-title a {
    border: none;
    padding: 0;
}

.product-list .product-thumb .price,
#column-left .product-thumb .price,
#column-right .product-thumb .price {
    display: block;
    float: unset;
}

.product-list .product-thumb .thumb-description .rating,
#column-left .product-thumb .thumb-description .rating,
#column-right .product-thumb .thumb-description .rating {
    display: block;
    float: unset;
    margin: 10px 0 0;
}

.product-list .product-thumb .btn-list>button+button {
    margin: 0 0 0 8px;
}

.product-thumb .btn-list,
.product-list .product-thumb .button-group {
    display: none;
}

.product-list .product-thumb .thumb-description .rating {
    margin: 15px 0 0;
}

.product-list .product-thumb .all-btn {
    margin: 17px 0 0;
}

.product-list .product-thumb .btn-list {
    position: relative;
    opacity: 1;
    display: block;
    margin: 0;
}

/*product hover */
.product-thumb .hover-img {
    left: 0;
    max-width: 100%;
    opacity: 0;
    position: absolute;
    right: 0;
    text-align: left;
    top: 0;
    transition-duration: 500ms;
    transform: translateY(100%);
    -moz-transform: translateY(100%);
    -webkit-transform: translateY(100%);
    -ms-transform: translateY(100%);
    -o-transform: translateY(100%);
}

.product-thumb:hover .hover-img {
    opacity: 1;
    -khtml-opacity: 1;
    -webkit-opacity: 1;
    -moz-opacity: 1;
    overflow: hidden;
    transform: translateY(0%);
    -moz-transform: translateY(0%);
    -webkit-transform: translateY(0%);
    -ms-transform: translateY(0%);
    -o-transform: translateY(0%);
    transition-duration: 500ms;
    -webkit-transition-duration: 500ms;
    -moz-transition-duration: 500ms;
    -ms-transition-duration: 500ms;
    -o-transition-duration: 500ms;
    background: var(--secondary-color);
}

/*product tab*/
.mahardhi-tabs .nav-tabs {
    border: none;
    margin: 0 0 30px;
    padding: 0;
    display: flex;
    justify-content: center;
}

.mahardhi-tabs .nav-tabs>li>a {
    display: inline-block;
    padding: 10px 30px;
    text-transform: capitalize;
    font-weight: 400;
    font-size: 14px;
    border: none;
    line-height: 20px;
    color: var(--primary-color);
    background: var(--background-color);
    border: none;
    border-radius: 25px;
    -webkit-border-radius: 25px;
    -moz-border-radius: 25px;
}

.mahardhi-tabs .nav-tabs>li+li {
    margin: 0 0 0 15px;
}

.mahardhi-tabs .nav-tabs>li>a:hover,
.mahardhi-tabs .nav-tabs>li>a:focus,
.mahardhi-tabs .nav-tabs>li>a.selected {
    color: var(--secondary-color);
    background: var(--primary-hover-color);
}

.mahardhi-tabs .nav-tabs li {
    margin: 0;
}

#button-cart i,
#quick-cart i {
    padding: 0 9px 0 0;
}

@media (max-width: 1199px) {
    .product-thumb .price {
        font-size: 14px;
    }

    .product-thumb .price-old {
        font-size: 12px;
    }
}

@media (max-width: 991px) {
    .page-title h3 {
        font-size: 20px;
        line-height: 20px;
        margin: 0 0 40px;
    }

    .mahardhi-tabs .nav-tabs>li+li {
        margin: 0 0 0 10px;
    }

    .mahardhi-tabs .nav-tabs>li>a {
        padding: 5px 15px;
        font-size: 14px;
    }

    .mahardhi-tabs .nav-tabs {
        margin: 0 0 20px;
    }

    .product-thumb {
        /* margin-bottom: 20px; */
    }

    /* .brand .col-sm-12,
    .category-layout,
    .product-layout,
    #category-blogs .blog-layout,
    .blog-content .blog-block {
        padding: 0 5px;
    } */

    .brand .row,
    .category-featured .row,
    .box .row,
    .mblog .box-content>.row,
    .testimonial-block .row {
        margin: 0 -5px;
    }

    .product-thumb .image {
        border-radius: 5px;
    }

    .product-thumb .caption {
        padding: 10px 5px 0;
    }

    .product-thumb:hover .sale-text,
    .product-thumb .sale-text {
        right: 5px;
        opacity: 1;
    }

    .product-thumb .product-title a {
        font-size: 14px;
        margin: 0 0 10px;
        padding: 0 0 10px;
    }

    .product-thumb .price {
        font-size: 14px;
        margin: 0 0 5px;
        display: block;
        float: unset;
    }

    .product-thumb .rating {
        display: block;
        float: unset;
    }

    .product-list .product-thumb .description {
        margin: 8px 0 0;
    }

    .product-thumb .button-group button {
        height: 30px;
        width: 30px;
        font-size: 14px;
        align-self: center;
    }

    .product-thumb .button-group,
    .product-thumb:hover .button-group {
        opacity: 1;
        bottom: 0;
        top: 0;
        height: fit-content;
        height: -moz-fit-content;
    }

    .product-thumb .button-group button+button {
        margin: 0;
    }

    .product-list .product-thumb .thumb-description .rating {
        margin: 8px 0 0;
    }

    .product-list .product-thumb .btn-list>button+button {
        margin: 0 0 0 2px;
    }
}

@media (max-width: 680px) {
    .product-list .product-thumb .image img {
        width: auto;
        margin: 0;
    }

    .special-image {
        width: auto;
        margin-right: 10px;
    }

    .product-list .product-thumb .product-title a {
        margin: 0 0 10px;
    }

    .product-list .product-thumb .thumb-description .rating {
        margin: 10px 0 0;
    }
}

@media (max-width: 480px) {
    .page-title h3 {
        font-size: 18px;
    }

    .mahardhi-tabs .nav-tabs>li>a {
        padding: 2px 10px;
        font-size: 12px;
    }

    .product-thumb .product-title a {
        font-size: 11px;
    }


}

/*----------------------------------------------
/* swiper pager */
/*----------------------------------------------*/
.swiper-viewport .swiper-pager {
    top: auto;
    bottom: 40px;
    left: 0;
    right: 0;
    margin: auto;
    line-height: 0;
    width: fit-content;
}

.swiper-viewport .swiper-pager>div,
.owl-carousel.owl-theme .owl-nav div {
    position: relative;
    color: var(--primary-color);
    padding: 0;
    margin: 0 6px;
    opacity: 1;
    text-shadow: none;
    transition: all .3s ease;
    display: inline-block;
    text-align: center;
    line-height: 20px;
    height: 28px;
    width: 28px;
    border-radius: 0;
    border: none;
    background: transparent;
    color: var(--secondary-light-color);
}

.owl-carousel.owl-theme:hover .owl-nav div {
    opacity: 1;
}

.owl-carousel.owl-theme:hover .owl-nav .disabled {
    opacity: 0.6;
}

.swiper-viewport {
    border: unset;
}

.swiper-pagination {
    display: none;
}

.swiper-viewport .swiper-button-prev:before,
.swiper-viewport .swiper-button-next:before,
.brand .swiper-button-prev:before,
.brand .swiper-button-next:before {
    content: "";
}

.owl-carousel.owl-theme .owl-nav .fa,
.swiper-viewport .fa {
    font-size: 34px;
    line-height: 24px;
    display: block;
    text-align: center;
    color: var(--secondary-light-color);
}

.owl-carousel.owl-theme .owl-nav div:hover .fa,
.swiper-viewport div:hover .fa {
    color: var(--primary-hover-color);
}

/*carousel*/
.owl-carousel.owl-theme .owl-nav {
    margin-top: 0;
    position: absolute;
    text-align: center;
    margin: 0 auto;
    left: 0;
    right: 0;
    top: -48px;
}

.product-tab-block .owl-carousel.owl-theme .owl-nav {
    top: -120px;
}

.mblog .owl-carousel.owl-theme .owl-nav {
    margin: 0;
    position: absolute;
    top: -47px;
    right: 15px;
    left: auto;
}

.carousel .swiper-viewport:hover .swiper-button-next,
.carousel .swiper-viewport:hover .swiper-pager .swiper-button-prev {
    opacity: 1;
}

.swiper-viewport .swiper-pager .swiper-button-next:hover,
.owl-carousel.owl-theme .owl-nav .owl-next:hover,
.swiper-viewport .swiper-pager .swiper-button-prev:hover,
.owl-carousel.owl-theme .owl-nav .owl-prev:hover {
    background: transparent;
    color: var(--primary-hover-color);
}

.brand .swiper-pager>div {
    position: absolute;
    top: 0;
    bottom: 0;
    margin: auto;
    width: auto;
    border: none;
    height: fit-content;
}

.brand .swiper-viewport .swiper-pager>div:hover {
    background: transparent;
    color: var(--primary-hover-color);
}

.brand .swiper-viewport .swiper-pager .swiper-button-prev,
.brand .swiper-viewport:hover .swiper-pager .swiper-button-prev {
    right: auto;
    left: 0px;
}

.brand .swiper-viewport .swiper-pager .swiper-button-next,
.brand .swiper-viewport:hover .swiper-pager .swiper-button-next {
    right: 0px;
    left: auto;
}

/*dots*/
.swiper-pagination span,
.owl-theme .owl-dots .owl-dot span {
    width: 10px;
    height: 10px;
    background: var(--secondary-light-color);
    box-shadow: none;
    margin: 0 3px;
}

.owl-theme .owl-dots .owl-dot.active span {
    border: 2px solid var(--primary-hover-color);
    height: 14px;
    width: 14px;
    margin-top: 0;
    margin-bottom: 0;
}

.swiper-pagination span.swiper-pagination-bullet-active,
.swiper-pagination span:hover,
.owl-theme .owl-dots .owl-dot.active span,
.owl-theme .owl-dots .owl-dot:hover span {
    background: var(--primary-hover-color);
}

.owl-theme .owl-nav.disabled+.owl-dots {
    margin: 0;
}

/*slideshow*/
.slideshow {
    position: relative;
    overflow: hidden;
}

.slideshow img {
    width: 100%;
}

.slideshow .swiper-pagination {
    display: none;
}

.slideshow .swiper-viewport .swiper-pager>div {
    opacity: 1;
    border-radius: 0;
    background: transparent;
    border: none;
    color: var(--primary-color);
}

.slideshow .swiper-viewport .swiper-pager>div:hover .fa {
    color: var(--primary-hover-color);
}

.slideshow .swiper-viewport .swiper-pager .swiper-button-prev {
    left: 0;
}

.slideshow .swiper-viewport .swiper-pager .swiper-button-next {
    right: 0;
}

@media (max-width: 1199px) {
    .swiper-viewport .swiper-pager {
        bottom: 20px;
    }
}

@media (max-width: 991px) {
    .slideshow .swiper-pagination {
        display: block;
        bottom: 5px;
    }

    .slideshow .swiper-pager {
        display: none;
    }

    .owl-carousel.owl-theme .owl-nav div {
        height: 24px;
        width: 24px;
        margin: 0 4px;
    }

    .owl-carousel.owl-theme .owl-nav .fa {
        font-size: 26px;
        line-height: 20px;
    }

    .owl-carousel.owl-theme .owl-nav {
        top: -30px;
    }

    .product-tab-block .owl-carousel.owl-theme .owl-nav {
        top: -80px;
    }

    .mblog .owl-carousel.owl-theme .owl-nav {
        top: -33px;
        right: 5px;
    }
}

@media (max-width: 480px) {
    .product-tab-block .owl-carousel.owl-theme .owl-nav {
        top: -75px;
    }
}

/*----------------------------------------------*/
/* brand */
/*----------------------------------------------*/
.brand .swiper-viewport {
    background: var(--secondary-color);
}

.brand .swiper-slide>div {
    padding: 30px 0;
    border-radius: 5px;
    background: var(--background-color);
}

.brand .swiper-pager {
    display: none;
}

@media (max-width: 991px) {
    .brand .swiper-slide>div {
        padding: 20px 0;
    }
}

@media (max-width: 480px) {
    .brand .swiper-slide>div {
        padding: 15px 0;
    }
}

/*----------------------------------------------*/
/* blog */
/*----------------------------------------------*/
.link_info {
    position: relative;
}

.blog-block {
    margin-bottom: 30px;
    position: relative;
}

.mblog .blog-content .product-block.blog-block:last-child {
    margin-bottom: 0;
}

.mblog .blog-info {
    width: 27.78%;
    float: left;
}

.blog-info .image {
    overflow: hidden;
    position: relative;
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
}

.mblog .caption.blog-description {
    position: relative;
    float: left;
    width: 68.20%;
    margin-left: 4%;
    padding: 0;
}

.block-date {
    font-size: 14px;
    line-height: 14px;
    display: inline-block;
    color: var(--primary-color);
}

.blog-text {
    font-size: 14px;
    line-height: 24px;
    margin: 9px 0 0;
    /* color: var(--secondary-light-color); */
}

.zoom-post {
    position: absolute;
    opacity: 0;
    top: 10px;
    left: -50px;
    transition: all 0.5s ease-in-out;
    -webkit-transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -ms-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
}

.blog-block:hover .zoom-post {
    opacity: 1;
    left: 10px;
}

.blog-block .zoom-post a::before {
    display: block;
    margin: 0;
    height: 40px;
    width: 40px;
    line-height: 40px;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    background: var(--primary-hover-color);
    color: var(--secondary-color);
    border: none;
    transition: all 0.5s ease-in-out;
    -webkit-transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -ms-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
}

.blog-block .zoom-post .hover-post::before {
    margin: 5px 0 0;
}

.blog-block .zoom-post a:hover::before {
    background: var(--primary-color);
    color: var(--secondary-color);
}

.blog-block .zoom-post a::before {
    transition: all 0.3s ease-in-out 0s;
    -webkit-transition: all 0.3s ease-in-out 0s;
    -moz-transition: all 0.3s ease-in-out 0s;
    -ms-transition: all 0.3s ease-in-out 0s;
    -o-transition: all 0.3s ease-in-out 0s;
}

.blog-block .hover-zoom::before,
.blog-block .hover-post:before {
    font-family: FontAwesome;
    font-size: 14px;
    margin: 0;
    display: block;
    text-align: center;
}

.blog-block .hover-zoom::before {
    content: "\f002";
}

.blog-block .hover-post:before {
    content: '\f0c1';
}

.blog-read.btn {
    padding: 10px 30px;
    text-transform: uppercase;
    border: none;
    font-weight: 400;
    box-shadow: none;
    background: var(--primary-hover-color);
    color: var(--secondary-color);
    border-radius: 25px;
    -webkit-border-radius: 25px;
    -moz-border-radius: 25px;
}

.blog-read:hover {
    background: var(--primary-color);
}

.product-list .blog-block.product-thumb .image {
    box-shadow: none;
    margin: 0;
}



/*----------------------------------------------*/
/* blog page */
/*----------------------------------------------*/
.blog-block h4,
h3.article-page-title {
    margin: 13px 0 0;
    line-height: 20px;
    font-size: 18px;
    font-weight: 700;
    text-transform: capitalize;
}

.product-list.blog-category.col-sm-6:nth-child(2n+1) {
    clear: left;
}

.blog-category .blog-img {
    position: relative;
    overflow: hidden;
    display: block;
}

.caption-blog p,
.info_blog p {
    margin: 20px 0 0;
}

.blog-block img {
    width: 100%;
}

.blog-category .blog-info .image,
#content-blogs .thumbnails .thumbnail img {
    border-radius: 5px 5px 0 0;
    -webkit-border-radius: 5px 5px 0 0;
    -moz-border-radius: 5px 5px 0 0;
}

.blog-category .blog-block .blog-description {
    position: relative;
    padding: 27px 30px 30px;
    text-align: center;
    border-radius: 0 0 5px 5px;
    -webkit-border-radius: 0 0 5px 5px;
    -moz-border-radius: 0 0 5px 5px;
    background: var(--background-color);
}

.blog-category .blog-text {
    margin: 15px 0 18px;
}

/*----------------------------------------------*/
/* article blog page */
/*----------------------------------------------*/
.article-container .singblog-description {
    background: var(--background-color);
    padding: 20px;
    border-radius: 0 0 5px 5px;
    -webkit-border-radius: 0 0 5px 5px;
    -moz-border-radius: 0 0 5px 5px;
}

.article-container .blog-block {
    margin-bottom: 0;
}

#content-blogs .thumbnails .thumbnail {
    border: unset;
    margin: 0;
    padding: 0;
}

.article-container .leave-hedding {
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    padding: 15px 20px;
    line-height: 20px;
    margin: 0;
    background: var(--primary-hover-color);
    color: var(--secondary-color);
    border-radius: 5px 5px 0 0;
    -webkit-border-radius: 5px 5px 0 0;
    -moz-border-radius: 5px 5px 0 0;
}

h3.article-page-title {
    margin: 13px 0 0;
}

.article-container .page-title {
    margin-bottom: 30px;
}

.article-container .post-comment .form-group {
    margin-right: 0;
    margin-left: 0;
}

#post_comment #commnt_form.form-horizontal .control-label {
    text-align: left;
}

.comment_cust h4 {
    margin-bottom: 20px;
}

.commentlist ul {
    padding: 0px;
    margin: 0px;
    list-style: none;
}

.commentlist ul li:last-child {
    padding-bottom: 0;
}

.commentlist ul li+li {
    padding-top: 10px;
}

.comment_cust .comment-text .user_img {
    float: left;
    height: 60px;
    width: 60px;
    background-color: var(--background-color);
    text-align: center;
    color: var(--primary-color);
    border-radius: 50px;
    -webkit-border-radius: 50px;
    -moz-border-radius: 50px;
}

.comment_cust .comment-text .user_img i {
    font-size: 26px;
    line-height: 60px;
}

.comment_cust .comment-desc {
    padding-left: 80px;
    line-height: 26px;
}

.comment_cust .comment-desc .name {
    font-weight: 400;
    text-transform: capitalize;
    font-size: 16px;
}

.comment_cust .comment-desc .date {
    color: var(--secondary-light-color);
}

.comment-dis {
    color: var(--secondary-light-color);
    line-height: 22px;
}

.comment_cust {
    padding: 20px;
    border-radius: 0 0 5px 5px;
    background: var(--background-color);
    border: none;
}

.comment-text {
    padding: 20px;
    border-radius: 5px;
    background: var(--secondary-color);
}

#post_comment {
    background: var(--background-color);
    padding: 20px 20px 1px;
    border-radius: 0 0 5px 5px;
}

.singblog-description .blog-text {
    margin: 11px 0 0;
}

@media (max-width: 1199px) {

    .blog-block h4,
    h3.article-page-title {
        font-size: 16px;
    }

    .blog-text {
        margin: 4px 0 0;
    }

    .blog-read.btn {
        padding: 7px 20px;
    }

    .blog-category .blog-text {
        margin: 7px 0 10px;
    }

    .blog-category .blog-block h4 {
        margin: 10px 0 0;
    }

    .blog-category .blog-block .blog-description {
        padding: 18px 15px 20px;
    }
}

@media (max-width: 991px) {

    .blog-block h4,
    h3.article-page-title {
        margin: 7px 0 0;
    }

    .blog-block {
        margin-bottom: 20px;
    }

    .article-container .page-title {
        margin-bottom: 15px;
    }

    .article-container .leave-hedding {
        padding: 10px 15px;
        font-size: 14px;
    }

    .blog-block .zoom-post a::before {
        height: 30px;
        width: 30px;
        line-height: 30px;
    }

    .blog-text {
        font-size: 14px;
    }

    #post_comment {
        padding: 15px 15px 1px;
    }

    .singblog-description .blog-text {
        margin: 8px 0 0;
    }

    .zoom-post,
    .blog-block:hover .zoom-post {
        opacity: 1;
        left: 10px;
        top: 10px;
    }

    .article-container .singblog-description {
        padding: 15px;
    }

    .comment_cust {
        padding: 15px;
    }
}

@media (max-width: 540px) {
    .comment-text {
        padding: 10px;
    }

    .comment_cust .comment-desc {
        padding-left: 70px;
    }
}

@media (max-width: 480px) {
    .article-container .singblog-description {
        padding: 15px;
    }

    .singblog-description .blog-text {
        margin: 5px 0 0;
    }
}

/*----------------------------------------------*/
/* Start Testimonial */
/*----------------------------------------------*/
.testimonial-container {
    padding: 56px 15px;
    border-radius: 5px;
    background: var(--secondary-color);
    box-shadow: 0 0 10px 1px rgba(0, 0, 0, 0.1);
}

.row-items {
    width: 70%;
    text-align: center;
    margin: 0 auto;
}

.testimonial-images {
    position: relative;
    display: none;
}

.testimonial-block .owl-dots .owl-dot {
    position: relative;
    margin: 0 5px;
}

.testimonial-block .owl-dots .owl-dot img {
    position: relative;
    padding: 5px;
    -ms-transform: scale(0.82, 0.82);
    -webkit-transform: scale(0.82, 0.82);
    transform: scale(0.82, 0.82);
}

.testimonial-block .owl-dots .owl-dot.active img {
    -ms-transform: scale(1, 1);
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
    transition: all 0.5s ease 0s;
}

.testimonial-block .owl-dots .owl-dot::before {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    top: -7px;
    height: 98px;
    width: 98px;
    border-radius: 50%;
    background: var(--primary-hover-color);
    margin: auto;
    transition: all 0.5s ease 0s;
}

.testimonial-block .owl-dots .owl-dot.active::before {
    top: -8px;
    height: 120px;
    width: 120px;
    transition: all 0.5s ease 0s;
}

.testimonial-images img {
    position: relative;
    margin: 10px auto;
}

.testimonial-text {
    position: relative;
    font-size: 16px;
    line-height: 24px;
    color: var(--secondary-light-color);
}

.testimonial-author {
    font-size: 18px;
    font-weight: 700;
    margin: 0 0 7px;
}

.testimonial-text p {
    margin: 30px 0 24px;
}

.testimonial-customer {
    font-size: 14px;
    color: var(--secondary-light-color);
}

@media only screen and (max-width: 1199px) {
    .row-items {
        width: 100%;
    }
}

@media only screen and (max-width: 991px) {
    .testimonial-container {
        padding: 30px 15px;
    }

    .testimonial-text {
        font-size: 14px;
    }

    .testimonial-text p {
        margin: 15px 0;
    }
}

@media only screen and (max-width: 680px) {
    .testimonial-block .owl-dots .owl-dot img {
        width: 75px !important;
    }

    .testimonial-block .owl-dots .owl-dot::before {
        width: 62px;
        height: 62px;
    }

    .testimonial-block .owl-dots .owl-dot.active::before {
        height: 75px;
        width: 75px;
    }

    .testimonial-block .owl-dots .owl-dot {
        position: relative;
        margin: 0 1px;
    }
}

@media (max-width: 480px) {
    .testimonial-container {
        padding: 20px 15px;
    }
}

/*----------------------------------------------*/
/* newsletter block */
/*----------------------------------------------*/
.newsletterblock {
    position: relative;
    text-align: center;
    padding: 54px 15px 60px;
    border-radius: 5px;
    background: var(--secondary-color);
    box-shadow: 0 0 10px 1px rgba(0, 0, 0, 0.1);
}

.newsletter-form.block-content {
    width: 60%;
    margin: auto;
}

.title-text h4 {
    position: relative;
    font-size: 24px;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--primary-color);
    padding: 0 0 28px;
    margin: 0 0 24px;
    text-align: center;
}

.title-text h4::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    top: auto;
    margin: auto;
    width: 11%;
    height: 2px;
    background: var(--primary-color);
}

.news-description {
    font-size: 16px;
    line-height: 24px;
    margin-bottom: 27px;
    color: var(--secondary-light-color);
}

.subscribe-form {
    position: relative;
    width: 60%;
    margin: auto;
}

.subscribe-form #newsletter_usr_email {
    height: 50px;
    text-align: center;
    border: none;
    border-radius: 25px;
    background: var(--background-color);
    color: var(--secondary-light-color);
}

.subscribe-form #newsletter_usr_email::placeholder {
    color: var(--secondary-light-color);
}

.subscribe-btn {
    border: none;
    background: var(--primary-hover-color);
    color: var(--secondary-color);
    padding: 10px 30px;
    font-weight: 400;
    border-radius: 25px;
    margin-top: 30px;
    text-transform: uppercase;
}

.subscribe-btn:hover {
    background: var(--primary-color);
}

@media (max-width: 1199px) {
    .newsletter-form.block-content {
        width: 70%;
    }
}

@media (max-width: 991px) {
    .newsletterblock {
        padding: 30px 15px;
    }

    .newsletter-form.block-content {
        width: 90%;
    }

    .title-text h4 {
        font-size: 20px;
        padding: 0 0 20px;
        margin: 0 0 15px;
    }

    .subscribe-form #newsletter_usr_email {
        height: 40px;
        padding: 5px 10px;
    }

    .subscribe-btn {
        padding: 7px 20px;
        margin-top: 20px;
    }

    .news-description {
        font-size: 14px;
    }
}

@media (max-width: 767px) {
    .newsletter-form.block-content {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .newsletterblock {
        padding: 20px 15px;
    }

    .title-text h4 {
        font-size: 18px;
        padding: 0px 0 15px;
        margin: 0px 0 10px;
    }

    .news-description {
        margin-bottom: 15px;
    }

    .subscribe-form {
        width: 100%;
    }
}

/*----------------------------------------------*/
/* footer start */
/*----------------------------------------------*/

footer {
    position: relative;
    background: var(--background-color);
}

footer h5,
footer h4,
.blog-title h3 {
    text-transform: uppercase;
    font-size: 16px;
    margin: 0 0 16px;
    line-height: 16px;
    position: relative;
    font-weight: 700;
    color: var(--primary-color);
}

.blog-title h3 {
    margin: 0 0 28px;
}

footer .footer-content a {
    font-size: 19px;
    padding: 8px 0;
    display: block;
    color: var(--secondary-light-color);
}

footer a:hover,
footer a:focus {
    color: var(--primary-hover-color);
}

.footer-top {
    padding: 47px 0 0 0;

}


/* social media*/


.position-footer-left li .social-media {
    margin: 26px 0 0;
}

.social-media a i {
    height: 34px;
    width: 34px;
    line-height: 34px;
    /* border-radius: 50px; */
    color: var(--secondary-color);
    text-align: center;
}

.social-media a {
    display: inline-block;
    width: 33px;
}

.social-media a+a {
    margin: 0 0 0 10px;
}

.social-media a .fa-facebook {
    background: #3b5998;
}

.social-media a .fa-twitter {
    background: #00acee;
}

.social-media a .fa-youtube-play {
    background: #c4302b;
}

.social-media a .fa-google-plus {
    background: #db3236;
}

.social-media a .fa-pinterest-p {
    background: #c8232c;
}

@media (max-width: 1199px) {
    .footer-top {
        padding: 50px 0;
    }

    footer .footer-content a {
        font-size: 17px;
    }
}

@media (max-width: 991px) {
    footer .footer-top {
        display: block;
        padding: 10px 0;
    }

    .position-footer-left,
    footer .footer-content {
        margin: 0 18px;
    }

    .footer-desc {
        margin: 8px 0 10px;
    }

    .social-media .list-unstyled {
        display: block !important;
        text-align: center;
    }

    .footer-top h5 {
        font-size: 1.7rem !important;
    }

    .social-media {
        justify-content: center !important;
    }

    footer .footer-content a {
        font-size: 14px;
    }

    .footer_bottom {
        padding: 10px 0;
    }

    footer h5,
    footer h4,
    .blog-title h3 {
        margin: 0 0 10px;
        font-size: 14px;
    }

    .blog-title h3 {
        margin: 0 0 15px;
    }

    .footer-top .col-sm-2,
    .footer-top .col-sm-3,
    .footer-top .col-sm-4 {
        width: 100%;
        float: unset;
        margin: 15px 0;
        border: none;
    }

    footer .footer-content a {
        padding: 4px 0;
    }

    footer .footer_bottom p {
        font-size: 14px;
    }

    .footer-bottom {
        padding: 15px 0;
    }

    .social-payment-footer {
        display: block;
        text-align: center;
    }

    .social-media {
        margin: 0 0 15px;
    }

    .social-media a i {
        height: 30px;
        width: 30px;
        line-height: 30px;
    }

    .social-media a+a {
        margin: 0 0 0 5px;
    }
}



/*----------------------------------------------*/
/* service */
/*----------------------------------------------*/
.service {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px 0;
}

.service .service-icon {
    display: block;
    font-size: 40px;
    min-width: 40px;
    margin: 0 10px 0 0;
    position: relative;
    overflow: hidden;
    color: var(--primary-color);
}

.service:hover .service-icon {
    color: var(--primary-hover-color);
}

.service .promo-title {
    font-size: 16px;
    line-height: 20px;
    margin: 0;
    text-transform: capitalize;
    font-weight: 400;
    color: var(--primary-color);
}

@media (max-width: 1199px) and (min-width: 768px) {
    .service {
        display: block;
        text-align: center;
    }

    .service .service-icon {
        margin: 0 0 10px;
    }
}

@media (max-width: 991px) {
    .service-item {
        padding: 0 5px;
    }

    .service-box .row {
        margin: 0 -5px;
    }

    .service .service-icon {
        font-size: 30px;
        min-width: 30px;
    }

    .service .promo-title {
        font-size: 14px;
    }
}

@media (max-width: 767px) {
    .service-box {
        padding: 15px 0;
    }

    .service {
        justify-content: unset;
        padding: 5px 0;
    }

    .service-box .service-item:nth-child(2n+1) {
        clear: left;
    }
}

@media (max-width: 480px) {
    .service {
        display: block;
        text-align: center;
    }

    .service .service-icon {
        margin: 0 0 10px;
    }

    .service .promo-title {
        font-size: 12px;
        line-height: 16px;
    }
}

/*----------------------------------------------*/
/* pagetitle */
/*----------------------------------------------*/
.page_title {
    font-size: 35px;
    text-align: center;
    /* text-transform: uppercase; */
    margin: 0 0 15px;
    font-weight: 700;
    line-height: 20px;
    display: block;
    line-height: 40px;
}

/*----------------------------------------------*/
/* breadcrumb */
/*----------------------------------------------*/
.breadcrumb-back {
    padding: 20px 0;
    margin: 0 0 30px 0;
    text-align: center;
    background: var(--background-color);
}

.breadcrumb {
    padding: 0;
    border: none;
    background: transparent;
    margin: 0;
    font-size: 16px;
    text-transform: capitalize;
}

.breadcrumb>li {
    position: relative;
}

.breadcrumb a:hover,
.breadcrumb li:last-child a {
    color: var(--primary-hover-color);
}

.breadcrumb>li+li:before {
    content: "/";
    color: var(--primary-color);
    padding: 0 8px 0 4px;
}

@media (max-width: 991px) {
    .breadcrumb-back {
        padding: 15px 0;
        margin: 0 0 20px 0;
    }

    .page_title {
        /* font-size: 25px; */
        margin: 0 0 10px;
    }

    .breadcrumb {
        font-size: 14px;
    }
}

/*----------------------------------------------*/
/* column-left-right */
/*----------------------------------------------*/
#column-left>div,
#column-right>div {
    margin: 30px 0 0;
    box-shadow: none;
    padding: 0;
    width: auto;
    float: unset;
}

#column-left>div:first-child,
#column-right>div:first-child {
    margin-top: 0;
}

#column-left h3,
#column-right h3,
#column-left .box-content h3,
#column-right .box-content h3 {
    display: block;
    margin: 0;
    padding: 15px 20px;
    font-size: 16px;
    text-align: left;
    text-transform: uppercase;
    position: relative;
    font-weight: 700;
    border-radius: 5px 5px 0 0;
    border: none;
    line-height: 20px;
    background: var(--primary-hover-color);
    color: var(--secondary-color);
}

a.list-group-item.active,
a.list-group-item.active:focus,
a.list-group-item.active:hover,
a.list-group-item:hover,
a.list-group-item:focus,
button.list-group-item:focus,
button.list-group-item:hover {
    color: var(--primary-hover-color);
    text-decoration: none;
    background-color: transparent;
}

.filter_box,
#column-left .block_box,
#column-right .block_box,
.category-list #selectMe-desk,
.account-content .list-unstyled,
.sidebar .list-unstyled {
    padding: 30px 20px;
    margin: 0;
    background: var(--background-color);
    border-radius: 0 0 5px 5px;
}

#column-left .row,
#column-right .row {
    margin: 0;
}

#column-left .box .container,
#column-right .box .container {
    width: auto;
    padding: 0;
}

.category-list .list-group-item,
.sidebar li,
.account-content .list-group a {
    border: none;
    border-radius: 0;
    margin: 0;
    background: transparent;
    padding: 8px 0;
    text-transform: capitalize;
    color: var(--secondary-light-color);
    font-size: 18px;
}

.sidebar .list-unstyled a {
    color: var(--secondary-light-color);
}

.category-list .list-group-item {
    padding: 8px 13px 8px 0;
}

.category-list ul#selectMe-desk>li:first-child>a.list-group-item,
.account-content .list-group ul>li:first-child a,
.sidebar li:first-child {
    padding-top: 0;
    margin-top: -4px;
}

.category-list ul#selectMe-desk>li:last-child>a.list-group-item,
.account-content .list-group ul>li:last-child a,
.sidebar li:last-child {
    padding-bottom: 0;
}

.category-list .has-more-category .toggled {
    position: absolute;
    right: 0;
}

.child-categories {
    display: none;
}

.main-item.active .toggled>.fa-plus:before,
.toggle-menu.active>.fa-plus:before {
    content: "\f068";
}

/*sidebar category*/
.box-category .list-unstyled.childs_1 {
    display: none;
}

.parent li .toggled span {
    color: var(--primary-color);
    font-size: 12px;
    position: absolute;
    right: 5px;
    padding: 0 5px;
}

.parent .active .open-menu::after {
    color: var(--primary-color);
    content: "\f068";
    font-family: "FontAwesome";
    font-size: 14px;
}

.parent .open-menu::after {
    color: var(--primary-color);
    content: "\f067";
    font-family: "FontAwesome";
    font-size: 14px;
}

/*REFINE SEARCH*/
.list-group-filter {
    margin-bottom: 27px;
}

.panel-default.filter {
    border: none;
}

.panel {
    border-radius: 0;
    box-shadow: none;
}

.filter_box .list-group a {
    color: var(--primary-color);
    text-transform: capitalize;
    margin: -4px 0 12px;
    background: transparent;
    font-size: 16px;
    font-weight: 500;
}

.filter_box .checkbox,
.filter_box .checkbox .radio {
    margin: 9px 0;
}

.filter_box .list-group-item {
    border: none;
    padding: 0px;
    background: transparent;
}

.filter_box .list-group-items+.list-group-items {
    margin: 27px 0 0;
}

.checkbox label,
.radio label {
    text-transform: capitalize;
    font-size: 14px;
    color: var(--secondary-light-color);
}

#filter .panel-footer {
    text-align: left;
    padding: 0;
    background: transparent;
}

/*banner*/
#column-left .swiper-viewport,
#column-right .swiper-viewport {
    border: none;
}

#column-left .swiper-slide img,
#column-right .swiper-slide img {
    width: 100%;
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
}

/*INFORMATION*/
.sidebar li a:hover,
.account-content .list-group a:hover {
    color: var(--primary-hover-color);
}

.account-content .list-group {
    margin: 0;
}

/*product*/
#column-left .product-thumb,
#column-right .product-thumb {
    margin: 0;
    background: transparent;
    box-shadow: none;
}

#column-left .product-layout+.product-layout .product-thumb,
#column-right .product-layout+.product-layout .product-thumb {
    margin: 30px 0 0 0;
}

#column-left .product-layout,
#column-right .product-layout {
    width: 100%;
    padding: 0;
}

#column-left .product-thumb>.image,
#column-right .product-thumb>.image {
    float: left;
    width: 75px;
    margin-right: 15px;
    background: var(--background-color);
}

#column-left .product-thumb:hover .hover-img,
#column-right .product-thumb:hover .hover-img {
    background: var(--background-color);
}

#column-left .product-thumb>.thumb-description,
#column-right .product-thumb>.thumb-description {
    float: left;
    width: 61.3%;
}

#column-left .sale-text,
#column-right .sale-text,
#column-left .product-thumb .button-group,
#column-right .product-thumb .button-group,
#column-left .product-thumb .addcart,
#column-right .product-thumb .addcart,
#column-left .product-thumb .wishlist,
#column-right .product-thumb .wishlist {
    display: none;
}

#column-left .product-thumb .caption,
#column-right .product-thumb .caption {
    padding: 13px 0 0;
    text-align: left;
}

#column-left .product-thumb .product-title a,
#column-right .product-thumb .product-title a {
    margin: 0 0 6px;
}

@media (min-width: 1441px) {

    #column-left,
    #column-right {
        width: 20%;
    }

    #content.col-sm-9 {
        width: 80%;
    }

    #content.col-sm-6 {
        width: 60%;
    }
}

@media (min-width: 1200px) and (max-width: 1440px) {
    .product-grid.col-lg-3 {
        width: 33.3333%;
    }

    .product-grid.col-lg-4 {
        width: 50%;
    }
}

@media (min-width: 1441px) and (max-width: 1600px) {

    #column-left .product-thumb>.image,
    #column-right .product-thumb>.image {
        margin-right: 10px;
    }

    #column-left .product-thumb>.thumb-description,
    #column-right .product-thumb>.thumb-description {
        float: left;
        width: 59.3%;
    }
}

@media (min-width: 1200px) and (max-width: 1440px) {

    #column-left .product-thumb>.image,
    #column-right .product-thumb>.image {
        width: 75px;
        margin-right: 10px;
    }
}

@media (min-width: 992px) and (max-width: 1199px) {

    #column-left .product-thumb>.image,
    #column-right .product-thumb>.image {
        margin-right: 5px;
        width: 70px;
    }

    #column-left .product-thumb>.thumb-description,
    #column-right .product-thumb>.thumb-description {
        width: 57.9%;
    }
}

@media only screen and (max-width: 1199px) {

    .filter_box,
    #column-left .block_box,
    #column-right .block_box,
    .category-list #selectMe-desk,
    .account-content .list-unstyled,
    .sidebar .list-unstyled {
        padding: 20px 15px;
    }

    #column-left .product-layout+.product-layout .product-thumb,
    #column-right .product-layout+.product-layout .product-thumb {
        margin: 20px 0 0 0;
    }

    #column-left h3,
    #column-right h3,
    #column-left .box-content h3,
    #column-right .box-content h3 {
        padding: 10px 15px;
    }

    #column-left .product-thumb .price,
    #column-right .product-thumb .price {
        margin: 0;
    }

    #column-left .product-thumb .rating,
    #column-right .product-thumb .rating {
        margin: 8px 0 0 0;
    }
}

@media only screen and (max-width: 991px) {

    #column-left .product-thumb>.thumb-description,
    #column-right .product-thumb>.thumb-description {
        width: 62.8%;
    }

    .toggled .toggle-open {
        position: absolute;
        right: 0;
    }

    #selectMe-desk {
        display: none;
    }

    #column-left .swiper-viewport,
    #column-right .swiper-viewport {
        display: none;
    }

    #column-left>div:first-child,
    #column-right>div:first-child {
        margin: 20px 0 0;
    }

    #column-left>div,
    #column-right>div {
        margin: 10px 0 0;
    }

    #column-left .toggled .toggle-open,
    #column-right .toggled .toggle-open {
        right: 15px;
    }

    #column-left h3,
    #column-right h3,
    #column-left .box-content h3,
    #column-right .box-content h3 {
        font-size: 14px;
        padding: 8px 15px;
    }
}

/*----------------------------------------------*/
/* category page */
/*----------------------------------------------*/
.category-block {
    padding: 20px;
    margin: 0 0 28px;
    border-radius: 5px;
    background: var(--background-color);
}

.cat-banner {
    border: none;
    padding: 0;
    background: transparent;
    border-radius: 5px;
    margin: 0 0 14px;
}

.cat-description p {
    margin: 0;
    color: var(--secondary-light-color);
    line-height: 24px;
    font-size: 14px;
}

.cat_info {
    /* margin: 0 0 30px; */
    background: var(--background-color);
    /* padding: 10px 15px; */
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
}

.refine-search {
    margin: 0 0 20px;
}

#content .refine-text {
    font-size: 16px;
    margin: 0 0 11px;
    font-weight: 700;
}

.cat-name {
    font-size: 16px;
    padding: 0;
    margin: 0;
    text-transform: capitalize;
}

.cat-name li {
    display: inline-block;
}

.cat-name li a {
    font-size: 14px;
    background: var(--background-color);
    color: var(--primary-color);
    padding: 8px 30px;
    display: inline-block;
    margin: 0 6px 10px 0;
    border: none;
    border-radius: 25px;
    -webkit-border-radius: 25px;
    -moz-border-radius: 25px;
}

.cat-name li a:hover {
    color: var(--secondary-color);
    background: var(--primary-hover-color);
}

#list-view.btn-default,
#grid-view.btn-default {
    height: 40px;
    width: 40px;
    padding: 0;
    border: none;
    background: var(--secondary-color);
    color: var(--primary-color);
    box-shadow: none;
    border-radius: 50%;
}

#grid-view.btn-default {
    margin: 0 10px 0 0;
}

#grid-view.btn-default.active,
#list-view.btn-default.active,
#grid-view.btn-default:hover,
#list-view.btn-default:hover {
    background: var(--primary-hover-color);
    color: var(--secondary-color);
}

#list-view.btn-default i,
#grid-view.btn-default i {
    font-size: 16px;
    display: block;
}

#compare-total.btn.btn-link {
    text-decoration: none;
    font-size: 14px;
    outline: none;
    padding: 10px 0;
    border: none;
    text-transform: capitalize;
    font-weight: 400;
    color: var(--primary-color);
}

#compare-total.btn.btn-link:hover {
    color: var(--primary-hover-color);
}

.cat-pagination-right {
    text-align: right;
}

.cat-pagination-right>div {
    display: inline-block;
    vertical-align: top;
    padding-top: 2px;
    padding-bottom: 2px;
}

.cat-pagination-right .cat-show {
    padding-left: 12px;
}

.text-right.show-text {
    padding: 0px 14px;
}

.text-right.show-text,
.text-right.show-select {
    width: auto;
    float: left;
}

.text_limit,
.text_sort {
    margin: 8px 0;
    font-size: 14px;
}

.select-filter-sort,
.select-filter-show {
    position: relative;
}

.cat-pagination-right .form-control {
    padding: 4px 25px 4px 10px;
    font-size: 14px;
    margin: 0;
    height: 36px;
    background: var(--secondary-color);
    border: none;
    border-radius: 25px;
}

select.form-control,
.form-control {
    appearance: none;
    -o-appearance: none;
    -moz-appearance: none;
    -webkit-appearance: none;
    cursor: pointer;
}

.form-control:focus {
    border-color: var(--border-color);
}

.select-filter-show::after,
.select-filter-sort::after {
    font-family: 'fontawesome';
    content: '\f0dd';
    font-size: 16px;
    position: absolute;
    right: 10px;
    top: 4px;
    pointer-events: none;
    color: var(--primary-color);
}

.product-grid .description,
.product-grid .pro_description {
    display: none;
}

.product-list .product-thumb .caption {
    padding: 38px 15px 10px 0;
    text-align: left;
}

.rating .fa-stack,
#tab-review .fa-stack {
    font-size: 8px;
}

.rating .fa-star-o,
#tab-review .fa-star-o {
    font-size: 13px;
    /*color: #d7d7d7;*/
    color: #c6c6c6;
}

.rating .fa-star,
.rating .fa-star+.fa-star-o,
#tab-review .fa-star+.fa-star-o,
#tab-review .fa-star {
    font-size: 13px;
    color: #ffb503;
}

@media (min-width: 681px) {
    .product-list .product-thumb .image {
        float: left;
        /* margin-right: 30px; */
    }
}

@media (max-width: 1199px) {
    .cat-pagination-right .cat-show {
        padding-left: 0;
    }

    #list-view.btn-default,
    #grid-view.btn-default {
        height: 36px;
        width: 36px;
    }

    #grid-view.btn-default {
        margin: 0 5px 0 0;
    }

    #compare-total.btn.btn-link {
        padding: 8px 0;
    }

    .cat-pagination-right>div {
        padding: 0;
    }

    #compare-total.btn.btn-link {
        font-size: 14px;
    }

    .text_limit,
    .text_sort {
        font-size: 14px;
    }

    .cat_info {
        /* padding: 10px 15px; */
    }

    .product-list .product-thumb .all-btn {
        margin: 10px 0 0;
    }

    .product-list .product-thumb .caption {
        padding: 25px 15px 10px 0;
    }
}

@media (max-width: 991px) {
    .category-block {
        padding: 15px;
        margin: 0 0 20px;
    }

    .refine-search {
        margin: 0 0 10px;
    }

    .cat-name li a {
        font-size: 12px;
        padding: 5px 10px;
    }

    .cat_info {
        /* margin: 0 0 20px; */
    }

    .product-list .product-thumb .image {
        margin-right: 20px;
    }
}

@media (max-width: 767px) {
    .cat-pagination-right {
        text-align: left;
        margin: 5px 0 0;
        padding: 0;
    }
}

@media (max-width: 680px) {
    .product-list .product-thumb .image {
        display: inline-block;
        margin: 0;
    }

    .product-list .product-thumb .caption {
        padding: 7px 0 0;
    }
}

@media (max-width: 480px) {
    .cat-pagination-right>* {
        display: inline-block;
        vertical-align: top;
        width: 100%;
    }

    .cat-pagination-right .cat-show {
        padding: 5px 0 0 0;
    }

    .cat-pagination-right {
        display: block;
        text-align: left;
    }

    #compare-total.btn.btn-link {
        font-size: 13px;
    }
}

/*----------------------------------------------*/
/* pagination css */
/*----------------------------------------------*/
.pro_pagination {
    clear: both;
    background: var(--background-color);
    padding: 12px 5px;
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
}

.pro_pagination .text-left {
    line-height: 36px;
    float: left;
    font-size: 14px;
    color: var(--secondary-light-color);
}

.pagination {
    padding: 0;
    margin: 0;
    vertical-align: top;
}

.pro_pagination .pagination>li.active>span,
.pagination>li>a:focus,
.pagination>li>a:hover,
.pagination>li>span:focus,
.pagination>li>span:hover {
    color: var(--secondary-color);
    background: var(--primary-hover-color);
    cursor: pointer;
    z-index: 2;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-color: var(--primary-hover-color);
}

.pagination>li>a,
.pagination>li>span {
    color: var(--primary-color);
    background-color: var(--secondary-color);
    float: left;
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    padding: 0;
    position: relative;
    text-decoration: none;
    border: none;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    font-size: 16px;
    box-shadow: none;
}

.pagination>li+li>a,
.pagination>li+li>span {
    margin: 0 0 0 10px;
}

@media (max-width: 1199px) {
    .pro_pagination {
        padding: 10px 0
    }
}

@media (max-width: 991px) {

    .pro_pagination .text-left,
    .pro_pagination .text-right {
        width: 100%;
        float: unset;
        text-align: center;
        clear: both;
    }

    .pro_pagination .text-right {
        padding-top: 10px;
    }

    .pro_pagination .text-left {
        line-height: 20px;
    }

    .pagination>li>a,
    .pagination>li>span {
        width: 30px;
        height: 30px;
        line-height: 30px;
    }
}

/*----------------------------------------------*/
/* product page */
/*----------------------------------------------*/
.thumbnails {
    overflow: auto;
    clear: both;
    list-style: none;
    padding: 0;
    margin: 0;
}

a.thumbnail {
    padding: 0;
    border: none;
    margin: 0;
}

.main-image-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    margin: 40px 0;
    position: relative;
}

/* Wrapper pentru centrare */
.pro-image-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 40px 0;
    overflow-x: hidden;
    max-width: 100%;
}

/* Imagine principală */
.pro-image {
    position: relative;
    max-width: 100%;
}

.pro-image img {
    width: 100%;
    display: block;
    border-radius: 6px;
    padding: 10px 130px;
}

/* Butoanele romb */
.image-switch {
    position: absolute;
    top: 50%;
    transform: translateY(-50%) rotate(45deg);
    width: 45px;
    height: 45px;
    background: #ffffffa8;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
    transition: background 0.3s ease;
    z-index: 10;
    /* crește dacă nu se vede */
    opacity: 1;
    visibility: visible;
}


.image-switch:hover {
    background: #f0f0f0;
}

.image-switch svg {
    transform: rotate(-45deg);
    width: 30px;
    height: 30px;
    pointer-events: none;
}

.image-switch.left {
    left: 15px;
}

.image-switch.right {
    right: 50px;
}

/* Responsive: mută butoanele în interior dacă ecranul e mic */
@media (max-width: 480px) {
    .image-switch.left {
        left: 10px;
    }

    .image-switch.right {
        right: 10px;
    }

    .image-switch {
        width: 35px;
        height: 35px;
    }

    .image-switch svg {
        width: 16px;
        height: 16px;
    }
}



#product-page .product-additional {
    text-align: center;
    position: relative;
    cursor: pointer;
}

.quickview-container .pro-image,
#product-page .pro-image {
    margin: 0;
}

#quick-carousel .owl-nav div::before,
#quick-carousel .owl-nav div::after {
    display: none;
}

#quick-carousel {
    padding: 0 40px;
    margin-bottom: 20px;
}

#quick-carousel .owl-nav div {
    top: 0;
    bottom: 0;
    margin: auto;
    height: fit-content;
    border: none;
    width: auto;
    background: transparent;
    position: absolute;
}

#quick-carousel.owl-carousel.owl-theme .owl-nav {
    position: unset;
    margin: 0;
}

#quick-carousel .owl-nav div:hover {
    color: var(--primary-hover-color);
}

#quick-carousel .owl-nav .owl-prev {
    left: 30px;
    right: auto;
}

#quick-carousel .owl-nav .owl-next {
    right: 30px;
    left: auto;
}

#quick-carousel.owl-carousel.owl-theme .owl-nav .fa {
    font-size: 20px;
}

.right_info h1,
.quick-product-right h1 {
    text-transform: uppercase;
    margin: 0 0 18px;
    font-weight: 700;
    font-size: 4rem;
    letter-spacing: .12em;
    line-height: 1.16;
    color: #fff;
}

.right-info-inner {
    padding: 7px 0 0;
    text-align: center;
    margin-top: 65px;
}

.rating .product-rating {
    float: left;
    margin-right: 20px;
}

.rating .write-review {
    padding: 0 0 0 15px;
    margin: 0 0 0 15px;
    position: relative;
}

.rating .reviews,
.rating .write-review {
    font-size: 16px;
    color: var(--secondary-light-color);
}

.pro-deatil .rating .write-review:before {
    content: "";
    background: var(--border-color);
    height: 14px;
    width: 1px;
    position: absolute;
    left: 0;
    margin: auto;
    top: 0;
    bottom: 0;
}

.rating .reviews:hover,
.rating .write-review:hover,
.rating .write-review:hover .fa-pencil {
    color: var(--primary-hover-color);
}

.rating .fa-pencil {
    padding-right: 5px;
    color: var(--primary-color);
}

.right_info .disc {
    color: var(--primary-color);
    margin-right: 5px;
    line-height: 27px;
    min-width: 125px;
    font-size: 14px;
    display: inline-block;
}

.right_info .disc1 {
    color: var(--secondary-light-color);
    margin-right: 10px;
    font-size: 14px;
}

.pro_price {
    font-size: 24px;
    display: inline-block;
    font-weight: 700;
    color: var(--primary-color);
}

.pro_oldprice {
    color: var(--secondary-light-color);
    margin-left: 10px;
    font-size: 16px;
}

.right_info .tax {
    margin: 7px 0 5px;
    color: var(--secondary-light-color);
}

.product-options h3 {
    font-size: 18px;
    text-transform: capitalize;
    font-weight: 500;
}

.right_info .control-label {
    font-size: 16px;
    font-weight: 500;
    line-height: 25px;
    text-transform: capitalize;
    margin: 0 20px 0 0;
    display: inline-block;
}

.right_info .checkbox,
.right_info .radio {
    margin-top: 0;
}

.product-options .alert {
    margin-top: 15px;
}

.product-btn-quantity .minus-plus {
    margin: 0 15px 0 0;
    display: inline-flex;
    background: var(--background-color);
    border: none;
    border-radius: 25px;
    -webkit-border-radius: 25px;
    -moz-border-radius: 25px;
}

#product .minus-plus>* {
    text-align: center;
    border: none;
    background: transparent;
    padding: 0 5px;
    border-radius: 0;
    height: 40px;
    width: 40px;
}

#product .minus-plus>button:hover {
    color: var(--primary-hover-color);
}

.product-btn-quantity #input-quantity {
    width: 42px;
    border: none;
    font-size: 23px;
    color: #fff;
}

#product .btn-groups {
    display: inline-block;
    vertical-align: top;
}

#button-cart,
#quick-cart {
    display: flex;
    align-items: center;
    border-radius: 25px;
    -webkit-border-radius: 25px;
    -moz-border-radius: 25px;
    margin: 0 10px 0 0;
}

#product .btn-group button {
    margin: 0 7px 0 0;
}

.pro_wish,
.pro_comper {
    height: 40px;
    width: 40px;
    line-height: 40px;
    text-align: center;
    padding: 0;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    background: var(--background-color);
    border: none;
    display: inline-block;
    color: var(--primary-color);
}

.pro_wish:hover,
.pro_comper:hover {
    color: var(--secondary-color);
    background: var(--primary-hover-color);
}

.pro_wish i,
.pro_comper i {
    font-size: 18px;
    display: block;
}

#product .product-btn-quantity {
    display: flex;
    align-items: center;
    justify-content: center;
}

.tab-content #tab-description {
    font-size: 17px;
    line-height: 1.6;
}

.propage-tab h2 {
    font-size: 18px;
    margin: 25px 0 15px 0;
}

#form-review.form-horizontal .control-label {
    padding: 0;
}

.quickview-wrapper-inner.container {
    width: auto;
}

#button-upload222 {
    margin-left: 10px;
}

.related-products-block {
    clear: both;
    padding-top: 50px;
}

.propage-tab {
    margin-top: 80px;
    background: var(--secondary-color);
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
}

#product-page .nav-tabs {
    display: flex;
    justify-content: center;
    border: none;
    background: var(--primary-hover-color);
    border-radius: 5px 5px 0 0;
    -webkit-border-radius: 5px 5px 0 0;
    -moz-border-radius: 5px 5px 0 0;
}

#product-page .tab-content {
    padding: 30px;
    color: var(--secondary-light-color);
    background: var(--background-color);
    border-radius: 0 0 5px 5px;
}

#product-page .tab-content strong {
    font-weight: 500;
    text-transform: capitalize;
}

#product-page .nav-tabs li {
    margin: 0 25px;
}

#product-page .nav-tabs>li>a {
    padding: 15px 0;
    line-height: 20px;
    font-size: 22px;
    font-weight: 700;
    text-transform: uppercase;
}

.nav-tabs>li>a {
    text-transform: capitalize;
    padding: 12px 25px;
    text-align: center;
    font-size: 18px;
    font-weight: 500;
    border: none;
    margin: 0;
    color: var(--secondary-color);
}

.nav-tabs>li.active>a,
.nav-tabs>li.active>a:focus,
.nav-tabs>li.active>a:hover,
.nav-tabs>li>a:hover,
.nav>li>a:focus,
.nav>li>a:hover {
    background: transparent;
    color: var(--secondary-color);
    border: none;
}

#product-page .nav-tabs>li>a:after {
    content: "";
    height: 2px;
    width: 0;
    background: var(--secondary-color);
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    -webkit-transition: all 0.5s ease 0s;
    -moz-transition: all 0.5s ease 0s;
    -o-transition: all 0.5s ease 0s;
    transition: all 0.5s ease 0s;
}

#product-page .nav-tabs>li>a:hover:after,
#product-page .nav-tabs>li.active>a:after {
    width: 50%;
}

.product-img {
    display: flex;
    top: 10px;
    justify-content: center;
    text-align: center;
}

.main-image-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 20px;
}

.image-switch:hover {
    background-color: #e0e0e0;
}

.hr-line {
    position: relative;
    height: 2px;
    width: 36rem;
    /* sau 100% pentru full width */
    margin: 2rem auto;
    background: linear-gradient(90deg,
            rgba(255, 255, 255, 0) 0%,
            rgba(255, 255, 255, 0.5) 20%,
            #fff 50%,
            rgba(255, 255, 255, 0.5) 80%,
            rgba(255, 255, 255, 0) 100%);
    border-radius: 1px;
}


@media (max-width: 1600px) {

    #additional-carousel .image-additional a,
    #quick-carousel .image-additional a {
        margin: 0 10px;
    }
}

@media (max-width: 1440px) {
    #additional-carousel {
        width: calc(100% - 11%);
    }

    #additional-carousel .owl-nav .owl-next {
        right: -10px;
    }

    #additional-carousel .owl-nav .owl-prev {
        left: -10px;
    }

    .propage-tab {
        margin-top: 50px;
    }
}

@media (max-width: 1199px) {
    #additional-carousel {
        width: calc(100% - 18%);
    }

    .rating .product-rating {
        width: 100%;
        margin: 0 0 20px 0;
    }

    #product .btn-groups {
        margin: 10px 0 0;
        display: block;
    }

    #product .product-btn-quantity {
        display: block;
    }

    .product-btn-quantity .minus-plus {
        margin: 0 0 10px 0;
    }

    #additional-carousel .image-additional a,
    #quick-carousel .image-additional a {
        margin: 0 5px;
    }

    #product-page .tab-content {
        padding: 20px;
    }
}

@media (max-width: 991px) {
    #additional-carousel {
        width: calc(100% - 15%);
    }

    .related-products-block {
        padding-top: 30px;
    }

    .propage-tab {
        margin-top: 20px;
    }

    .right_info h1,
    .quick-product-right h1 {
        font-size: 18px;
        margin: 0 0 8px;
    }

    .rating .product-rating {
        margin: 0 0 10px 0;
    }

    hr {
        margin-top: 10px;
        margin-bottom: 10px;
    }

    .pro_price {
        font-size: 18px;
    }

    #product-page .tab-content {
        padding: 20px;
    }

    #product-page .nav-tabs>li>a {
        font-size: 14px;
        padding: 10px 0;
    }

    #product-page .nav-tabs li {
        margin: 0 15px;
    }

    .pro_wish,
    .pro_comper {
        height: 34px;
        width: 34px;
        line-height: 34px;
    }

    .pro_wish i,
    .pro_comper i {
        font-size: 15px;
    }
}

@media (max-width: 767px) {
    .product-img {
        width: 480px;
        margin: 0 auto;
    }

    #additional-carousel {
        margin-bottom: 15px;
    }
}

@media (max-width: 540px) {
    .product-img {
        width: auto;
    }

    #quick-carousel {
        padding: 0 20px;
    }

    #quick-carousel .owl-nav .owl-prev {
        left: 10px;
    }

    #quick-carousel .owl-nav .owl-next {
        right: 10px;
    }
}

@media only screen and (max-width: 480px) {
    #product-page .nav-tabs>li>a {
        font-size: 12px;
        padding: 8px 0;
    }

    #product-page .nav-tabs li {
        margin: 0 5px;
    }

    #product-page .tab-content {
        padding: 15px;
    }

    .related-products-block {
        padding-top: 20px;
    }
}

/*----------------------------------------------*/
/* Contact Us */
/*----------------------------------------------*/
.information-contact .contact-left .title i.fa {
    background: var(--primary-hover-color);
    border: 2px solid var(--secondary-color);
    border-radius: 50%;
    -moz-border-radius: 50%;
    -webkit-border-radius: 50%;
    color: var(--secondary-color);
    font-size: 16px;
    height: 35px;
    margin: 0px 10px 10px 0;
    padding: 7px;
    text-align: center;
    width: 35px;
}

.information-contact .contact-left .title {
    font-size: 16px;
    color: var(--primary-color);
}

.content-address {
    margin-bottom: 15px;
}

.contact-left .btn-info i {
    font-size: 16px;
}

.content-details {
    padding: 15px;
    border-radius: 5px;
    color: var(--secondary-light-color);
    background: var(--background-color);
}

.contact-left .content-details>div {
    padding-bottom: 15px;
    margin-bottom: 15px;
    border-bottom: 1px dashed var(--border-color);
}

.contact-left .content-details .comment-info {
    border: none;
    padding: 0;
    margin: 0px;
}

#information-contact .panel-body .col-sm-3 {
    float: left;
    width: 100%;
    padding: 15px;
    line-height: 25px;
}

.contact-title {
    margin: 0 0 20px 0;
    font-size: 20px;
}

@media(max-width: 991px) {
    .contact-left {
        margin-bottom: 30px;
    }
}

/*----------------------------------------------*/
/* checkout-cart */
/*----------------------------------------------*/
#accordion .panel-heading h4.panel-title a i.fa-caret-down {
    float: right;
}

#accordion.panel-group .panel {
    border-radius: 5px;
    border: none;
    box-shadow: 0 1px 3px 0px rgba(0, 0, 0, 0.1);
    -moz-box-shadow: 0 1px 3px 0px rgba(0, 0, 0, 0.1);
    -webkit-box-shadow: 0 1px 3px 0px rgba(0, 0, 0, 0.1);
    background: transparent !important;
}

#accordion.panel-group .panel+.panel {
    margin-top: 15px;
}

#accordion.panel-group .panel-default>.panel-heading {
    background: var(--primary-hover-color);
    padding: 14px 15px;
    border: none;
    border-radius: 5px 5px 0 0;
    color: #fff;
}

#accordion h4.panel-title,
#accordion .panel-title a {
    color: var(--secondary-color);
}

.checkout-cart .input-group.btn-block .form-control {
    min-width: 45px;
    text-align: center;
    padding: 6px;
}

.checkout .input-group .form-control {
    z-index: 1;
    background: transparent;
}

.panel-group .panel-heading+.panel-collapse>.list-group,
.panel-group .panel-heading+.panel-collapse>.panel-body {
    border-top: none;
}

@media(max-width: 991px) {
    #accordion.panel-group .panel-default>.panel-heading {
        padding: 10px;
    }
}

/*----------------------------------------------*/
/* other page */
/*----------------------------------------------*/
#button-search {
    margin: 0 0 20px 0;
}

h3.search-criteria {
    font-size: 17px;
}

#product-search #input-search {
    margin-bottom: 10px;
}

.table-bordered {
    border: 1px solid var(--border-color);
}

.table-bordered>tbody>tr>td,
.table-bordered>tbody>tr>th,
.table-bordered>tfoot>tr>td,
.table-bordered>tfoot>tr>th,
.table-bordered>thead>tr>td,
.table-bordered>thead>tr>th {
    border: 1px solid var(--border-color);
}

/* manufacture page */
#product-manufacturer #content p>a {
    color: var(--primary-hover-color);
}

.manufacturer-list {
    margin-bottom: 20px;
    padding: 5px;
    background: var(--background-color);
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
}

.manufacturer-heading {
    background: var(--secondary-color);
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 5px;
    padding: 5px 8px;
    border-radius: 4px;
}

.manufacturer-content {
    padding: 8px;
}

/*account*/
#account-account .account-list-content {
    margin-bottom: 20px;
}

#account-account .account-list-content:last-child {
    margin-bottom: 0;
}

.well {
    padding: 20px;
    border-radius: 5px;
    border: 1px solid var(--border-color);
    box-shadow: none;
    background: var(--secondary-color);
}

.well h2 {
    margin: 0px;
    padding-bottom: 10px;
    font-size: 18px;
    font-weight: 500;
}

.well strong {
    font-weight: 500;
}

.account-list-heading {
    font-size: 18px;
    margin: 0 0 10px;
}

.account-list-content li a {
    color: var(--secondary-light-color);
    padding: 3px 0;
    display: inline-block;
    font-size: 15px;
}

.account-list-content li a:hover {
    color: var(--primary-hover-color);
}

/*sitemap*/
#information-sitemap #content .row li>a {
    padding: 5px 0;
    display: inline-block;
}

/*compare*/
#product-compare .table {
    display: inherit;
    border-style: solid none none none;
    overflow: auto;
}

.product-compare .btn-primary {
    margin: 5px 0 5px;
}

#product-compare .table>tbody+tbody {
    border-top: 1px solid #ddd;
}

/*checkout*/
#checkout-cart .img-thumbnail {
    padding: 0;
    background: transparent;
}

/*about us*/
#information-information #content .about-us {
    padding: 20px 5px;
    background: var(--background-color);
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
}

.about-us img {
    width: 100%;
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
}

.about-us h3 {
    font-size: 20px;
    text-transform: uppercase;
    margin: 0;
    font-weight: 700;
}

.about-us h4 {
    font-size: 16px;
    color: var(--primary-hover-color);
    margin: 15px 0;
    font-weight: 400;
}

.about-us p {
    line-height: 26px;
    color: var(--secondary-light-color);
}

@media (max-width: 767px) {
    .cms-block {
        margin-bottom: 15px;
    }
}

/*----------------------------------------------*/
/* common css */
/*----------------------------------------------*/
.mt-60 {
    margin-top: 60px;
}

.mt-50 {
    margin-top: 50px;
}

.mt-40 {
    margin-top: 40px;
}

.mt-30 {
    margin-top: 30px;
}

.img-thumbnail {
    border: none;
}

#content,
.propage-tab {
    min-height: 600px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: 0;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: inset 0 0 0 1.5px rgba(255, 255, 255, 0.05), 0 10px 30px rgba(0, 0, 0, 0.2);
    padding: 3rem;
    position: relative;
    overflow: hidden;
}

.propage-tab a,
.propage-tab div p {
    background: linear-gradient(91.73deg, #ccc 3.66%, #f3d9a3);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

#content::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    pointer-events: none;
    border: 1px solid rgba(255, 255, 255, 0.5);
    mask-image: linear-gradient(135deg, white, transparent 50%);
}

.common-home #content {
    min-height: unset;
}

#content>h3 {
    margin-top: 0;
    font-size: 18px;
}

.relative {
    position: relative;
}

.m-auto {
    margin: 0px auto;
}

.m-image-auto {
    width: auto !important;
}

ul.list-unstyled {
    margin: 0;
}

.owl-carousel {
    touch-action: manipulation;
}

.dropdown-menu {
    background: var(--secondary-color);
    z-index: 1001;
    margin: 0;
    border-radius: 0;
    border: none;
    box-shadow: 0 0 10px 1px rgba(0, 0, 0, 0.1);
}

.dropdown-menu>li>a:focus,
.dropdown-menu>li>a:hover {
    background-color: transparent;
}

.table>tbody>tr>td,
.table>tbody>tr>th,
.table>tfoot>tr>td,
.table>tfoot>tr>th,
.table>thead>tr>td,
.table>thead>tr>th {
    padding: 10px 15px;
    vertical-align: middle;
    border-color: var(--border-color);
    background: var(--secondary-color);
}

.table-bordered>thead>tr>td,
.table-bordered>thead>tr>th {
    border-bottom-width: 1px;
}

.table>tbody>tr>td {
    border-top: none;
}

.form-group {
    margin-bottom: 20px;
}

.form-control {
    display: block;
    width: 100%;
    height: 40px;
    padding: 6px 15px;
    font-size: 14px;
    line-height: 20px;
    color: var(--secondary-light-color);
    background: var(--background-color);
    background-color: var(--background-color);
    background-image: none;
    border: 1px solid var(--border-color);
    box-shadow: none;
    border-radius: 25px;
    -webkit-border-radius: 25px;
    -moz-border-radius: 25px;
}

/* fixed mobile cart quantity input */
.input-group .form-control[name^=quantity] {
    min-width: 44px;
}

@media (min-width: 1601px) {
    .container {
        width: 1560px;
        margin-top: 140px;
    }
}

@media (max-width: 1600px) and (min-width: 1441px) {
    .container {
        width: 1400px;
    }
}

@media (min-width: 991px) and (max-width: 1600px) {

    .container {
        margin-top: 14rem;
    }
}

@media screen and (max-width: 990px) {
    .container {
        margin-top: 12rem;
    }
}

/* @media (min-width: 1441px) {

    .col-lg-2:nth-child(6n+1),
    .col-lg-3:nth-child(4n+1),
    .col-lg-4:nth-child(3n+1),
    .col-lg-6:nth-child(2n+1) {
        clear: left;
    }
} */

@media (min-width: 1200px) and (max-width: 1440px) {

    .col-lg-2:nth-child(6n+1),
    .col-lg-3:nth-child(3n+1),
    .col-lg-4:nth-child(2n+1),
    .col-lg-6:nth-child(2n+1) {
        clear: left;
    }
}

@media (min-width: 992px) and (max-width: 1199px) {

    .col-md-2:nth-child(6n+1),
    .col-md-3:nth-child(4n+1),
    .col-md-4:nth-child(3n+1),
    .col-md-6:nth-child(2n+1) {
        clear: left;
    }

}

@media (min-width: 541px) and (max-width: 991px) {

    .col-sm-2:nth-child(6n+1),
    .col-sm-3:nth-child(4n+1),
    .col-sm-4:nth-child(3n+1),
    .col-sm-6:nth-child(2n+1) {
        clear: left;
    }

    #logo {
        width: 250px;
        left: 42%;
        top: 22px;
    }
}

@media (max-width: 540px) and (min-width: 320px) {

    .box :not(.owl-carousel) .col-xs-4,
    .product-layout.product-grid {
        width: 50%;
    }

    .col-xs-2:nth-child(6n+1),
    .col-xs-3:nth-child(4n+1),
    .col-xs-4:nth-child(2n+1),
    .col-xs-6:nth-child(2n+1) {
        clear: left;
    }

    #logo {
        left: 42%;
        width: 173px;
        top: 18px;
    }
}

@media (min-width: 541px) and (max-width: 768px) {
    .header-inner {
        height: 71px;
    }

    #logo {
        top: 10px;
    }
}

@media screen and (max-width: 319px) {

    .category-featured :not(.owl-carousel) .category-layout,
    .box :not(.owl-carousel) .col-xs-4,
    .product-layout.product-grid.col-xs-4 {
        width: 100%;
    }
}

@media (max-width: 991px) and (min-width: 600px) {

    /* Mahardhi */
    #content,
    #column-left,
    #column-right {
        width: 100%;
    }
}

@media screen and (max-width: 767px) {

    .table-responsive>.table-bordered>tbody>tr>td:first-child,
    .table-responsive>.table-bordered>tbody>tr>th:first-child,
    .table-responsive>.table-bordered>tfoot>tr>td:first-child,
    .table-responsive>.table-bordered>tfoot>tr>th:first-child,
    .table-responsive>.table-bordered>thead>tr>td:first-child,
    .table-responsive>.table-bordered>thead>tr>th:first-child {
        border-left: 1px solid #ddd;
    }

    .table-responsive>.table-bordered>tbody>tr>td:last-child,
    .table-responsive>.table-bordered>tbody>tr>th:last-child,
    .table-responsive>.table-bordered>tfoot>tr>td:last-child,
    .table-responsive>.table-bordered>tfoot>tr>th:last-child,
    .table-responsive>.table-bordered>thead>tr>td:last-child,
    .table-responsive>.table-bordered>thead>tr>th:last-child {
        border-left: 0;
    }
}

/* mahardhi */
@media (max-width: 1440px) {
    .mt-60 {
        margin-top: 50px;
    }

    .mt-30 {
        margin-top: 20px;
    }
}

@media (max-width: 991px) {
    .mt-60 {
        margin-top: 30px;
    }

    .mt-30 {
        margin-top: 10px;
    }

    .category-row {
        margin: 0 -5px;
    }

    .form-group {
        margin-bottom: 10px;
    }

    .form-control {
        height: 34px;
    }
}

@media (max-width: 767px) {

    #column-left,
    #column-right {
        display: block !important;
    }

    .mt-60 {
        margin-top: 20px;
    }

    .mt-30 {
        margin-top: 0;
    }
}

/* Smoke screen - Into the whild */

* {
    margin: 0;
    padding: 0;
    outline: 0;
}

html {
    width: 100%;
    overflow-x: hidden;
    overflow-y: auto;
    background-color: #000000;
}

body {
    width: 100%;
    overflow-x: hidden;
    overflow-y: auto;
    background: transparent !important;
    /* Body is transparent so canvas is visible */
}

/* ensure the WebGL canvas stays fixed behind all content */
canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    /* let clicks/scroll go through to your page */
    z-index: -1;
}

/* ============================================================
   BANNER SECTION: Glassmorphism Styles for banner1, banner2, banner3
   ------------------------------------------------------------
   - Applies 3D glass-style appearance using blur, gradients, shadows
   - Banner2 (center) is styled as a brighter floating layer
   - Banner1 and Banner3 are slightly darker (background depth)
   - Text and buttons have frosted glass styling and shadows
   - Responsive rule: hides banner1 and banner3 on screens ≤768px
   ============================================================ */

.banner2 {
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    background: linear-gradient(90deg, var(--white200), var(--white50));
    border-radius: 1em;
    box-shadow:
        inset 0 0 0 1px rgba(255, 255, 255, 0.2),
        0 4px 20px rgba(0, 0, 0, 0.15),
        0 0 30px rgba(255, 255, 255, 0.05);
    padding: 1.5em;
    position: relative;
    overflow: hidden;
}

.banner2::before,
.banner2::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    pointer-events: none;
}

.banner2::before {
    content: '';
    position: absolute;
    inset: 0;
    padding: 2px;
    border-radius: inherit;
    background: linear-gradient(90deg,
            /* dark steel edge */
            #7f7f7f 0%,
            /* light-silver flash */
            #dcdcdc 16.5%, #dcdcdc 36.5%,
            /* back to dark steel “valley” */
            #7f7f7f 47%,
            /* light-silver flash */
            #dcdcdc 77.54%,
            /* dark steel edge */
            #7f7f7f 100%);
    -webkit-mask: linear-gradient(#fff 0 0),
        /* border-box */
        linear-gradient(#fff 0 0) content-box;
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
    z-index: 15;
}

.banner1::before,
.banner3::before {
    content: '';
    position: absolute;
    inset: 0;
    padding: 1px;
    border-radius: inherit;
    background: linear-gradient(90deg,
            /* dark steel edge */
            #7f7f7f 0%,
            /* light-silver flash */
            #dcdcdc 16.5%, #dcdcdc 36.5%,
            /* back to dark steel “valley” */
            #7f7f7f 47%,
            /* light-silver flash */
            #dcdcdc 77.54%,
            /* dark steel edge */
            #7f7f7f 100%);
    -webkit-mask: linear-gradient(#fff 0 0),
        /* border-box */
        linear-gradient(#fff 0 0) content-box;
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
    z-index: 15;
}
 

.banner2::after {
    border: 1px solid rgba(255, 255, 255, 0.2);
    mask-image: linear-gradient(135deg, transparent 50%, white);
}

.banner2 .promo-text-box,
.banner2 .promo-text-box * {
    color: rgba(255, 255, 255, 0.85);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.8);
}

.banner2 .btn.button {
    display: inline-block;
    padding: 0.75em 1.5em;
    border-radius: 1.5em;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: rgba(255, 255, 255, 0.85);
    font-weight: 500;
    text-decoration: none;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
}

/* Hover effect */
.banner2 .btn.button:hover {
    background: rgba(255, 255, 255, 0.2);
    color: #ffffff;
    transform: scale(1.05);
}

.banners.banner1,
.banners.banner3 {
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02));
    border-radius: 1em;
    box-shadow:
        inset 0 0 0 1px rgba(255, 255, 255, 0.05),
        0 2px 12px rgba(0, 0, 0, 0.2);
    padding: 1.5em;
    position: relative;
    overflow: hidden;
    filter: brightness(0.95);
}

/* Stronger text shadow inside side banners */
.banners.banner1 .promo-text-box,
.banners.banner3 .promo-text-box,
.banners.banner1 .promo-text-box *,
.banners.banner3 .promo-text-box * {
    color: rgba(255, 255, 255, 0.7);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.6);
    /* Stronger text shadow */
}

/* Shared glass-style button for all banners */
.banners .btn.button {
    display: inline-block;
    padding: 0.75em 1.5em;
    border-radius: 1.5em;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: rgba(255, 255, 255, 0.85);
    font-weight: 500;
    text-decoration: none;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
}

/* Unified hover effect */
.banners .btn.button:hover {
    background: rgba(255, 255, 255, 0.2);
    color: #ffffff;
    transform: scale(1.05);
}



@media (max-width: 768px) {

    .banner1,
    .banner3 {
        display: none !important;
    }

    .html1-inner {
        display: flex;
        flex-wrap: wrap;
    }

    .header-top {
        padding: 0;
        margin-top: 0 !important;
    }

    .icon-sh-user svg {
        width: 30px;
        height: auto;
    }

    .icon-sh-sr svg {
        width: 35px;
        margin-top: 5px;
    }

    .icon-sh-cart svg {
        width: 36px;
        height: auto;
    }

    .header-right {
        gap: 25px;
    }

    #btnMenuToggle {
        position: fixed;
        top: -5px;
        z-index: 99999;
        display: block;
        pointer-events: auto;
    }
}

@media (max-width: 540px) and (min-width: 320px) {
    .icon-sh-sr svg {
        width: 30px;
    }

    .icon-sh-user svg {
        width: 24px;
    }

    .icon-sh-cart svg {
        width: 32px;
    }

    .header-right {
        gap: 13px;
    }

    .header-inner {
        padding: 0 5px !important;
        height: 50px;
    }

    #btnMenuToggle {
        width: 60px !important;
        height: 60px !important;
    }

    #cart-total {
        padding: 0;
        top: 19px;
    }

    .cart-badge {
        min-width: 0 !important;
        font-size: 9px !important;
    }

    #logo {
        top: 6px;
    }
}

@media (max-width: 320px) {
    #logo {
        display: none;
    }
}

/* ==========================================================================

   BASE FOOTER STYLES WITH GLASSMORPHISM

   ========================================================================== */
footer {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #fff;
    padding: 1rem 0;
}

/* Footer Links */
footer a {
    color: #fff;
    text-decoration: none;
}

footer a:hover {
    color: #ddd;
}

/* ==========================================================================
   FOOTER-TOP FLEX LAYOUT
   ========================================================================== */
.footer-top {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    flex-wrap: wrap;
}

.footer-top .col-sm-2,
.footer-top .col-sm-3 {
    float: none;
    width: auto;
    max-width: none;
}

/* Hide unwanted columns */
.footer-top>.col-sm-2:nth-child(4),
.footer-top>.col-sm-3:last-child {
    display: none;
}

/* Column sizing */
.footer-top>.col-sm-3:first-child {
    flex: 2 1 0;
}

.footer-top>.col-sm-2:nth-child(2),
.footer-top>.col-sm-2:nth-child(3) {
    flex: 1 1 0;
}

/* Footer Titles */
.footer-top h5 {
    font-size: 2.7rem;
    line-height: 1.2;
    margin-bottom: .75rem;
    text-transform: uppercase;
    color: #fff;
}

/* Footer Lists */
.footer-top ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-top ul li {
    margin-bottom: .5rem;
    break-inside: avoid;
}

/* Two-column layout for "Informații" */
@media (min-width: 768px) {
    .footer-top>.col-sm-2:nth-child(2) ul {
        column-count: 2;
        column-gap: 1rem;
    }
}


/* ============================================================
   PRODUCT Card: Glassmorphism Styling for Product Cards
   ============================================================ */

.product-thumb {
    box-sizing: border-box;
    width: 100%;
    max-width: 300px;
    border-radius: 5px;
    background: rgba(255, 255, 255, 0.2);
    /* semi-transparent white */
    backdrop-filter: blur(2px);
    /* glass effect */
    -webkit-backdrop-filter: blur(2px);
    /* Safari support */
    /* border: 1px solid rgba(255, 255, 255, 0.2); */
    border-right-color: rgba(255, 255, 255, 0.1);
    border-bottom-color: rgba(255, 255, 255, 0.1);
    box-shadow: 0 20px 30px rgba(0, 0, 0, 0.1);
    padding: 15px;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}


.product-thumb .caption,
.product-thumb .thumb-description,
.product-thumb .caption * {
    color: #fff !important;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.6);
}

.product-thumb .product-title a {
    text-align: center;
    border-bottom: none;
}

.product-thumb {
    padding: 30px 15px;
    /* margin-top: 30px; */
}

.product-thumb::before {
    content: '';
    position: absolute;
    inset: 0;
    padding: 2px;
    /* border thickness */
    border-radius: inherit;
    background: linear-gradient(90deg, #65583c 0%, #dcc081 16.5%, #dcc081 36.5%, #65583c 47%, #dcc081 77.54%, #65583c 100%);

    /* 1️⃣ keep everything …           2️⃣ …then cut the centre out */
    -webkit-mask:
        linear-gradient(#fff 0 0),
        /* border-box */
        linear-gradient(#fff 0 0) content-box;
    /* hole       */
    -webkit-mask-composite: xor;
    /* Safari & Chrome */
    mask-composite: exclude;
    /* Firefox     */

    pointer-events: none;
    z-index: 15;
}

.category-row .hover-img,
.related-carousel .hover-img {
    display: none !important;
}


/* .product-thumb .button-group button {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(3px);
    -webkit-backdrop-filter: blur(3px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff !important;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    transform: rotate(45deg);
} */

/* White icons */
/* .product-thumb .button-group button img {
    width: 2.5rem;
    height: 2.5rem;
    display: inline-block;
} */


/* .product-thumb .button-group button:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.05);
  } */

/* @media (min-width: 768px) {
    .product-thumb .button-group button img,
    .product-thumb .button-group button svg {
        transform: rotate(-45deg);
        
    }
} */

/* @media (min-width: 990px) {
    .product-thumb .button-group button img,
    .product-thumb .button-group button svg {
        width: 3rem;
        height: 3rem;
    }
} */




/* ===================================================================
   Glassmorphism Panel: one solid piece of 3D glass for account-content
   =================================================================== */
.account-content .box-content {
    /* 1) Frosted glass background */
    background: rgba(255, 255, 255, 0.1);
    /* semi-transparent white */
    backdrop-filter: blur(12px);
    /* blur everything behind */
    -webkit-backdrop-filter: blur(12px);
    /* Safari support */

    /* 2) Shape & depth */
    border-radius: 1rem;
    /* rounded corners */
    border: 2px solid rgba(255, 255, 255, 0.2);
    /* subtle glass rim */
    box-shadow:
        inset 0 0 0 1.5px rgba(255, 255, 255, 0.05),
        /* inner highlight */
        0 10px 30px rgba(0, 0, 0, 0.2);
    /* outer shadow for lift */

    /* 3) Layout */
    padding: 2rem;
    /* space for your content */
    position: relative;
    overflow: hidden;
    /* contain the pseudo-elements */
    margin-top: 3rem;
}

/* 4) Light-catching edge highlight */
.account-content .box-content::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    pointer-events: none;
    border: 1px solid rgba(255, 255, 255, 0.5);
    mask-image: linear-gradient(135deg, white, transparent 50%);
}

/* Apply line */
.account-content .toggled.active {
    position: relative;
    display: inline-block;
    margin-bottom: 1.5rem;
    color: #fff;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.4);
}

.account-content .toggled.active::after {
    content: "";
    position: absolute;
    bottom: -0.5rem;
    left: 50%;
    transform: translateX(-50%);
    width: 20rem;
    height: 2px;
    background: linear-gradient(90deg,
            rgba(255, 255, 255, 0) 0%,
            rgba(255, 255, 255, 0.5) 20%,
            #fff 50%,
            rgba(255, 255, 255, 0.5) 80%,
            rgba(255, 255, 255, 0) 100%);
    border-radius: 1px;
}

/* Only apply the “toggled” styles on screens wider than 990px */
@media (min-width: 990px) {
    .account-content .toggled {
        position: relative;
        display: inline-block;
        margin-bottom: 1.5rem;
        color: #fff;
        text-shadow: 0 1px 2px rgba(0, 0, 0, 0.4);
    }

    .account-content .toggled::after {
        content: "";
        position: absolute;
        bottom: -0.5rem;
        left: 50%;
        transform: translateX(-50%);
        width: 20rem;
        height: 2px;
        background: linear-gradient(90deg,
                rgba(255, 255, 255, 0) 0%,
                rgba(255, 255, 255, 0.5) 20%,
                #fff 50%,
                rgba(255, 255, 255, 0.5) 80%,
                rgba(255, 255, 255, 0) 100%);
        border-radius: 1px;
    }
}


.account-content .list-group-item {
    width: 100%;
    /* span the entire container */
    box-sizing: border-box;
    /* include padding in that width */
    padding: 0.75rem 1rem;
    border-radius: 0.5rem;
    /* soften the edges */
    transition: background 0.3s, box-shadow 0.3s;
}

.account-content .list-group-item:hover {
    text-shadow:
        0 0 4px rgba(255, 255, 255, 0.6),
        /* tight glow */
        0 0 8px rgba(255, 255, 255, 0.4);
    /* softer, wider halo */
    transition: text-shadow 0.3s, color 0.3s;
}

/* ------------------ Information / Account Pages ------------------ */

#content {
    /* 1) Frosted glass background */
    background: rgba(255, 255, 255, 0.1);
    /* translucent base */
    backdrop-filter: blur(12px);
    /* blur everything behind */
    -webkit-backdrop-filter: blur(12px);
    /* Safari support */

    /* 2) Shape & depth */
    border-radius: 1rem;
    /* rounded corners */
    border: 2px solid rgba(255, 255, 255, 0.2);
    /* subtle glass rim */
    box-shadow:
        inset 0 0 0 1.5px rgba(255, 255, 255, 0.05),
        /* inner highlight */
        0 10px 30px rgba(0, 0, 0, 0.2);
    /* outer shadow for lift */

    /* 3) Layout */
    padding: 3rem;
    position: relative;
    overflow: hidden;
    margin-top: 3rem;
}

/* 4) Light‐catching edge highlight */
#content::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    pointer-events: none;
    border: 1px solid rgba(255, 255, 255, 0.5);
    mask-image: linear-gradient(135deg, white, transparent 50%);
}

#content legend {
    color: #fff;
}

/* Disable the white hover background on all table rows */
.table>tbody>tr:hover,
tbody tr:hover {
    background-color: transparent !important;
}

/* Collapse borders so horizontals remain single lines */
table {
    border: none !important;
}

/* Remove any cell borders on the left & right (vertical lines) */
table th,
table td {
    border-left: none !important;
    border-right: none !important;
}

/* ------------------------------------------------------------------
   Glass‐on‐glass: transparent inner, frosted edge around element
------------------------------------------------------------------ */
#content .well {
    /* 1) Fully transparent interior */
    background: transparent;
    /* no frost/blur here—let the parent’s glass show through */

    /* 2) Frosted edge only */
    border-radius: 0.75rem;
    border: 2px solid rgba(255, 255, 255, 0.35);
    /* thick semi‐white rim */
    box-shadow:
        inset 0 0 0 1px rgba(255, 255, 255, 0.1),
        /* tiny inner highlight */
        0 6px 18px rgba(0, 0, 0, 0.12);
    /* subtle outer lift */

    /* 3) Layout */
    padding: 1.5rem;
    margin-bottom: 2rem;
    position: relative;
    /* for any pseudo‐elements */
}

/* ------------------------------------------------------------------
   2) Frosted “glass” inputs inside each element
------------------------------------------------------------------ */
#content .form-control {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    /* border-radius: 1rem; */
    /* border: 1px solid rgba(255, 255, 255, 0.25); */
    box-shadow: inset 0 0 4px rgba(255, 255, 255, 0.2);
    color: #fff;
    /* padding: 1rem 1rem; */
    transition: background 0.3s, box-shadow 0.3s;
    border-radius: 1rem !important;
}

#content .well .form-control:focus {
    background: rgba(255, 255, 255, 0.12);
    box-shadow:
        inset 0 0 6px rgba(255, 255, 255, 0.3),
        0 0 4px rgba(255, 255, 255, 0.2);
    outline: none;
}

/* Placeholder styling */
#content .well .form-control::placeholder {
    color: rgba(255, 255, 255, 0.6);
    opacity: 1;
}

/* ------------------------------------------------------------------
   3) Frosted “glass” buttons for all buttons
------------------------------------------------------------------ */

.btn-primary {
    background: rgba(255, 255, 255, 0.1) !important;
    backdrop-filter: blur(6px) !important;
    -webkit-backdrop-filter: blur(6px) !important;
    /* border: 1px solid rgba(255, 255, 255, 0.3); */
    color: rgba(255, 255, 255, 0.85);
    font-weight: 500;
    text-decoration: none;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
    border-radius: 1rem;
}

.btn-primary:hover {
    background: rgba(255, 255, 255, 0.2);
    color: #ffffff;
    transform: scale(1.05);
}

a.btn {
    display: inline-block;
    /* keep Bootstrap’s layout */
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: rgba(255, 255, 255, 0.85) !important;
    /* override Bootstrap’s color */
    font-weight: 500;
    text-decoration: none !important;
    /* remove underline */
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
    margin-top: 10px;
    margin-bottom: 10px;
    border-radius: 1rem;
}

/* Hover state */
a.btn:hover {
    background: rgba(255, 255, 255, 0.2);
    color: #ffffff !important;
    transform: scale(1.05);
}

/* ─────────────────────────────────────────────────────────────────
   0) REMOVE COLOR VARIABLES FOR TRANSPARENCY 
───────────────────────────────────────────────────────────────── */
:root {
    --background-color: none;
    --border-color: rgba(255, 255, 255, 0.1);
    --primary-hover-color: none;
    --secondary-color: none;
    --primary-color: #fff;
}


/*----------------------------------------------*/

/* Product list page – strip the frosted-glass panel */
#product-category #content {
    background: none;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;

    border: 0;
    border-radius: 0;
    box-shadow: none;

    padding: 0;
    margin-top: 0;

}

#product-category #content::before {
    content: none;
    display: none;
}



/* ==========================================================================
   FOOTER CLEANUP 
   ========================================================================== */


/* 1. Make the <i> a frosted-glass rhomboid */
.social-media i.fa {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    margin: 0 0.5rem;

    /* glass-morphism */
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.3);

    /* rotate into a rhombus */
    transform: rotate(45deg);
    transition: background 0.3s, border-color 0.3s;
}

/* 2. Counter-rotate the actual icon glyph so it stays upright */
/* Font Awesome icons often render via ::before pseudo-element */
.social-media i.fa::before {
    display: inline-block;
    transform: rotate(-45deg);
}

/* 3. Hover effect */
.social-media i.fa:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.5);
}

/* Enlarge all <p> inside the social-payment-footer */
.social-payment-footer p {
    font-size: 1.7rem !important;
    margin-bottom: 1.25rem !important;
    margin-top: 1.75rem !important;
    line-height: 1.4;
}

.social-media {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    gap: 20px;
    align-items: center;
}

.social-payment-footer {
    display: flex;
    flex-direction: column;
    align-items: center;
}

p.powered {
    text-align: center;
    margin-top: 1rem;
}

/* 1. Make the <h5> a positioning context */
.footer-content h5.toggled {
    position: relative;
    margin-bottom: 0.75rem;
    /* space for the line */
}

/* 2. Draw the gradient line under the <h5> */
.footer-content h5.toggled::after {
    content: "";
    display: block;
    width: 150%;
    height: 2px;
    margin-top: 0.5rem;
    /* gap between text and line */

    /* the “light-catching” look */
    background: rgba(255, 255, 255, 0.5);
    mask-image: linear-gradient(60deg, white, transparent 50%);
    -webkit-mask-image: linear-gradient(60deg, white, transparent 50%);

    pointer-events: none;
}




/* ==========================================================================
   FOOTER-BOTTOM: Social Icons + Payment Badges
   ========================================================================== */
.footer-bottom .social-media a {
    display: inline-block;
    width: 30px;
    height: 30px;
    margin-right: 0.5rem;
    line-height: 30px;
    text-align: center;
    /* background: rgba(255, 255, 255, 0.1); */
    border-radius: 50%;
    transition: background 0.2s;
}

.footer-bottom .social-media a:last-child {
    margin-right: 0;
}

/* .footer-bottom .social-media a:hover {
    background: rgba(255, 255, 255, 0.2);
} */

.footer-bottom .social-media a i {
    font-size: 1rem;
    color: #fff !important;
}

/* Payment badge */
.footer-bottom .social-payment-footer>div[style] img[title="NETOPIA Payments"] {
    width: auto !important;
    height: auto !important;
}



@media screen and (min-width: 990px) {
    .social-payment-footer {
        flex-direction: row;
        gap: 4rem;
        justify-content: center;
        align-items: flex-start;
    }

    .position-footer-left {
        /* translucent frosted glass */
        background: rgba(255, 255, 255, 0.1);
        backdrop-filter: blur(12px);
        -webkit-backdrop-filter: blur(12px);
        padding: 40px 0px;
        text-align: left;
        padding-left: 40px;
        /* shape & depth */
        border-radius: 1rem;
        border: 1px solid rgba(255, 255, 255, 0.2);
        box-shadow:
            inset 0 0 0 1px rgba(255, 255, 255, 0.05),
            0 8px 24px rgba(0, 0, 0, 0.2);
    }

}

/* ==========================================================================
   Blog Page
   ========================================================================== */

.thumbnail {
    background-color: transparent !important;
}

.blog_title {
    font-size: 2.5rem;
    text-align: center;
    line-height: 1.4;
    margin-bottom: 20px;
}


.article_content {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    /* Safari support */

    border-radius: 1rem !important;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow:
        inset 0 0 0 1px rgba(255, 255, 255, 0.05),
        0 8px 24px rgba(0, 0, 0, 0.2);

    padding: 20px;
}

/* 1) On mobile, stack them full-width */
.category-row {
    display: block;
}

.category-row .blog-category {
    width: 100% !important;
    max-width: 100% !important;
}

/* 2) From tablet size and up, use a 3-up flex grid */
@media (min-width: 768px) {
    .category-row {
        display: flex;
        flex-wrap: wrap;
        margin-left: -15px;
        /* gutter adjustment */
        margin-right: -15px;
    }

    .category-row .blog-category {
        flex: 0 0 33.3333% !important;
        max-width: 33.3333% !important;
        padding-left: 15px;
        /* gutter */
        padding-right: 15px;
        box-sizing: border-box;
    }
}

/* ==========================================================================
   Back to top
   ========================================================================== */


/* Back to top button */
.back-to-top,
.scrollToTop {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.2);
    transform: rotate(45deg);
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.scrollToTop svg {
    transform: rotate(-45deg);
    width: 60%;
    height: 60%;
}

/* Counter-rotate the icon so it stays upright */
.back-to-top i,
.scrollToTop i {
    transform: rotate(-45deg);
    color: #fff;
    font-size: 16px;
}

/* ==========================================================================
   Banner Eement
   ========================================================================== */


.fire-block {
    width: 100%;
    margin: 0;
    padding: 0;
    max-width: none;
}

.fire-block,
.fire-block a,
.fire-block video {
    display: block;
    margin: 0;
    padding: 0;
}

body.common-home .mt-60 {
    margin-top: 0 !important;
}

/*----------------------------------------------*/
.image-additional {
    border: 2px solid transparent;
    transition: border 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
    border-radius: 8px;
    width: 100%;
    max-width: 200px;
    height: auto;
    display: inline-block;
    text-align: center;
}

.image-additional.active-thumb {
    border-radius: 8px;
    z-index: 2;
}

.image-additional.active-thumb::before {
    content: '';
    position: absolute;
    inset: 0;
    padding: 2px;
    border-radius: inherit;
    background: linear-gradient(90deg,
            #65583c 0%, #dcc081 16.5%, #dcc081 36.5%, #65583c 47%, #dcc081 77.54%, #65583c 100%);
    -webkit-mask: linear-gradient(#fff 0 0), linear-gradient(#fff 0 0) content-box;
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
    z-index: 3;
    transition: opacity 0.3s ease;
}

.image-additional img {
    display: block;
    width: 100%;
    height: auto;
    object-fit: cover;
    aspect-ratio: 1 / 1;
    /* asigură format pătrat */
    border-radius: 8px;
    transition: all 0.3s ease;
}

#additional-carousel .owl-item {
    display: flex;
    justify-content: center;
}

.image-additional {
    cursor: pointer;
    border: 2px solid transparent;
    transition: border 0.3s ease;
    padding: 13px;
}

#additional-carousel {
    margin-top: 20px;
    justify-content: center;
}

.swiper.additional-swiper {
    display: flex;
    justify-content: center;
}

.swiper.additional-swiper .swiper-wrapper {
    display: flex;
    justify-content: center;
}

/* Dimensiuni corecte și aliniere pe mobil */
@media (max-width: 768px) {
    .swiper.additional-swiper {
        justify-content: center;
    }

    .swiper.additional-swiper .swiper-wrapper {
        justify-content: center;
    }

    .image-additional {
        max-width: 120px;
        padding: 8px;
    }

    .image-additional img {
        width: 100%;
        height: auto;
        aspect-ratio: 1 / 1;
        object-fit: cover;
        border-radius: 8px;
    }

    .swiper.additional-swiper {
        overflow: hidden;
    }

    .pro-image img {
        padding: 0 !important;
    }

}

.footer-top .toggle-open {
    transition: transform 0.3s ease;
    display: inline-block;
    margin-left: 10px;
}

.footer-top h5.active .toggle-open {
    transform: rotate(180deg);
}
.list-group-item{
    background-color: transparent !important;
}

