/* ========================================
   PEDAGOGIA — PRODUCT PAGE / SHOP UI
   CSS extraído do "CSS Adicional" e organizado
   ======================================== */

/* ===== UTILITÁRIOS ===== */
/* `.seo-hidden` foi movido para o CSS global do tema (`theme-global.css`). */

/* ===== FILTRO DE CATEGORIA ===== */
.category-filter-row .filter-button {
    background: #fbd932;
    color: #333;
    padding: 10px 20px;
    border-radius: 8px;
    font-weight: 700;
    margin-left: 25px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 15px;
    border: none;
    transition: all .2s ease;
}

.category-filter-row .filter-button i {
    font-size: 17px;
    color: #333;
}

.category-filter-row .filter-button:hover {
    background: #ffe46a;
    transform: translateY(-2px);
    box-shadow: 0 3px 6px rgba(0,0,0,0.15);
}

/* ===== REVIEWS / AVALIAÇÕES ===== */
.single-product .woocommerce-product-rating {
    margin-bottom: 15px;
}

.single-product #reviews {
    margin-top: 30px;
}

.single-product #reviews .commentlist {
    padding: 0;
    margin: 0;
}

.single-product #reviews .review-item {
    background: #fff;
    border-radius: 14px;
    padding: 18px;
    box-shadow: 0 6px 18px rgba(0,0,0,0.06);
    margin-bottom: 20px;
    transition: all 0.2s ease;
}

.single-product #reviews .review-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

.single-product #reviews .avatar {
    border-radius: 50%;
    border: 2px solid #f2f2f2;
}

.single-product #reviews .comment-text {
    padding-left: 10px;
}

.single-product .woocommerce-review__author {
    font-weight: 600;
    color: #222;
}

.single-product .woocommerce-review__verified {
    color: #4CAF50;
    font-style: normal;
    font-size: 12px;
    margin-left: 6px;
}

.single-product .woocommerce-review__published-date {
    color: #999;
    font-size: 12px;
}

.single-product #reviews .description p {
    margin-top: 10px;
    font-size: 14px;
    line-height: 1.5;
    color: #444;
}

.single-product #reviews .star-rating {
    margin-bottom: 8px;
}

.single-product #review_form_wrapper {
    background: #fff;
    border-radius: 14px;
    padding: 20px;
    box-shadow: 0 6px 18px rgba(0,0,0,0.06);
}

.woocommerce-verification-required {
    font-size: 14px;
    color: #666;
}

/* ===== PÁGINA DE PRODUTO ===== */
.woobt-qty-num {
    display: none !important;
}

.woobt-title-inner span:first-child {
    font-weight: bold;
}

.single-product .woocommerce div.product .summary {
    background-color: #f9f9f9 !important;
    padding: 20px;
    border-radius: 8px;
}

@media (min-width: 1024px) {
    .single-product .product .summary {
        margin-top: 0 !important;
        padding-top: 0 !important;
    }

    .single-product .product .summary h1.product_title {
        margin-top: -25px !important;
    }
}

.single-product .page-title.shop-page-title,
.single-product .page-title-inner {
    padding-top: 5px !important;
    padding-bottom: 5px !important;
    min-height: auto !important;
}

.single-product .woocommerce-breadcrumb {
    margin: 0 !important;
    padding: 0 !important;
    font-size: 14px !important;
    line-height: 1.25 !important;
    text-align: center;
}

.single-product .woocommerce-breadcrumb,
.single-product .woocommerce-breadcrumb a:last-child,
.single-product .woocommerce-breadcrumb span:last-child {
    font-weight: bold !important;
    color: #9FB401 !important;
}

.single-product .pi-cta,
.single-product form.cart {
    max-width: 800px;
    margin: 0 auto;
    background: #fff;
    border-radius: 12px;
    padding: 10px;
    box-shadow: 0 6px 25px rgba(0,0,0,0.07);
}

.single-product .pi-cta__head .product-name {
    font-size: 22px !important;
    font-weight: 400 !important;
    color: #111 !important;
    margin: 0 0 4px !important;
    text-shadow: none !important;
    line-height: 1.2;
}

.single-product .pi-cta__head .woocommerce-Price-amount {
    font-weight: inherit;
}

.single-product .pi-cta__head .product-page-price {
    font-size: 18px !important;
    font-weight: 800 !important;
    color: #9FB401;
    margin: 10px 0 -5px 0;
}

.single-product .pi-cta__head .woocommerce-Price-currencySymbol {
    font-size: 16px;
    vertical-align: top;
    margin-right: 2px;
}

.single-product .pi-cta__wrap,
.single-product form.cart .cart-inner-box {
    background: #fff;
    border-radius: 10px;
    border: 10px solid #fff;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    padding: 5px;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.single-product .pi-cta__form,
.single-product form.cart {
    display: flex;
    align-items: stretch;
    justify-content: space-between;
    gap: 10px;
    flex-wrap: nowrap;
}

.single-product .single_add_to_cart_button,
.single-product .single_buy_now_button {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    padding: 18px;
    font-size: 14px;
    line-height: 1;
    font-weight: 700;
    border-radius: 12px;
    border: none;
    cursor: pointer;
    transition: all 0.2s ease;
}

.single-product .single_add_to_cart_button {
    width: 60%;
    background-color: #F5C518 !important;
    color: #000 !important;
}

.single-product .single_buy_now_button {
    width: 40%;
    background-color: #9FB401 !important;
    color: #FFF !important;
}

.single-product .single_add_to_cart_button:hover,
.single-product .single_buy_now_button:hover {
    opacity: 0.9;
    transform: translateY(-1px);
}

.single-product .informacoes-produto {
    border-top: 1px solid #f0f0f0;
    padding-top: 10px;
}

.single-product .informacoes-produto hr {
    margin: 2px 0 !important;
    border-color: #eee !important;
}

.single-product .informacoes-produto .info-item {
    display: flex;
    align-items: center;
    margin: 2px 0;
    line-height: 1;
}

.single-product .informacoes-produto .info-icon {
    width: 14px !important;
    height: 14px !important;
    min-width: 14px;
    min-height: 14px;
    max-width: 14px;
    max-height: 14px;
    margin-right: 6px;
    object-fit: contain;
    display: inline-block;
    filter: grayscale(100%) brightness(0) invert(0.25);
}

.single-product .informacoes-produto .info-text {
    font-size: 10px;
    color: #333;
}

.single-product .pi-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-top: 0;
    border-top: 1px solid #f0f0f0;
    padding-top: 10px;
}

.single-product .pi-tag {
    background: #fafafa;
    border: 1px solid #CCC;
    border-radius: 14px;
    padding: 10px 10px;
    font-size: 12px;
    color: #666;
    transition: all 0.2s ease;
}

.single-product .pi-tag:hover {
    background: #f5c518;
    border-color: #e0b912;
    color: #000;
    transform: translateY(-1px);
}

.single-product .pi-tag {
    padding: 4px 4px !important;
    font-size: 9px !important;
    border-radius: 6px !important;
}

#accordion-description-content {
    margin-top: 15px;
    padding: 15px 10px;
}

.descricao-produto {
    font-family: 'Poppins', Arial, sans-serif;
    font-size: 15px;
    line-height: 1.7;
    color: #222;
}

.descricao-produto h2 {
    text-align: center;
    font-size: 26px;
    font-weight: 800;
    margin-bottom: 6px;
}

.descricao-produto p.subtitulo {
    text-align: center;
    color: #666;
    margin-bottom: 26px;
}

.descricao-produto .bloco {
    background: #ffffff;
    border-radius: 18px;
    padding: 26px;
    margin-bottom: 26px;
    box-shadow: 0 14px 36px rgba(0,0,0,0.06);
}

.descricao-produto .bloco > h3 {
    font-size: 18px;
    font-weight: 700;
    margin: 0 0 14px;
    position: relative;
}

.descricao-produto .bloco > h3::after {
    content: "";
    display: block;
    width: 48px;
    height: 4px;
    background: #9FB401;
    border-radius: 4px;
    margin-top: 6px;
}

.video-produto .video-produto__titulo {
    font-size: 18px;
    font-weight: 700;
    margin: 0 0 10px;
    color: #222;
    text-align: left;
}

.video-produto .video-produto__titulo::after {
    content: "";
    display: block;
    width: 0;
    height: 3px;
    background: #9FB401;
    border-radius: 3px;
    margin-top: 6px;
}

.video-produto__descricao {
    font-size: 15px;
    color: #444;
    margin-bottom: 18px;
}

.video-produto__item {
    margin-bottom: 24px;
}

.video-produto iframe {
    width: 100%;
    border-radius: 14px;
    box-shadow: 0 12px 28px rgba(0,0,0,0.10);
}

.descricao-produto ul {
    list-style: none;
    padding-left: 0;
}

.descricao-produto ul li {
    padding: 4px 0;
}

.descricao-produto .chamada-final {
    background: linear-gradient(135deg, #f4f8e6, #e9f2c8);
    color: #2a2a2a;
    border-radius: 18px;
    padding: 26px 24px;
    font-weight: 700;
    text-align: center;
    box-shadow: 0 10px 26px rgba(0,0,0,0.08);
}

.descricao-produto .cta-final {
    text-align: center;
    font-size: 16px;
    font-weight: 400;
    margin-top: 20px;
}

.descricao-curta {
    background: linear-gradient(180deg, #ffffff, #fafafa);
    border-radius: 18px;
    padding: 22px 24px;
    margin-bottom: 20px;
    box-shadow: 0 12px 28px rgba(0,0,0,0.06);
}

.descricao-curta h3 {
    font-size: 19px;
    font-weight: 800;
    margin-top: 0;
}

.descricao-curta p {
    font-size: 15px;
    line-height: 1.6;
    color: #444;
}

.descricao-curta ul {
    list-style: none;
    padding-left: 0;
    margin: 18px 0;
}

.descricao-curta ul li {
    padding: 4px 0;
    font-size: 14.5px;
}

.descricao-curta .bloco-destaque {
    background: #f1f7e8;
    border-left: 4px solid #9FB401;
    padding: 12px 14px;
    border-radius: 8px;
    font-weight: 600;
    margin: 18px 0;
}

.descricao-curta .aviso {
    font-size: 13px;
    color: #777;
    margin-bottom: 0;
}

@media (max-width: 768px) {
    .descricao-produto {
        font-size: 14px;
    }

    .descricao-curta {
        padding: 18px;
    }

    .descricao-curta > h3,
    .descricao-curta > p {
        display: none !important;
    }

    .ped-mobile-head-wrap {
        padding-bottom: 6px;
    }

    .single-product .pi-breadcrumb:not(.ped-mobile-head-wrap .pi-breadcrumb) {
        display: none !important;
    }

    .single-product h1.product_title:not(.ped-mobile-head-wrap h1.product_title),
    .single-product h1.product-title:not(.ped-mobile-head-wrap h1.product-title) {
        display: none !important;
    }

    .single-product .pi-breadcrumb:not(.ped-clone) {
        display: none !important;
    }

    .single-product h1.product_title:not(.ped-clone),
    .single-product h1.product-title:not(.ped-clone) {
        display: none !important;
    }

    .page-title-inner .flex-col.flex-grow.medium-text-center {
        display: none !important;
    }

    #wrapper > div > div > div:nth-child(2) {
        margin-top: 0 !important;
        margin-bottom: 0 !important;
        padding-top: 0 !important;
        padding-bottom: 0 !important;
    }

    body.single-product {
        padding-bottom: calc(106px + env(safe-area-inset-bottom));
    }

    .pdi-mobile-sticky-cta {
        position: fixed;
        left: 10px;
        right: 10px;
        bottom: 10px;
        z-index: 9999;
        display: flex;
        flex-direction: column;
        gap: 6px;
        padding: 8px 10px 8px;
        border: 1px solid #e7edd7;
        border-radius: 16px;
        background: #fbfdf7;
        box-shadow: 0 -4px 14px rgba(15, 23, 42, 0.06), 0 10px 20px rgba(15, 23, 42, 0.12);
        opacity: 0;
        transform: translateY(120%);
        pointer-events: none;
        transition: transform 0.3s ease, opacity 0.3s ease;
    }

    .pdi-mobile-sticky-cta.is-visible {
        opacity: 1;
        transform: translateY(0);
        pointer-events: auto;
    }

    .pdi-mobile-sticky-cta__benefits {
        display: none;
    }

    .pdi-mobile-sticky-cta__benefit {
        display: none;
    }

    .pdi-mobile-sticky-cta__trust {
        display: none;
    }

    .pdi-mobile-sticky-cta__price {
        display: flex;
        align-items: baseline;
        gap: 5px;
        min-width: 0;
        padding: 0 2px;
        padding-bottom: 10px;
    }

    .pdi-mobile-sticky-cta__price-label {
        font-size: 11px;
        font-weight: 700;
        line-height: 1;
        color: #667085;
    }

    .pdi-mobile-sticky-cta__price-value {
        font-size: 22px;
        line-height: 1;
        font-weight: 900;
        color: #0f172a;
        letter-spacing: -.02em;
    }

    .pdi-mobile-sticky-cta__price-value .amount {
        color: inherit;
        font-weight: inherit;
    }

    .pdi-mobile-sticky-cta__price-value del {
        display: inline-block;
        font-size: 10px;
        opacity: .55;
        margin-right: 4px;
    }

    .pdi-mobile-sticky-cta__actions {
        display: grid;
        grid-template-columns: 0.8fr 1.4fr;
        gap: 8px;
        align-items: stretch;
    }

    .pdi-mobile-sticky-cta__button {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 6px;
        width: 100%;
        min-height: 42px;
        border-radius: 13px;
        border: 1px solid #d7dce3;
        font-size: 12.5px;
        font-weight: 800;
        line-height: 1.1;
        letter-spacing: .01em;
        padding: 10px 8px;
        text-align: center;
        transition: transform .18s ease, box-shadow .18s ease, opacity .18s ease;
    }

    .pdi-mobile-sticky-cta__button-icon {
        font-size: 13px;
        line-height: 1;
    }

    .pdi-mobile-sticky-cta__button-text {
        white-space: nowrap;
    }

    .pdi-mobile-sticky-cta__cart-count {
        display: none;
        align-items: center;
        justify-content: center;
        min-width: 18px;
        height: 18px;
        padding: 0 4px;
        border-radius: 999px;
        background: #f5c518;
        color: #111827;
        font-size: 10px;
        font-weight: 900;
    }

    .pdi-mobile-sticky-cta.has-cart-items .pdi-mobile-sticky-cta__cart-count {
        display: inline-flex;
    }

    .pdi-mobile-sticky-cta__button--cart {
        background: linear-gradient(180deg, #ffffff 0%, #f7f7f7 100%);
        color: #111827;
        box-shadow: inset 0 1px 0 rgba(255,255,255,.85);
    }

    .pdi-mobile-sticky-cta__button--buy {
        background: linear-gradient(180deg, #84cc16 0%, #65a30d 100%);
        border-color: #6ea700;
        color: #fff;
        box-shadow: 0 12px 24px rgba(132, 204, 22, 0.35);
        animation: pdiMobileCtaPulse 2.4s ease-in-out infinite;
    }

    .pdi-mobile-sticky-cta__button:active {
        transform: translateY(1px);
    }

    .pdi-mobile-sticky-cta__button:disabled {
        opacity: .6;
        box-shadow: none;
        animation: none;
    }

    @keyframes pdiMobileCtaPulse {
        0%, 100% {
            transform: scale(1);
            box-shadow: 0 12px 24px rgba(132, 204, 22, 0.35);
        }
        50% {
            transform: scale(1.02);
            box-shadow: 0 16px 28px rgba(132, 204, 22, 0.42);
        }
    }
}

@media (min-width: 769px) {
    .pdi-mobile-sticky-cta {
        display: none !important;
    }
}

@media (max-width: 768px) {
    body.woofc-show .woofc-overlay {
        background: rgba(15, 23, 42, 0.72) !important;
        backdrop-filter: blur(2px);
    }

    body.woofc-show .woofc-area[class*="woofc-position-"] {
        width: 100% !important;
        max-width: 100% !important;
        padding: 10px !important;
        box-sizing: border-box;
    }

    body.woofc-show .woofc-area .woofc-inner {
        background: #ffffff !important;
        color: #1f2937 !important;
        border-radius: 20px !important;
        box-shadow: 0 24px 60px rgba(15, 23, 42, 0.24) !important;
        overflow: hidden;
    }

    body.woofc-show .woofc-area .woofc-area-top {
        height: auto !important;
        min-height: 56px;
        line-height: 1.2 !important;
        padding: 16px 54px 14px 18px !important;
        background: linear-gradient(180deg, #ffffff 0%, #fafcf7 100%) !important;
        border-bottom: 1px solid #eef2e3;
        color: #1f2937 !important;
        font-size: 15px;
        font-weight: 800;
        letter-spacing: .01em;
        text-transform: uppercase;
    }

    body.woofc-show .woofc-area .woofc-area-heading,
    body.woofc-show .woofc-area .woofc-area-heading * {
        color: #1f2937 !important;
    }

    body.woofc-show .woofc-area .woofc-area-count {
        color: #8ca208 !important;
    }

    body.woofc-show .woofc-area .woofc-close {
        top: 50% !important;
        right: 14px !important;
        transform: translateY(-50%);
        width: 34px;
        height: 34px;
        border-radius: 999px;
        display: flex;
        align-items: center;
        justify-content: center;
        background: #f4f6ef;
        color: #1f2937 !important;
    }

    body.woofc-show .woofc-area .woofc-area-mid {
        padding: 12px 12px 0 !important;
        background: #ffffff !important;
    }

    body.woofc-show .woofc-area .woofc-area-mid .woofc-item {
        margin-bottom: 10px;
    }

    body.woofc-show .woofc-area .woofc-area-mid .woofc-item .woofc-item-inner {
        background: #f8faf5 !important;
        border: 1px solid #e7edd7 !important;
        border-radius: 16px !important;
        box-shadow: none !important;
        padding: 10px !important;
    }

    body.woofc-show .woofc-area .woofc-area-mid .woofc-item .woofc-item-thumb {
        width: 72px !important;
        flex: 0 0 72px !important;
        margin-right: 10px !important;
    }

    body.woofc-show .woofc-area .woofc-area-mid .woofc-item .woofc-item-thumb img {
        width: 72px !important;
        height: 72px !important;
        object-fit: cover;
        border-radius: 12px !important;
    }

    body.woofc-show .woofc-area .woofc-item-title,
    body.woofc-show .woofc-area .woofc-item-title a {
        color: #1f2937 !important;
        font-size: 14px !important;
        line-height: 1.25 !important;
        font-weight: 700 !important;
        text-transform: none !important;
    }

    body.woofc-show .woofc-area .woofc-item-price {
        display: flex;
        flex-wrap: wrap;
        align-items: baseline;
        gap: 4px 6px;
        color: #475467 !important;
        font-weight: 600 !important;
    }

    body.woofc-show .woofc-area .woofc-item-price .pdi-woofc-price-from,
    body.woofc-show .woofc-area .woofc-item-price del,
    body.woofc-show .woofc-area .woofc-item-price del .amount,
    body.woofc-show .woofc-area .woofc-item-price del bdi {
        color: #98a2b3 !important;
        opacity: .82;
        font-size: 11px !important;
        font-weight: 600 !important;
        text-decoration: line-through !important;
    }

    body.woofc-show .woofc-area .woofc-item-price .pdi-woofc-price-current,
    body.woofc-show .woofc-area .woofc-item-price ins,
    body.woofc-show .woofc-area .woofc-item-price ins .amount,
    body.woofc-show .woofc-area .woofc-item-price ins bdi {
        color: #7aa800 !important;
        font-size: 13px !important;
        font-weight: 800 !important;
        text-decoration: none !important;
        background: transparent !important;
    }

    body.woofc-show .woofc-area .woofc-item-qty .woofc-item-qty-inner input {
        background: #ffffff !important;
        border: 1px solid #dfe6cd !important;
        border-radius: 10px !important;
        min-height: 34px;
    }

    body.woofc-show .woofc-area .woofc-item-remove,
    body.woofc-show .woofc-area .woofc-item-remove * {
        color: #98a2b3 !important;
        opacity: 1 !important;
    }

    body.woofc-show .woofc-area .woofc-area-bot {
        padding: 10px 12px calc(12px + env(safe-area-inset-bottom)) !important;
        background: #ffffff !important;
        border-top: 1px solid #eef2e3;
    }

    body.woofc-show .woofc-area .woofc-area-bot .woofc-data,
    body.woofc-show .woofc-area .woofc-area-bot .woofc-total {
        padding: 0 4px !important;
        color: #1f2937 !important;
        font-size: 15px !important;
    }

    body.woofc-show .woofc-area .woofc-area-bot .woofc-total {
        font-weight: 800 !important;
        margin-top: 6px !important;
    }

    body.woofc-show .woofc-area .woofc-area-bot .woofc-action {
        padding: 12px 0 0 !important;
    }

    body.woofc-show .woofc-area .woofc-area-bot .woofc-action .woofc-action-inner {
        display: flex;
        gap: 8px;
        width: 100%;
    }

    body.woofc-show .woofc-area .woofc-area-bot .woofc-action .woofc-action-inner > div {
        width: 100% !important;
        margin: 0 !important;
    }

    body.woofc-show .woofc-area .woofc-area-bot .woofc-action .woofc-action-inner > div a {
        height: 42px !important;
        line-height: 40px !important;
        border-radius: 12px !important;
        border: 1px solid #d7dce3 !important;
        background: linear-gradient(180deg, #ffffff 0%, #f7f7f7 100%) !important;
        color: #344054 !important;
        font-size: 13px !important;
        font-weight: 800 !important;
        text-transform: none !important;
        box-shadow: none !important;
    }

    body.woofc-show .woofc-area .woofc-area-bot .woofc-action .woofc-action-inner > div:last-child a,
    body.woofc-show .woofc-area .woofc-area-bot .woofc-action .woofc-action-inner .woofc-action-full a {
        background: linear-gradient(180deg, #a9c117 0%, #879d06 100%) !important;
        border-color: #8ca208 !important;
        color: #ffffff !important;
        box-shadow: 0 10px 22px rgba(159, 180, 1, 0.26) !important;
    }

    body.woofc-show .woofc-area .woofc-area-bot .woofc-continue {
        margin-top: 12px !important;
        padding: 0 4px !important;
    }

    body.woofc-show .woofc-area .woofc-area-bot .woofc-continue span {
        color: #667085 !important;
        border-bottom: 1px solid #cfd6bd !important;
        font-size: 13px !important;
        font-weight: 600 !important;
        text-transform: none !important;
    }

    body.woofc-show .woofc-area .woofc-suggested {
        padding: 12px 4px 0 !important;
        color: #1f2937 !important;
    }

    body.woofc-show .woofc-area .woofc-suggested-heading {
        margin-bottom: 10px !important;
        font-size: 12px;
        color: #667085 !important;
    }

    body.woofc-show .woofc-area .woofc-suggested-heading span:before,
    body.woofc-show .woofc-area .woofc-suggested-heading span:after {
        background-color: #d7dce3 !important;
    }

    body.woofc-show .woofc-area .woofc-suggested .woofc-suggested-product {
        background: #fafafa;
        border: 1px solid #eef2e3;
        border-radius: 14px;
        padding: 8px;
    }

    body.woofc-show .woofc-area .woofc-suggested .woofc-suggested-product-image {
        width: 84px;
        flex: 0 0 84px;
    }

    body.woofc-show .woofc-area .woofc-suggested .woofc-suggested-product-image img {
        border-radius: 10px !important;
    }

    body.woofc-show .woofc-area .woofc-suggested .woofc-suggested-product-name,
    body.woofc-show .woofc-area .woofc-suggested .woofc-suggested-product-name a {
        color: #1f2937 !important;
        font-size: 14px;
        font-weight: 700;
        line-height: 1.3;
    }

    body.woofc-show .woofc-area .woofc-suggested .woofc-suggested-product-price,
    body.woofc-show .woofc-area .woofc-suggested .woofc-suggested-product-price * {
        color: #667085 !important;
        opacity: 1 !important;
    }

    body.woofc-show .woofc-area .woofc-suggested .woofc-suggested-product-atc .button {
        height: 36px !important;
        line-height: 34px !important;
        padding: 0 12px !important;
        border-radius: 10px !important;
        border: 1px solid #dfe6cd !important;
        background: #f4f6ef !important;
        color: #475467 !important;
        font-size: 12px !important;
        font-weight: 700 !important;
        text-transform: none !important;
    }

    body.woofc-show .woofc-area .slick-dots li button {
        background-color: #e5e7eb !important;
    }

    body.woofc-show .woofc-area .slick-dots li.slick-active button {
        width: 22px;
        background-color: #1f2937 !important;
    }

    body.single-product .woofc-count {
        display: none !important;
    }
}


body.pdi-cart-added .pdi-mobile-sticky-cta {
    box-shadow: 0 18px 40px rgba(159, 180, 1, 0.22);
}
