.mbl-whatsapp-float {
    position: fixed;
    left: 24px;
    bottom: 28px;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 58px;
    height: 58px;
    border-radius: 50%;
    background-color: #25d366;
    color: #fff;
    font-size: 30px;
    line-height: 1;
    box-shadow: 0 6px 18px rgba(37, 211, 102, .45);
    transition: transform .25s ease, box-shadow .25s ease;
    animation: mbl-whatsapp-pulse 2.2s infinite;
}

.mbl-whatsapp-float:hover,
.mbl-whatsapp-float:focus {
    color: #fff;
    transform: scale(1.08);
    box-shadow: 0 8px 24px rgba(37, 211, 102, .6);
}

@keyframes mbl-whatsapp-pulse {
    0% {
        box-shadow: 0 6px 18px rgba(37, 211, 102, .45), 0 0 0 0 rgba(37, 211, 102, .5);
    }
    70% {
        box-shadow: 0 6px 18px rgba(37, 211, 102, .45), 0 0 0 16px rgba(37, 211, 102, 0);
    }
    100% {
        box-shadow: 0 6px 18px rgba(37, 211, 102, .45), 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

@media (max-width: 575.98px) {
    .mbl-whatsapp-float {
        left: 16px;
        bottom: 16px;
        width: 50px;
        height: 50px;
        font-size: 26px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .mbl-whatsapp-float {
        animation: none;
    }
}

.home-campaigns-area {
    padding: 100px 0 70px;
}

.home-campaign-card {
    background: #f3f3f3;
    margin-bottom: 30px;
    overflow: hidden;
    position: relative;
}

.home-campaign-card::after {
    background: linear-gradient(180deg, transparent 35%, rgba(0, 0, 0, .62) 100%);
    content: '';
    inset: 0;
    pointer-events: none;
    position: absolute;
}

.home-campaign-card__image {
    aspect-ratio: 3 / 2;
    display: block;
    object-fit: cover;
    transition: transform .35s ease;
    width: 100%;
}

.home-campaign-card:hover .home-campaign-card__image {
    transform: scale(1.025);
}

.home-campaign-card__content {
    align-items: flex-start;
    bottom: 0;
    display: flex;
    flex-direction: column;
    gap: 14px;
    left: 0;
    padding: clamp(18px, 2vw, 30px);
    position: absolute;
    right: 0;
    z-index: 1;
}

.home-campaign-card__text {
    color: #fff;
    font-size: clamp(20px, 1.7vw, 30px);
    line-height: 1.15;
    margin: 0;
    max-width: 90%;
    text-shadow: 0 1px 5px rgba(0, 0, 0, .35);
    white-space: pre-line;
}

.home-campaign-card__button {
    background-color: var(--home-campaign-button-bg, #dd75ad);
    color: #fff;
    display: inline-flex;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .08em;
    padding: 10px 16px;
    text-transform: uppercase;
}

.home-campaign-card__button:hover,
.home-campaign-card__button:focus {
    color: #fff;
    filter: brightness(.92);
}

@media (max-width: 767.98px) {
    .home-campaigns-area {
        padding: 60px 0 30px;
    }
}

.catalog-filter-sidebar {
    position: sticky;
    top: 105px;
    padding-right: 20px;
}

.catalog-filter-form .woocommerce-widget {
    margin-bottom: 26px;
}

.catalog-filter-group {
    border-bottom: 1px solid #ececec;
    padding: 0 0 22px;
    margin-bottom: 22px;
}

.catalog-filter-group summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: #000;
    cursor: pointer;
    font-size: 17px;
    font-weight: 700;
    list-style: none;
}

.catalog-filter-group summary::-webkit-details-marker {
    display: none;
}

.catalog-filter-group summary i {
    font-size: 22px;
    transition: transform .2s ease;
}

.catalog-filter-group[open] summary i {
    transform: rotate(180deg);
}

.catalog-filter-values {
    display: flex;
    flex-direction: column;
    gap: 11px;
    max-height: 245px;
    overflow-y: auto;
    padding: 17px 5px 0 0;
}

.catalog-filter-check {
    display: grid;
    grid-template-columns: 18px minmax(0, 1fr) auto;
    align-items: center;
    gap: 9px;
    color: #555;
    cursor: pointer;
    font-size: 14px;
    margin: 0;
}

.catalog-filter-check input {
    width: 17px;
    height: 17px;
    accent-color: #DD75AD;
}

.catalog-filter-check small {
    color: #999;
    font-size: 12px;
}

.catalog-filter-values--tiles {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    max-height: none;
}

.catalog-filter-tile {
    cursor: pointer;
    margin: 0;
    position: relative;
}

.catalog-filter-tile input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.catalog-filter-tile span {
    align-items: center;
    border: 1px solid #e5e5e5;
    display: flex;
    justify-content: center;
    min-height: 38px;
    padding: 5px;
    text-align: center;
}

.catalog-filter-tile input:checked + span,
.catalog-filter-tile input:focus-visible + span {
    border-color: #DD75AD;
    box-shadow: inset 0 0 0 1px #DD75AD;
    color: #DD75AD;
}

.catalog-active-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
}

.catalog-filter-chip {
    align-items: center;
    background: #f7f7f7;
    border: 0;
    border-radius: 18px;
    color: #333;
    display: inline-flex;
    font-size: 13px;
    gap: 4px;
    padding: 7px 11px 7px 7px;
}

.catalog-filter-chip i {
    background: #DD75AD;
    border-radius: 50%;
    color: #fff;
    font-size: 15px;
}

.catalog-clear-filters {
    display: inline-block;
    font-size: 13px;
    margin-top: 13px;
    text-decoration: underline;
}

.catalog-price-filter {
    align-items: end;
    display: grid;
    gap: 8px;
    grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
    padding-top: 17px;
}

.catalog-price-filter label {
    margin: 0;
}

.catalog-price-filter label span {
    color: #777;
    display: block;
    font-size: 12px;
    margin-bottom: 5px;
}

.catalog-price-filter .form-control {
    border-radius: 0;
    font-size: 13px;
    height: 42px;
    padding: 8px;
}

.catalog-price-separator {
    padding-bottom: 10px;
}

.catalog-stock-filter {
    border-bottom: 1px solid #ececec;
    margin-bottom: 22px;
    padding-bottom: 22px;
}

.catalog-filter-actions {
    align-items: center;
    display: flex;
    gap: 15px;
}

.catalog-filter-actions .default-btn {
    background: #DD75AD;
    border: 0;
    color: #fff;
    flex: 1;
    padding: 12px 16px;
}

.catalog-filter-actions .default-btn::before {
    display: none;
}

.catalog-filter-actions .default-btn:hover,
.catalog-filter-actions .default-btn:focus {
    background: #c85d98;
    color: #fff;
}

.catalog-filter-actions a {
    font-size: 13px;
    text-decoration: underline;
}

.catalog-products-toolbar {
    border-bottom: 1px solid #eee;
    margin-bottom: 30px;
    padding-bottom: 17px;
}

.catalog-products-toolbar .products-ordering-list {
    margin-left: auto;
    max-width: 260px;
}

.catalog-products-toolbar .products-ordering-list .nice-select {
    float: none;
    width: 100%;
}

.catalog-mobile-filter-button {
    align-items: center;
    background: none;
    border: 0;
    color: #000;
    display: inline-flex;
    font-weight: 700;
    gap: 6px;
    padding: 0;
}

.catalog-mobile-filter-button i {
    font-size: 20px;
}

.catalog-mobile-filter-button span {
    align-items: center;
    background: #DD75AD;
    border-radius: 50%;
    color: #fff;
    display: inline-flex;
    font-size: 11px;
    height: 20px;
    justify-content: center;
    width: 20px;
}

.catalog-empty-state {
    background: #fafafa;
    padding: 65px 20px;
}

.catalog-empty-state > i {
    color: #DD75AD;
    font-size: 58px;
}

.catalog-empty-state h3 {
    font-size: 22px;
    margin: 15px 0 8px;
}

.productsFilterModal .modal-header {
    border-bottom: 1px solid #eee;
    padding: 20px 25px;
}

.productsFilterModal .modal-title {
    font-size: 22px;
}

.productsFilterModal .catalog-filter-actions {
    background: #fff;
    bottom: 0;
    padding: 14px 0 5px;
    position: sticky;
}

.product-gallery {
    display: grid;
    gap: 16px;
    grid-template-columns: 88px minmax(0, 1fr);
    min-width: 0;
}

.product-gallery__main {
    min-width: 0;
}

.product-gallery__main:not(.slick-initialized) .product-gallery__slide:not(:first-child) {
    display: none;
}

.product-gallery__slide,
.product-gallery__popup {
    display: block;
}

.product-gallery__popup {
    aspect-ratio: 1 / 1;
    background: #f7f7f7;
    overflow: hidden;
    position: relative;
}

.product-gallery__popup > img {
    height: 100%;
    object-fit: contain;
    width: 100%;
}

.product-gallery__zoom {
    align-items: center;
    background: rgba(255, 255, 255, .92);
    border-radius: 50%;
    bottom: 18px;
    box-shadow: 0 5px 18px rgba(0, 0, 0, .12);
    color: #111;
    display: flex;
    font-size: 23px;
    height: 44px;
    justify-content: center;
    position: absolute;
    right: 18px;
    transition: background-color .2s ease, color .2s ease;
    width: 44px;
}

.product-gallery__popup:hover .product-gallery__zoom {
    background: #DD75AD;
    color: #fff;
}

.product-gallery__thumbs {
    min-width: 0;
}

.product-gallery__thumbs:not(.slick-initialized) button:not(:first-child) {
    display: none;
}

.product-gallery__thumbs button {
    background: #f7f7f7;
    border: 1px solid transparent;
    cursor: pointer;
    display: block;
    height: 88px;
    margin: 0 0 10px;
    overflow: hidden;
    padding: 0;
    width: 88px;
}

.product-gallery__thumbs button img {
    height: 100%;
    object-fit: contain;
    width: 100%;
}

.product-gallery__thumbs .slick-current button,
.product-gallery__thumbs button:focus-visible {
    border-color: #DD75AD;
}

.product-gallery__arrow,
.product-gallery__thumb-arrow {
    align-items: center;
    background: rgba(255, 255, 255, .94);
    border: 0;
    box-shadow: 0 4px 15px rgba(0, 0, 0, .1);
    display: flex;
    justify-content: center;
    position: absolute;
    z-index: 3;
}

.product-gallery__arrow {
    border-radius: 50%;
    font-size: 28px;
    height: 46px;
    top: 50%;
    transform: translateY(-50%);
    width: 46px;
}

.product-gallery__arrow--prev {
    left: 15px;
}

.product-gallery__arrow--next {
    right: 15px;
}

.product-gallery__arrow.slick-disabled,
.product-gallery__thumb-arrow.slick-disabled {
    opacity: .3;
}

.product-gallery__thumb-arrow {
    font-size: 20px;
    height: 25px;
    left: 50%;
    transform: translateX(-50%);
    width: 42px;
}

.product-gallery__thumb-arrow:first-of-type {
    top: 0;
}

.product-gallery__thumb-arrow:last-of-type {
    bottom: 0;
}

.products-details-desc .product-variant-option {
    border: 0;
    margin: 0 0 24px;
    min-width: 0;
    padding: 0;
}

.products-details-desc .product-variant-option legend,
.product-linked-colors__label {
    display: block;
    float: none;
    font-size: 17px;
    font-weight: 600;
    line-height: 1.4;
    margin-bottom: 8px;
    width: 100%;
}

.products-details-desc .product-variant-option ul {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 0;
}

.products-details-desc .product-variant-option ul li {
    margin: 0;
}

.products-details-desc .product-variant-choice {
    align-items: center;
    background: #fff;
    border: 1px solid #e3e3e3;
    color: #555;
    display: inline-flex;
    font-size: 15px;
    font-weight: 600;
    height: 42px;
    justify-content: center;
    line-height: 1;
    min-width: 46px;
    padding: 0 13px;
    transition: border-color .2s ease, color .2s ease, background-color .2s ease;
}

.products-details-desc .product-variant-choice:hover,
.products-details-desc .product-variant-choice:focus-visible,
.products-details-desc .product-variant-option li.active .product-variant-choice {
    border-color: #DD75AD;
    color: #DD75AD;
}

.products-details-desc .product-variant-option li.active .product-variant-choice {
    background: #fff5fa;
    box-shadow: inset 0 0 0 1px #DD75AD;
}

.products-details-desc .product-variant-choice.is-out-of-stock {
    color: #aaa;
    text-decoration: line-through;
}

.products-details-desc .product-variant-choice:disabled {
    background: #f6f6f6;
    border-color: #ececec;
    color: #bbb;
    cursor: not-allowed;
    text-decoration: line-through;
}

.product-linked-colors {
    margin-bottom: 25px;
}

.product-linked-colors__list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.product-linked-colors__choice {
    align-items: center;
    background: #fafafa;
    border: 1px solid #e5e5e5;
    color: #999;
    display: inline-flex;
    height: 72px;
    justify-content: center;
    overflow: hidden;
    transition: border-color .2s ease, box-shadow .2s ease;
    width: 72px;
}

.product-linked-colors__choice img {
    height: 100%;
    object-fit: cover;
    width: 100%;
}

.product-linked-colors__choice i {
    font-size: 28px;
}

.product-linked-colors__item.active .product-linked-colors__choice,
.product-linked-colors__choice:hover,
.product-linked-colors__choice:focus-visible {
    border-color: #DD75AD;
    box-shadow: 0 0 0 2px rgba(221, 117, 173, .18);
}

.products-details-desc .nice-select.form-select {
    align-items: center;
    display: flex;
    float: none;
    height: 50px;
    line-height: normal;
    padding: 0 48px 0 20px;
    width: 100%;
}

.products-details-desc .nice-select.form-select .current {
    line-height: 1.4;
}

.products-details-desc .nice-select.form-select .list {
    width: 100%;
}

@media (max-width: 991.98px) {
    .catalog-products-toolbar .products-ordering-list {
        max-width: none;
    }

    .product-gallery {
        display: grid;
        grid-template-columns: minmax(0, 1fr);
        margin-bottom: 35px;
    }

    .product-gallery__main {
        grid-row: 1;
    }

    .product-gallery__thumbs {
        grid-row: 2;
    }

    .product-gallery__thumbs button {
        height: auto;
        margin: 0 8px 0 0;
        width: auto;
    }

    .product-gallery__thumbs button img {
        aspect-ratio: 1 / 1;
    }

    .product-gallery__thumb-arrow {
        height: 38px;
        left: auto;
        top: 50%;
        transform: translateY(-50%);
        width: 30px;
    }

    .product-gallery__thumb-arrow:first-of-type {
        left: 0;
        top: 50%;
    }

    .product-gallery__thumb-arrow:last-of-type {
        bottom: auto;
        right: 0;
    }
}

@media (max-width: 575.98px) {
    .catalog-products-toolbar .col-6:nth-child(2) {
        text-align: right;
    }

    .catalog-products-toolbar .products-ordering-list {
        margin-top: 5px;
    }

    .product-gallery__arrow {
        font-size: 23px;
        height: 38px;
        width: 38px;
    }

    .product-gallery__zoom {
        bottom: 12px;
        height: 40px;
        right: 12px;
        width: 40px;
    }
}

/* Cart overview */
.cart-page { background: #faf8f6; }
.cart-page .cart-products, .cart-page .cart-coupon, .cart-page .cart-summary-card, .cart-page .cart-empty { background: #fff; border: 1px solid #eee7e1; border-radius: 16px; }
.cart-page .cart-panel-heading { padding: 24px; display: flex; align-items: center; justify-content: space-between; gap: 16px; border-bottom: 1px solid #eee7e1; }
.cart-page .cart-panel-heading h3 { margin: 0; font-size: 21px; }
.cart-page .cart-panel-heading > span { color: #70675f; font-size: 14px; }
.cart-page .cart-table { padding: 0 20px; }
.cart-page .cart-table table { margin: 0; }
.cart-page .cart-table table th { font-size: 12px; color: #70675f; white-space: nowrap; padding: 18px 8px; }
.cart-page .cart-table table td { padding: 22px 8px; font-size: 13px; }
.cart-page .cart-table table td:first-child { min-width: 180px; }
.cart-page .cart-table img { border-radius: 10px; object-fit: cover; float: left; margin-bottom: 8px; }
.cart-page .cart-table form { flex-wrap: wrap; }
.cart-page .cart-table .btn { font-size: 11px; }
.cart-page .cart-table tbody tr:last-child td { border-bottom: 0; }
.cart-page .cart-coupon { padding: 22px; }
.cart-page .cart-coupon .form-control { min-width: 0; background: #fff; }
.cart-page .cart-summary-card { margin: 0; max-width: none; padding: 26px; box-shadow: 0 8px 30px rgba(55, 35, 20, .04); }
.cart-page .cart-summary-card h3 { font-size: 23px; margin-bottom: 24px; }
.cart-summary-row { display: flex; align-items: baseline; justify-content: space-between; gap: 16px; margin: 16px 0; }
.cart-summary-row strong { white-space: nowrap; }
.cart-benefits:empty { display: none; }
.cart-benefit { display: flex; justify-content: space-between; align-items: flex-start; gap: 12px; background: #f0f8f2; color: #22683a; padding: 13px; border-radius: 9px; margin: 10px 0; font-size: 13px; }
.cart-benefit-name { font-weight: 600; }
.cart-benefit small { font-size: 11px; margin-top: 4px; }
.cart-benefit-value { white-space: nowrap; }
.cart-page .cart-savings { color: #22683a; font-size: 14px; }
.cart-page .cart-final-total { border-top: 1px solid #eee7e1; padding-top: 20px; margin-top: 22px; }
.cart-page .cart-final-total strong { font-size: 23px; }
.cart-page .cart-shipping-note { font-size: 12px; line-height: 1.7; color: #70675f; margin: 18px 0; }
.cart-page .cart-empty > i { font-size: 56px; color: #e58b62; display: block; margin-bottom: 20px; }
.theme-dark .cart-page, .theme-dark .cart-page .cart-products, .theme-dark .cart-page .cart-coupon, .theme-dark .cart-page .cart-summary-card, .theme-dark .cart-page .cart-empty { background: #202020; border-color: #404040; }
.theme-dark .cart-benefit { background: #21382a; color: #b9e4c5; }
@media (max-width: 767px) {
    .cart-page { padding: 40px 0; }
    .cart-page .cart-summary-card { padding: 22px; }
    .cart-page .cart-panel-heading { padding: 18px; }
    .cart-page .cart-table { padding: 0 12px; }
}
