.card {
    border: 2px solid #f0f0f0;
    border-radius: 2px;
}

.account-nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.account-nav__item a {
    display: block;
    color: #6c757d;
    font-size: 15px;
}

.account-nav__item a:hover {
    background-color: #f7f7f7;
}

@media (min-width: 992px) {
    .account-nav {
        border: 2px solid #f0f0f0;
        border-radius: 2px;
    }

    .account-nav ul {
        padding-bottom: 18px;
    }

    .account-nav__title {
        font-size: 20px;
        padding: 24px 26px 0;
        margin-bottom: 1rem;
    }

    .account-nav__item a {
        padding: 5px 26px;
        margin-left: -2px;
        border-left: 2px solid #f0f0f0;
    }

    .account-nav__item--active a {
        color: #3d464d;
        font-weight: 500;
        border-left: 2px solid #ffd333;
    }
}

@media (max-width: 991px) {
    .account-nav__title {
        display: none;
    }

    .account-nav {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }

    .account-nav ul {
        display: -ms-flexbox;
        display: flex;
        -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
        white-space: nowrap;
        width: 100%;
        border-bottom: 2px solid #f0f0f0;
    }

    .account-nav__item a {
        padding: 8px 16px;
        margin-bottom: -2px;
        border-bottom: 2px solid #f0f0f0;
    }

    .account-nav__item--active a {
        color: #3d464d;
        font-weight: 500;
        border-color: #ffd333;
    }
}

.profile-card__body {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.profile-card__avatar {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    margin-bottom: 16px;
}

.profile-card__avatar img {
    border-radius: 50%;
    max-width: 100%;
}

.profile-card__name {
    font-weight: 500;
    line-height: 20px;
}

.profile-card__email {
    font-size: 15px;
    margin-bottom: 24px;
}


.dashboard {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.dashboard__orders {
    margin-top: 24px;
    width: 100%;
}

@media (min-width: 768px) {
    .dashboard__address,
    .dashboard__profile {
        width: calc(50% - 12px);
    }
}

@media (max-width: 767px) {
    .dashboard__address,
    .dashboard__profile {
        width: 100%;
    }

    .dashboard__address {
        margin-top: 24px;
    }
}

.address-card {
    position: relative;
}

.address-card__badge {
    position: absolute;
    background-color: #ffd333;
    color: #3d464d;
    font-size: 11px;
    font-weight: 500;
    text-transform: uppercase;
    padding: 4px 8px 2px;
    top: -2px;
    right: 0.75rem;
    border-bottom-left-radius: 2px;
    border-bottom-right-radius: 2px;
}

.address-card__badge--muted {
    background-color: #f0f0f0;
    color: #3d464d;
}

.address-card__body {
    padding: 1.5rem;
    font-size: 15px;
    line-height: 18px;
}

.address-card__name {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 1.125rem;
}

.address-card__row + .address-card__row {
    margin-top: 0.75rem;
}

.address-card__row-title {
    font-size: 12px;
    color: #999;
}

.address-card__footer {
    margin-top: 1.625rem;
}

.address-card--featured .address-card__body {
    padding: 2rem;
}

.address-card--featured .address-card__name {
    font-weight: 700;
}

@media (min-width: 768px) and (max-width: 991px) {
    .address-card--featured .address-card__body {
        padding: 1.5rem;
    }
}

@media (max-width: 767px) {
    .address-card--featured .address-card__body {
        padding: 1.375rem;
    }
}

.addresses-list {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.addresses-list__item {
    -ms-flex-preferred-size: 0;
    flex-basis: 0;
    -ms-flex-positive: 1;
    flex-grow: 1;
}

.addresses-list__item--new {
    border-radius: 2px;
    border: 2px dashed #ebebeb;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 2rem;
}

.addresses-list__divider:last-child {
    display: none;
}

.addresses-list__plus {
    width: 60px;
    height: 60px;
    border: 2px dashed #ebebeb;
    position: relative;
    border-radius: 30px;
    margin-bottom: 24px;
    transition: border-color 0.2s;
}

.addresses-list__plus:after,
.addresses-list__plus:before {
    content: "";
    position: absolute;
    width: 32px;
    height: 4px;
    background-color: #e5e5e5;
    border-radius: 1.5px;
    top: calc(50% - 2px);
    transition: background-color 0.2s;
    left: calc(50% - 16px);
}

.addresses-list__plus:after {
    transform: rotate(90deg);
}

.addresses-list__item--new:hover .addresses-list__plus {
    border-color: #e0e0e0;
}

.addresses-list__item--new:hover .addresses-list__plus:after,
.addresses-list__item--new:hover .addresses-list__plus:before {
    background-color: #dbdbdb;
}

@media (min-width: 1200px) {
    .addresses-list__item {
        max-width: calc((100% - 32px) / 3);
    }

    .addresses-list__divider:nth-child(2n) {
        width: 16px;
    }

    .addresses-list__divider:nth-child(6n) {
        width: 100%;
        height: 16px;
    }
}

@media (min-width: 768px) and (max-width: 1199px) {
    .addresses-list__item {
        max-width: calc((100% - 24px) / 3);
    }

    .addresses-list__divider:nth-child(2n) {
        width: 12px;
    }

    .addresses-list__divider:nth-child(6n) {
        width: 100%;
        height: 12px;
    }
}

@media (min-width: 480px) and (max-width: 767px) {
    .addresses-list__item {
        max-width: calc((100% - 12px) / 2);
    }

    .addresses-list__divider:nth-child(2n) {
        width: 12px;
    }

    .addresses-list__divider:nth-child(4n) {
        width: 100%;
        height: 12px;
    }
}

@media (max-width: 479px) {
    .addresses-list__item {
        max-width: calc((100% - 0px) / 1);
    }

    .addresses-list__divider:nth-child(2n) {
        width: 12px;
        width: 100%;
        height: 12px;
    }
}


/*thead tr {*/
/*    background: var(--primary);*/
/*}*/

thead tr th {
    font-size: 17px;
    font-weight: 500;
    white-space: nowrap;
    text-align: center;
    text-transform: capitalize;
    padding: 12px 20px;
    border-style: ridge;
    border-right: 1px solid var(--border);
}

/*thead tr th:first-child {*/
/*  border-radius: 6px 0px 0px 6px;*/
/*}*/

/*thead tr th:last-child {*/
/*  border-right: none;*/
/*  border-radius: 0px 6px 6px 0px;*/
/*}*/

/*tbody tr {*/
/*  border-bottom: 1px solid var(--border);*/
/*}*/

/*tbody tr td {*/
/*  padding: 12px 20px;*/
/*  text-align: center;*/
/*  border-right: 1px solid var(--border);*/
/*}*/

/*tbody tr td:last-child {*/
/*  border-right: none;*/
/*}*/
.img-upload-section .row > * {
    --bs-gutter-y: 5rem;
}

.img-upload-section .logo-wrapper label {
    background: var(--primary);
    border-radius: 50%;
    cursor: pointer;
}

.img-upload-section .logo-wrapper input {
    opacity: 0;
    display: none;
}

.img-upload-section .logo-wrapper .input-item {
    position: absolute;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 0px;
    width: 3.2rem;
    height: 3.2rem;
}

.img-upload-section .logo-wrapper .logo-upload {
    display: flex;
    flex-direction: row;
    align-items: baseline;
    gap: 0px;
    position: relative;
}

.img-upload-section .logo-wrapper .logo-upload .upload-img {
    max-width: 170px;
    max-height: 170px;
    border-radius: 50%;
    object-fit: cover;
    border: 1px solid var(--primary);
}

.img-upload-section .logo-wrapper .logo-upload .upload-input {
    top: 95%;
    right: 35%;
    transform: translate(-70%, -30%);
}

.img-upload-section .logo-wrapper .cover-upload .cover-img {
    margin-top: 2rem;
    width: 100%;
    height: 15rem;
    border-radius: 0.5rem;
    border: 1px solid #AE1C9A;
}

.img-upload-section .logo-wrapper .cover-upload .cover-input {
    top: 15rem;
    right: 4rem;
}

.upload-input {
    transform: translate(-5rem, 7rem);
}

.order-list a {
    color: inherit;
}

.order-list a:hover {
    color: inherit;
    text-decoration: underline;
}

.order-list table {
    width: 100%;
    font-size: 15px;
}

.order-list__header td,
.order-list__header th {
    text-transform: uppercase;
    color: #6c757d;
    font-size: 13px;
    font-weight: 500;
}

.order-list__footer {
    font-size: 20px;
}

.order-list__footer th {
    font-weight: 500;
}

.order-list__column-image {
    width: 1px;
}

.order-list__column-image .product-image {
    width: 40px;
}

.order-list__column-product {
    line-height: 1.25;
}

.order-list__column-quantity {
    text-align: center;
}

.order-list__column-total {
    text-align: right;
}

.order-list__options {
    color: #6c757d;
    font-size: 13px;
    margin-top: 2px;
}

.order-list__options-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.order-list__options-item:not(:last-child) {
    position: relative;
    padding-right: 19px;
}

.order-list__options-item:not(:last-child):after {
    position: absolute;
    content: "";
    display: block;
    background: #ccc;
    width: 1px;
    height: 10px;
    top: calc(50% - 5px);
    transform: skewX(-20deg);
    right: 9px;
}

@media (min-width: 576px) {
    .order-list td,
    .order-list th {
        padding: 4px 12px;
    }

    .order-list td:first-child,
    .order-list th:first-child {
        padding-left: 1.5rem;
    }

    .order-list td:last-child,
    .order-list th:last-child {
        padding-right: 1.5rem;
    }

    .order-list__header td,
    .order-list__header th {
        border-bottom: 2px solid #f0f0f0;
        padding: 10px 12px;
    }

    .order-list__products td,
    .order-list__products th {
        padding-top: 5px;
        padding-bottom: 5px;
    }

    .order-list__products tr:first-child td,
    .order-list__products tr:first-child th {
        padding-top: 14px;
    }

    .order-list__products tr:last-child td,
    .order-list__products tr:last-child th {
        padding-bottom: 14px;
    }

    .order-list__products .order-list__column-product {
        padding-left: 4px;
    }

    .order-list__subtotals td,
    .order-list__subtotals th {
        padding-top: 3px;
        padding-bottom: 3px;
    }

    .order-list__subtotals tr:first-child td,
    .order-list__subtotals tr:first-child th {
        padding-top: 12px;
        border-top: 1px solid #f0f0f0;
    }

    .order-list__subtotals tr:last-child td,
    .order-list__subtotals tr:last-child th {
        padding-bottom: 12px;
    }

    .order-list__footer td,
    .order-list__footer th {
        padding-top: 14px;
        padding-bottom: 14px;
        border-top: 1px solid #f0f0f0;
    }
}

@media (max-width: 575px) {
    .order-list table,
    .order-list td,
    .order-list th,
    .order-list tr {
        display: block;
        padding: 0;
    }

    .order-list__footer,
    .order-list__header,
    .order-list__products,
    .order-list__subtotals {
        display: block;
    }

    .order-list__footer tr,
    .order-list__header tr,
    .order-list__products tr,
    .order-list__subtotals tr {
        padding: 0 1rem;
    }

    .order-list__footer tr,
    .order-list__header tr,
    .order-list__subtotals tr {
        display: -ms-flexbox;
        display: flex;
    }

    .order-list__footer .order-list__column-label,
    .order-list__header .order-list__column-label,
    .order-list__subtotals .order-list__column-label {
        -ms-flex-positive: 1;
        flex-grow: 1;
    }

    .order-list__footer .order-list__column-quantity,
    .order-list__header .order-list__column-quantity,
    .order-list__subtotals .order-list__column-quantity {
        display: none;
    }

    .order-list__header tr {
        padding-top: 10px;
        padding-bottom: 10px;
        border-bottom: 2px solid #f0f0f0;
    }

    .order-list__products tr {
        padding-top: 0.75rem;
        padding-bottom: 0.75rem;
        display: -ms-flexbox;
        display: flex;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }

    .order-list__products tr:not(:first-child) {
        border-top: 1px solid #f0f0f0;
    }

    .order-list__products .order-list__column-image {
        width: 40px;
        -ms-flex-negative: 0;
        flex-shrink: 0;
    }

    .order-list__products .order-list__column-product {
        display: -ms-flexbox;
        display: flex;
        -ms-flex-direction: column;
        flex-direction: column;
        -ms-flex-pack: center;
        justify-content: center;
        width: calc(100% - 40px);
        padding-left: 1rem;
    }

    .order-list__products .order-list__column-quantity:before {
        content: attr(data-title) " ";
    }

    .order-list__products .order-list__column-total {
        -ms-flex-positive: 1;
        flex-grow: 1;
    }

    .order-list__products .order-list__column-quantity,
    .order-list__products .order-list__column-total {
        margin-top: 0.625rem;
        margin-bottom: -0.125rem;
    }

    .order-list__subtotals {
        padding-top: 12px;
        padding-bottom: 12px;
        border-top: 1px solid #f0f0f0;
    }

    .order-list__subtotals td,
    .order-list__subtotals th {
        padding-top: 2px;
        padding-bottom: 2px;
    }

    .order-list__footer {
        padding-top: 12px;
        padding-bottom: 12px;
        border-top: 1px solid #f0f0f0;
    }
}

.order-success__body {
    max-width: 690px;
    margin: 0 auto;
}

.order-success__header {
    padding: 60px 0 52px;
    text-align: center;
}

.order-success__icon {
    fill: #ffd333;
    margin: 0 auto;
    display: block;
}

.order-success__title {
    margin-top: 24px;
    margin-bottom: 2px;
}

.order-success__subtitle {
    font-size: 19px;
    font-weight: 500;
}

.order-success__actions {
    margin-top: 20px;
}

.order-success__meta {
    margin-bottom: 28px;
    text-align: center;
}

.order-success__meta-list {
    list-style: none;
    padding: 0;
    margin: 0;
    -ms-flex-pack: center;
}

.order-success__meta-item,
.order-success__meta-list {
    display: -ms-flexbox;
    display: flex;
    justify-content: center;
}

.order-success__meta-item {
    -ms-flex-preferred-size: 25%;
    flex-basis: 25%;
    line-height: 1.25;
    position: relative;
    padding: 2px 12px;
    -ms-flex-direction: column;
    flex-direction: column;
    -ms-flex-pack: center;
}

.order-success__meta-item:not(:last-child):before {
    position: absolute;
    display: block;
    content: "";
    border-left: 2px dashed #ebebeb;
    width: 0;
    height: 100%;
    top: 0;
    right: -1px;
}

.order-success__meta-title {
    display: block;
    font-size: 13px;
    color: #6c757d;
    margin-bottom: 4px;
}

.order-success__meta-value {
    display: block;
    font-size: 14px;
    line-height: 16px;
    font-weight: 500;
}


@media (max-width: 991px) {
    .block-sidebar--offcanvas--mobile {
        visibility: hidden;
        position: fixed;
        top: 0;
        width: 100%;
        height: 100%;
        z-index: 1000;
        transition: visibility 0s 0.3s;
        left: 0;
    }

    .block-sidebar--offcanvas--mobile .block-sidebar__backdrop {
        position: absolute;
        top: 0;
        width: 100%;
        height: 100%;
        background: #3d464d;
        opacity: 0;
        transition: opacity 0.3s;
        left: 0;
    }

    .block-sidebar--offcanvas--mobile .block-sidebar__body {
        position: absolute;
        top: 0;
        width: 290px;
        height: 100%;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
        background: #fff;
        transition: transform 0.3s;
        display: -ms-flexbox;
        display: flex;
        -ms-flex-direction: column;
        flex-direction: column;
        left: 0;
        transform: translateX(-100%) translateX(-30px);
    }

    .block-sidebar--offcanvas--mobile .block-sidebar__header {
        display: -ms-flexbox;
        display: flex;
    }

    .block-sidebar--offcanvas--mobile.block-sidebar--open {
        visibility: visible;
        transition-delay: 0s;
    }

    .block-sidebar--offcanvas--mobile.block-sidebar--open .block-sidebar__backdrop {
        opacity: 0.9;
    }

    .block-sidebar--offcanvas--mobile.block-sidebar--open .block-sidebar__body {
        transform: translateX(0);
    }
}

.block-sidebar__header {
    height: 55px;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    -ms-flex-align: center;
    align-items: center;
    border-bottom: 1px solid #ebebeb;
    display: none;
}

.block-sidebar__title {
    padding: 0 20px;
    font-weight: 700;
    -ms-flex-positive: 1;
    flex-grow: 1;
}

.block-sidebar__close {
    border: none;
    background: transparent;
    height: 54px;
    width: 55px;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-pack: center;
    justify-content: center;
    cursor: pointer;
    fill: #999;
    transition: fill 0.2s;
    border-left: 1px solid #ebebeb;
}

.block-sidebar__close:focus {
    outline: none;
}

.block-sidebar__close:focus,
.block-sidebar__close:hover {
    fill: #3d464d;
}

.block-sidebar__item + .block-sidebar__item {
    margin-top: 30px;
}


.widget-filters {
    border: 2px solid #f0f0f0;
    border-radius: 2px;
    padding: 20px;
}

.widget-filters__item {
    /*padding: 8px 20px;*/
    /*margin: 0 -20px;*/
    border-bottom: 2px solid #f0f0f0;
}

.widget-filters__item:first-child {
    border-top: 2px solid #f0f0f0;
}

.widget-filters__actions {
    padding-top: 24px;
    padding-bottom: 16px;
}

.widget-filters__actions > .btn + .btn {
    margin-left: 8px;
}

.widget-filters--offcanvas--always {
    border: none;
    padding-top: 0;
}

.widget-filters--offcanvas--always .widget-filters__title {
    display: none;
}

.widget-filters--offcanvas--always .widget-filters__item:first-child {
    border-top: none;
}

.widget-filters--offcanvas--always .widget-filters__item {
    border-width: 1px;
}

@media (max-width: 991px) {
    .widget-filters--offcanvas--mobile {
        border: none;
        padding-top: 0;
    }

    .widget-filters--offcanvas--mobile .widget-filters__title {
        display: none;
    }

    .widget-filters--offcanvas--mobile .widget-filters__item:first-child {
        border-top: none;
    }

    .widget-filters--offcanvas--mobile .widget-filters__item {
        border-width: 1px;
    }
}

.widget__title {
    margin-bottom: 20px;
    font-size: 20px;
}

.filter__title {
    display: block;
    border: none;
    padding: 6px 10px;
    cursor: pointer;
    width: calc(100% + 20px);
    position: relative;
    color: inherit;
    font-weight: 700;
    font-size: 15px;
    line-height: 18px;
    border-radius: 2px;
    margin: 0 -10px;
    transition: background-color 0.2s, fill 0.2s;
    background: transparent;
    fill: #ccc;
    text-align: left;
}

.filter__title:focus,
.filter__title:hover {
    transition-duration: 0.1s, 0.1s;
    background: #f2f2f2;
    fill: #b3b3b3;
}

.filter__title:focus {
    outline: none;
}

.filter__arrow {
    position: absolute;
    top: 11px;
    transition: transform 0.2s;
    right: 10px;
}

.filter__body {
    /*margin: 0 -20px;*/
    overflow: hidden;
    visibility: hidden;
    height: 0;
    opacity: 0;
    transition: height 0.2s, opacity 0.2s, visibility 0s 0.2s;
}

.filter__container {
    padding: 10px 20px 16px;
}

.filter--opened .filter__body {
    transition-delay: 0s, 0s;
    visibility: visible;
    height: auto;
    opacity: 1;
}

.filter--opened .filter__arrow {
    transform: rotate(180deg);
}

.filter-price__slider {
    margin-top: 6px;
}

.filter-price__title {
    margin-top: 16px;
    font-size: 14px;
    color: #999;
}

.products-view__options {
    padding-bottom: 20px;
}

.view-options {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    font-size: 15px;
}

.view-options__legend {
    margin-left: 20px;
}

.view-options__divider {
    -ms-flex-positive: 1;
    flex-grow: 1;
}

.view-options__filters-button {
    margin-right: 12px;
}

.view-options__control {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    margin-left: 24px;
}

.view-options__control label {
    margin-bottom: 0;
    margin-right: 8px;
}

@media (max-width: 991px) {
    .view-options {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }

    .view-options__legend {
        margin-left: auto;
    }

    .view-options__divider {
        width: 100%;
        height: 12px;
    }

    .view-options__control {
        margin-left: auto;
    }

    .view-options__control + .view-options__control {
        margin-left: 24px;
    }
}

@media (max-width: 474px) {
    .view-options__legend {
        /*width: 100%;*/
        /*padding-top: 12px;*/
    }

    .view-options__divider {
        height: 8px;
    }

    .view-options__control {
        /*margin-left: 0;*/
        /*margin-right: 24px;*/
    }

    .view-options__control + .view-options__control {
        margin-left: 0;
    }
}

@media (min-width: 992px) {
    .view-options--offcanvas--mobile .view-options__filters-button {
        display: none;
    }
}

.filters-button {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    padding: 0 9px;
    height: 32px;
    border: 1px solid #e5e5e5;
    border-radius: 2px;
    background: #fff;
    cursor: pointer;
    font-family: inherit;
    font-weight: 500;
    font-size: 14px;
    color: inherit;
}

.filters-button:focus {
    outline: none;
}

.filters-button:hover {
    background: #f5f5f5;
    border-color: #e5e5e5;
}

.filters-button__icon {
    fill: #3d464d;
    margin-right: 8px;
}

.filters-button__counter {
    display: block;
    height: 20px;
    font-size: 13px;
    font-weight: 500;
    padding: 2px 5px 0;
    border-radius: 2px;
    line-height: 16px;
    background: #ffd333;
    color: #3d464d;
    margin-left: 12px;
    margin-right: -4px;
}

.noUi-target,
.noUi-target * {
    -webkit-touch-callout: none;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
    -webkit-user-select: none;
    -ms-touch-action: none;
    touch-action: none;
    -ms-user-select: none;
    -moz-user-select: none;
    user-select: none;
    box-sizing: border-box;
}

.noUi-target {
    position: relative;
    direction: ltr;
}

.noUi-base,
.noUi-connects {
    width: 100%;
    height: 100%;
    position: relative;
    z-index: 1;
}

.noUi-connects {
    overflow: hidden;
    z-index: 0;
}

.noUi-connect,
.noUi-origin {
    will-change: transform;
    position: absolute;
    z-index: 1;
    top: 0;
    left: 0;
    -ms-transform-origin: 0 0;
    -webkit-transform-origin: 0 0;
    -webkit-transform-style: preserve-3d;
    transform-origin: 0 0;
    transform-style: flat;
}

.noUi-connect {
    height: 100%;
    width: 100%;
}

.noUi-origin {
    height: 10%;
    width: 10%;
}

html:not([dir="rtl"]) .noUi-horizontal .noUi-origin {
    left: auto;
    right: 0;
}

.noUi-vertical .noUi-origin {
    width: 0;
}

.noUi-horizontal .noUi-origin {
    height: 0;
}

.noUi-handle {
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    position: absolute;
}

.noUi-touch-area {
    height: 100%;
    width: 100%;
}

.noUi-state-tap .noUi-connect,
.noUi-state-tap .noUi-origin {
    transition: transform 0.3s;
}

.noUi-state-drag * {
    cursor: inherit !important;
}

.noUi-horizontal {
    height: 18px;
}

.noUi-horizontal .noUi-handle {
    width: 34px;
    height: 28px;
    left: -17px;
    top: -6px;
}

.noUi-vertical {
    width: 18px;
}

.noUi-vertical .noUi-handle {
    width: 28px;
    height: 34px;
    left: -6px;
    top: -17px;
}

.noUi-target {
    height: 16px;
}

.noUi-base {
    padding-top: 5px;
}

.noUi-connects {
    background: #e0e0e0;
    border-radius: 3px;
    height: 6px;
}

.noUi-connect {
    border-radius: 2px;
    background: #ffd333;
}

.noUi-horizontal .noUi-handle {
    cursor: ew-resize;
    width: 16px;
    height: 16px;
    border-radius: 8px;
    background: #3d464d;
    box-shadow: 0 0 0 0 rgba(61, 70, 77, 0);
    transition: box-shadow 0.2s;
}

.noUi-horizontal .noUi-handle:after {
    top: 0;
    display: block;
    content: "";
    position: absolute;
    width: 6px;
    height: 6px;
    margin: 5px;
    border-radius: 3px;
    background: #ffd333;
    transition: transform 0.2s;
}

.noUi-horizontal .noUi-handle:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(61, 70, 77, 0.3);
}

.noUi-horizontal .noUi-handle:focus:after {
    transform: scale(0);
}

.noUi-horizontal .noUi-handle {
    top: 0;
    left: auto;
    right: -8px;
}

.header-content .search-suggestions {
    position: absolute;
    width: 90%;
    background: #FFFFFF;
    z-index: 2;
    left: 5%;
    top: 103%;
    border-radius: 0.5rem;
    /*opacity: 0;*/
    /*visibility: hidden;*/
    transition: all 0.5s ease-in-out;
    box-shadow: rgba(0, 0, 0, 0.16) 0 1px 4px;
}

.header-content .search-suggestions .cart-wrapper-item {
    padding: 1rem;
    width: 100%;
    height: 30.1rem;
}

.header-content .search-suggestions .cart-wrapper-item .wrapper {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-between;
    gap: 0px;
    margin-top: 2rem;
    width: 100%;
}

.header-content .search-suggestions .cart-wrapper-item .wrapper .wrapper-item {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
}

.header-content .search-suggestions .cart-wrapper-item .wrapper .wrapper-item .wrapper-img {
    width: 6.5rem;
    height: auto;
    background: rgba(174, 28, 154, 0.08);
    border-radius: 0.5rem;
}

.header-content .search-suggestions .cart-wrapper-item .wrapper .wrapper-item .wrapper-title,
.header-content .search-suggestions .cart-wrapper-item .wrapper .wrapper-item .new-price {
    font-size: 1.2rem;
}


.breadcrumb {

}

.breadcrumb .active {
    color: var(--heading);
}

.breadcrumb-item {
    font-size: 18px;
    padding: 0px !important;
    text-transform: capitalize;
}

.breadcrumb-item a {
    color: var(--primary);
}

.breadcrumb-item a:hover {
    color: var(--primary);
    text-decoration: underline;
}

.breadcrumb-item + .breadcrumb-item::before {
    color: var(--primary);
    padding: 0px 8px;
}


.page-item.active .page-link {
    z-index: 3;
    color: #fff;
    background-color: var(--primary);
    border-color: var(--primary);
}




.details-tag-list li a.btn-selected {
    color: var(--white);
    background: var(--primary);
}

.product-quantity {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 2rem;
}

.product-quantity .quantity-wrapper {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.product-quantity .quantity {
    max-width: 130px;
    padding: 0 10px;
}

.product-quantity .quantity input {
    width: 100%;
    text-align: center;
}

.product-quantity .quantity, .product-quantity .wishlist {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    height: 3rem;
    border: 1px solid rgba(174, 28, 154, 0.08);
    border-radius: 0.5rem;
}

.quantity span {
    font-size: 14px;
}

.product-quantity .wishlist {
    width: 6rem;
}

.product-quantity .shop-btn {
    flex: 1 1 0%;
}

.shop-btn {
    padding: 10px 0px;
    text-align: center;
    border-radius: 0.5rem;
    display: inline-block;
    border: 1px solid var(--primary);

    font-size: 14px;
    font-weight: 700;
    position: relative;
    color: var(--primary);
    font-family: "Inter", sans-serif;
    transition: all 0.3s;
    overflow: hidden;
    z-index: 1;
    width: 100%;
}

.shop-btn:hover {
    background: var(--primary);
    color: var(--white);
}

@media (max-width: 991px) {
    .product-quantity {
        flex-direction: column;
        margin-top: 2rem;
    }

    .product-quantity .shop-btn {
        margin-top: 0;
    }
}


.wishlist__product-name {
    color: inherit;
}
.wishlist__product-rating {
    margin-top: 6px;
    display: -ms-flexbox;
    display: flex;
}
.wishlist__product-rating-legend {
    font-size: 13px;
    line-height: 1;
    color: #b3b3b3;
    padding-top: 1px;
    margin-left: 9px;
}
@media (min-width: 768px) {
    .wishlist {
        width: 100%;
        border-collapse: separate;
        border-spacing: 0;
    }
    .wishlist__column {
        padding: 12px 18px;
        border-top: 1px solid #ebebeb;
    }
    .wishlist__column:first-child {
        border-left: 1px solid #ebebeb;
    }
    .wishlist__column:last-child {
        border-right: 1px solid #ebebeb;
    }
    .wishlist__head {
        background: #f7f7f7;
        font-size: 15px;
    }
    .wishlist__head .wishlist__column {
        font-weight: 500;
    }
    .wishlist__head .wishlist__column:first-child {
        border-top-left-radius: 2.5px;
    }
    .wishlist__head .wishlist__column:last-child {
        border-top-right-radius: 2.5px;
    }
    .wishlist__body .wishlist__column {
        padding-top: 18px;
        padding-bottom: 18px;
    }
    .wishlist__body .wishlist__row:last-child .wishlist__column {
        border-bottom: 1px solid #ebebeb;
    }
    .wishlist__body .wishlist__row:last-child .wishlist__column:first-child {
        border-bottom-left-radius: 2.5px;
    }
    .wishlist__body .wishlist__row:last-child .wishlist__column:last-child {
        border-bottom-right-radius: 2.5px;
    }
    .wishlist__column--image {
        width: 1px;
        text-align: center;
        padding-right: 4px;
    }
    .wishlist__column--image .product-image {
        width: 80px;
    }
    .wishlist__column--stock {
        white-space: nowrap;
        text-align: center;
        width: 1px;
    }
    .wishlist__column--price {
        width: 170px;
        text-align: right;
        padding-left: 90px;
    }
    .wishlist__column--tocart {
        white-space: nowrap;
        width: 1px;
        padding-left: 90px;
        padding-right: 0;
    }
    .wishlist__column--remove {
        width: 1px;
    }
}
@media (min-width: 992px) and (max-width: 1199px) {
    .wishlist__column--price {
        width: 140px;
    }
    .wishlist__column--price,
    .wishlist__column--tocart {
        padding-left: 30px;
    }
}
@media (min-width: 768px) and (max-width: 991px) {
    .wishlist__column--price {
        width: 1px;
    }
    .wishlist__column--price,
    .wishlist__column--stock,
    .wishlist__column--tocart {
        padding-left: 0;
    }
    .wishlist__column--remove {
        padding-left: 8px;
        padding-right: 12px;
    }
}
@media (max-width: 767px) {
    .wishlist {
        display: block;
    }
    .wishlist__head {
        display: none;
    }
    .wishlist__body {
        display: block;
    }
    .wishlist__row {
        position: relative;
        width: 100%;
        display: block;
        border: 1px solid #ebebeb;
        border-radius: 2px;
        padding: 20px 20px 24px;
    }
    .wishlist__row + .wishlist__row {
        margin-top: 15px;
    }
    .wishlist__column {
        display: block;
        padding: 0;
    }
    .wishlist__column--image {
        padding: 0 0 12px;
        text-align: center;
    }
    .wishlist__column--image .product-image {
        width: 100%;
        max-width: 160px;
        margin: 0 auto;
    }
    .wishlist__column--price,
    .wishlist__column--product,
    .wishlist__column--stock,
    .wishlist__column--tocart {
        text-align: center;
    }
    .wishlist__column--stock {
        margin-top: 8px;
    }
    .wishlist__column--price {
        margin-top: 12px;
        font-size: 16px;
        font-weight: 700;
    }
    .wishlist__column--tocart {
        margin-top: 24px;
    }
    .wishlist__column--remove {
        position: absolute;
        top: 5px;
        right: 5px;
    }
    .wishlist__product-rating {
        -ms-flex-pack: center;
        justify-content: center;
    }
}



.buy-row{
  display:flex;
  align-items:center;
  gap:8px;
}

.cart-form{
  display:flex;
  align-items:center;
  gap:8px;
  margin:0;
}

/* Quantity box */
.qty-box{
  display:flex;
  align-items:center;
  height:48px;
  border:1px solid #dcdcdc;
  border-radius:4px;
  overflow:hidden;
  background:#fff;
}

.qty-btn{
  width:44px;
  height:48px;
  border:0;
  background:#fff;
  font-size:18px;
  line-height:1;
}

.qty-input{
  width:56px;
  height:48px;
  border:0;
  text-align:center;
  outline:none;
}

/* Add to cart button (yellow) */
.add-cart-btn {
    height: 48px;
    padding: 0 28px;
    border-radius: 4px;
    border: 1px solid var(--primary);
    color: var(--primary);
    font-weight: 600;
}

.add-cart-btn:hover {
    background: var(--primary);
    border: 1px solid var(--primary);
    color: var(--white);
}

/* Wishlist gray square on right */
.wish-box{
  width:48px;
  height:48px;
  border-radius:4px;
  display:flex;
  align-items:center;
  border:1px solid #dcdcdc;
  justify-content:center;
}

/* Ensure the included wish button fits perfectly */
.wish-box form,
.wish-box button.product-wish{
  width:100%;
  height:100%;
  margin:0;
}

.wish-box button.product-wish{
  display:flex;
  align-items:center;
  justify-content:center;
  border:0;
  background:transparent;
}



.btn {

  font-size: 15px;
  /*font-weight: 500;*/
  /*text-transform: uppercase;*/
  /*padding: 14px 32px;*/
  /*border-radius: 6px;*/
  border: 2px solid var(--primary);
}

.btn:focus {
  -webkit-box-shadow: none !important;
          box-shadow: none !important;
}

.btn i {
  margin-right: 5px;
}

.btn-inline {
  color: var(--white);
  background: var(--primary);
}

.btn-inline:hover {
  color: var(--primary);
  background: var(--white);
}

.btn-outline {
  color: var(--primary);
  background: var(--white);
}

.btn-outline:hover {
  color: var(--white);
  background: var(--primary);
}

.product-video-box {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
}

.product-video-box img {
    width: 100%;
    display: block;
    object-fit: cover;
}

.video-play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 32px;
    width: 70px;
    height: 70px;
    line-height: 70px;
    text-align: center;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.6);
    color: #fff;
    text-decoration: none;
    z-index: 2;
}