body.package-plugin.hide-checkboxAll .checkboxAll {
    display: none;
}

body.package-plugin.hide-checkboxProd [data-produto-id] .checkboxProdCel {
    display: none !important;
}

body.package-plugin.hide-checkboxProd .package-theader {
    display: none !important;
}

body.package-plugin .tabela-carrinho th.package-theader {
    min-width: 145px;
    padding-left: 4px;
    padding-right: 4px;
}

body.package-plugin .tabela-carrinho .product-package .quantidade>a,
body.package-plugin .tabela-carrinho .product-package .excluir,
body.package-plugin .tabela-carrinho .product-package .atualizar-quantidade,
body.package-plugin .tabela-carrinho .product-package .checkboxProdCel>div {
    display: none !important;
}

body.package-plugin .tabela-carrinho .checkboxProdCel {
    text-align: center;
}

@media screen and (min-width: 768px) {
    body.package-plugin .tabela-carrinho .checkboxProdCel label[for=checkboxProd] {
        display: none;
    }
}

@media screen and (max-width: 767px) {
    body.package-plugin .tabela-carrinho .checkboxProdCel>div {
        display: flex;
        align-items: center;
        justify-content: center;
    }

    body.package-plugin .tabela-carrinho .checkboxProdCel>div label[for=checkboxProd] {
        margin-right: 7px;
        margin-bottom: 0;
    }

    body.package-plugin .tabela-carrinho .checkboxProdCel>div input.checkboxProd {
        margin: 0;
    }
}

body.package-plugin .checkboxAll {
    display: flex;
    justify-content: flex-end;
    margin-bottom: 12px;
    gap: 10px;
}

body.package-plugin .checkboxAll * {
    margin: 0;
}

/* Popup minimalista de escolha de brinde */
.gift-modal {
    position: fixed;
    inset: 0;
    display: none;
    z-index: 9999;
}

.gift-modal.is-open {
    display: block;
}

.gift-modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
}

.gift-modal-content {
    position: relative;
    max-width: 420px;
    margin: 80px auto;
    background: #fff;
    padding: 16px 18px 14px;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
}

.gift-modal-content h4 {
    margin: 0 0 10px;
    font-size: 16px;
    color: #000;
}

.gift-options {
    display: flex;
    flex-direction: column;
    gap: 8px;
    max-height: 260px;
    overflow-y: auto;
    margin-bottom: 10px;
}

.gift-option {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px;
    border-radius: 6px;
    border: 1px solid #eee;
    cursor: pointer;
    transition: all .15s ease;
}

.gift-option:hover {
    border-color: #999;
    transform: translateY(-1px);
}

.gift-option img {
    width: 48px;
    height: 48px;
    object-fit: cover;
    border-radius: 4px;
}

.gift-info strong {
    display: block;
    font-size: 14px;
    color: #000;
}

.gift-info span {
    font-size: 12px;
    color: #666;
    color: #000;
}

.gift-modal-close {
    border: none;
    background: #eee;
    padding: 6px 10px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 12px;
}