 /* INICIO DO GERAL */
 
 .dropdown-toggle::after,
.dropdown-toggle::before {
    display: none !important;
    content: none !important;
}
            .sidebar-filter {
                position: relative;
                display: flex;
                align-items: center;
                font-size: 24px;
            }

            .sidebar-filter .cart-products-count {
                border-radius: 50%;
                height: 25px;
                width: 25px;
                background: #a98363;
                color: #fff;
                font-size: 11px;
                position: absolute;
                top: -15px;
                /* Ajuste conforme necessário */
                right: -15px;
                /* Ajuste conforme necessário */
                display: flex;
                align-items: center;
                justify-content: center;
                padding: 0;
                margin: 0;
                line-height: 25px;
            }
            .sidebar-filter-client-loggin .cart-products-count {
                border-radius: 50%;
                height: 13px;
                width: 13px;
                background: green;
                color: #fff;
                font-size: 11px;
                position: absolute;
                top: 20px;
                /* Ajuste conforme necessário */
                right: -5px;
                /* Ajuste conforme necessário */
                display: flex;
                align-items: center;
                justify-content: center;
                padding: 0;
                margin: 0;
                line-height: 25px;
            }
            .sidebar-filter-client .cart-products-count {
                border-radius: 50%;
                height: 13px;
                width: 13px;
                background: red;
                color: #fff;
                font-size: 11px;
                position: absolute;
                top: 20px;
                /* Ajuste conforme necessário */
                right: -5px;
                /* Ajuste conforme necessário */
                display: flex;
                align-items: center;
                justify-content: center;
                padding: 0;
                margin: 0;
                line-height: 25px;
            }

            /* ---------- MOBILE (<768px) ---------- */
@media (max-width: 768px) {
    .patoi-responsive-nav {
        display: block;
        background-color: #fff;
        box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
        padding: 10px 0;
    }

    .patoi-nav {
        display: none;
    }

    .mobile-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 10px 15px;
    }

    /* Menu hambúrguer */
    .menu-toggle i {
        font-size: 45px;
        color: #333;
    }

    /* Logo */
    .logo img {
        height: 60px;
        max-width: 150px;
    }

    /* Icons */
    .icons {
        display: flex;
        align-items: center;
        gap: 15px;
    }

    .icon {
        font-size: 28px;
        color: #000;
        position: relative;
    }

    /* Badge do carrinho */
    .sidebar-filter .cart-products-count {
        border-radius: 50%;
        height: 20px;
        width: 20px;
        background: #a98363;
        color: #fff;
        font-size: 11px;
        position: absolute;
        top: -8px;
        right: -12px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
}

/* ---------- Menu lateral mobile ---------- */
.mobile-menu {
    position: absolute;
    top: 60px;
    left: 0;
    width: 100%;
    background: #fff;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    padding: 15px;
    z-index: 9999;
}

.mobile-menu ul {
    list-style: none;
    padding-left: 0;
    margin: 0;
}

.mobile-menu ul li {
    margin-bottom: 10px;
}

.mobile-menu ul li ul {
    margin-top: 5px;
    margin-left: 15px;
}

/* Accordion-style categorias */
.accordion-menu {
    list-style: none;
    margin: 0;
    padding: 0;
}

.accordion-item {
    border-bottom: 1px solid #eee;
}

.accordion-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 15px;
    cursor: pointer;
    background-color: #fff;
    font-weight: 500;
}

.accordion-header span {
    flex: 1;
}

.accordion-header .toggle-btn {
    background: none;
    border: none;
    font-size: 18px;
    font-weight: bold;
    cursor: pointer;
}

.accordion-body {
    display: none;
    padding: 0 15px 10px;
}

.accordion-body li {
    margin: 6px 0;
}

.accordion-body li a {
    text-decoration: none;
    color: #333;
    font-size: 14px;
}

/* Texto "Sem Subcategorias" */
.sem-sub {
    color: #888;
    font-size: 14px;
}




/* FIM DO GERAL */

/* INICIO DO PRODUTO DETALHE */

   .product-gallery {
    position: relative;
}

.on-sale {
    position: absolute;
    top: 10px;
    left: 10px;
    background: #4CAF50;
    color: white;
    padding: 5px 10px;
    font-weight: bold;
    border-radius: 4px;
    z-index: 10;
}

.swiper {
    width: 100%;
    margin-bottom: 15px;
}

.main-swiper img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    object-fit: cover;
}

.thumb-swiper .swiper-slide {
    width: 80px;
    height: 80px;
    opacity: 0.5;
    cursor: pointer;
    border-radius: 8px;
    overflow: hidden;
}

.thumb-swiper .swiper-slide-thumb-active {
    opacity: 1;
    border: 2px solid #a98363;
}

  .on-sale {
                    background-color: green;
                    color: var(--whiteColor);
                    padding: 2px 12px;
                    left: 10px;
                    top: 10px;
                    font-size: 20px;
                    font-weight: 600;
                    float: right;
                    margin-right: 10px;
                    margin-top: 10px;
                    border-radius: 5px;
                }

                .products-details-thumbs-image-slides {
    list-style: none;
    padding-left: 0; /* remove indentação padrão */
    margin: 0;        /* opcional, para eliminar espaço extra */
}


/* FIM DO PRODUTO DETALHE */

/* INICIO CARRINHO */

.cart-item {
                    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
                    background-color: #fff;
                    margin-bottom: 20px;
                    border-radius: 8px;
                    padding: 15px;
                }

                .cart-totals {
                    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
                    background-color: #fff;
                }

                .quantity-control input {
                    width: 40px;
                    height: 40px;
                    text-align: center;
                    border: 1px solid #ddd;
                    border-radius: 5px;
                }

/* FIM CARRINHO */

/* INICIO CHECKOUT */

.navbar {
    display: flex;
    padding: 10px;
    /*border-bottom: 1px solid #ccc;*/
    justify-content: center;
    gap: 20px;
}

.navbar button {
    background-color: #d1b38e;
    border: none;
    color: white;
    padding: 10px 20px;
    font-size: 16px;
    cursor: pointer;
    border-radius: 5px;
}

.navbar button.active {
    background-color: #ad8c66;
}

.navbar button:hover {
    background-color: #ad8c66;
}


.step-header {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 10px;
}

.step-content {
    display: none;
}

.step.active .step-content,
.step.completed .step-content {
    display: block;
}

.button {
    background-color: #a98363;
    border: none;
    color: white;
    padding: 10px 20px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    margin: 10px 0;
    cursor: pointer;
    border-radius: 5px;
}

.button:disabled {
    background-color: #ccc;
    cursor: not-allowed;
}

.minimize-icon {
    cursor: pointer;
    float: right;
    font-size: 20px;
    margin-top: -10px;
    margin-right: 10px;
}

.details {
    display: none;
    /* Esconder detalhes por padrão */
}

.details.open {
    display: block;
    /* Mostrar detalhes se a classe 'open' estiver presente */
}

.details.closed {
    display: none;
    /* Confirmar que detalhes fechados estão escondidos */
}

.order-confirmation {
    background: #f9f9f9;
    padding: 20px;
    border: 1px solid #ddd;
    border-radius: 5px;
    margin-bottom: 20px;
}

.order-confirmation h3 {
    color: #5a5a5a;
}

.payment-details ul {
    list-style: none;
    padding: 0;
}

.payment-details ul li {
    margin: 5px 0;
}

.reference-validity {
    color: #f00;
    font-weight: bold;
    margin-top: 10px;
}

.btn-primary {
    background-color: #007bff;
    color: #fff;
    border: none;
    padding: 10px 15px;
    border-radius: 5px;
    cursor: pointer;
}

.order-summary {
    background: #f9f9f9;
    padding: 20px;
    border: 1px solid #ddd;
    border-radius: 5px;
}

.order-summary h4 {
    border-bottom: 2px solid #ddd;
    padding-bottom: 10px;
    margin-bottom: 20px;
}

.order-items li {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
}

.order-totals p {
    display: flex;
    justify-content: space-between;
}

.order-totals .total {
    font-size: 18px;
    font-weight: bold;
}

.enderecos-nome {
    font-size: 15px;
}

.checkout-itens {
    padding: 30px;
    border: 1px solid #eeeeee;
    margin-top: 5px;
    margin-left: auto;
    background-color: #f6f1e7;
    border-radius: 25px;
}

.h2-section {
    color: #a98363;
    font-size: 21px;
}

.section {
    margin-bottom: 20px;
    padding: 10px;
    border: 1px solid #ddd;
}

.hidden {
    display: none;
}


.delivery-option {
    background-color: #fff;
    border-radius: 17px;
    border-right: unset;
    align-items: center;
    margin-left: 0 !important;
    margin-right: 0 !important;
    padding: .9375rem 0;
    margin-bottom: .9375rem;
    min-height: 80px;
}

.carriere-name-container {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 0 20px;
    word-break: break-word;
    text-align: left;
    vertical-align: middle;
    margin: 0;
}

.carrier-name {
    font-size: 15px;
    line-height: 19px;
    color: #5f5f5f;
    margin: 0;
}

.delivery-option-price {
    display: flex;
    justify-content: center;
    padding-right: 0;
    align-items: center;
}

.carrier-delay {
    display: inline-block;
    word-break: break-word;
    text-align: left;
    vertical-align: middle;
    margin: 0;
}

.carrier-hasLogo {
    align-items: center;
}

/* FIM CHECKOUT */