/* ==========================================================
AVIÃO BRANCO NEXT - CSS AUDITADO    Estrutura: variáveis, header, home, cards, produto, conta e mobile.    ========================================================== */

/* 01 - VARIÁVEIS E BASE */
:root {
    --ab-bg:#eef3f7;
    --ab-card:#ffffff;
    --ab-text:#06172f;
    --ab-muted:#5d6b7c; 
    
    --ab-blue:#04b2ca;
    --ab-blue-2:#007bd3;
    
    --ab-search-border:#04b2ca;
    --ab-search-bg:#ffffff;
    --ab-search-text:#4b5563;
    --ab-search-placeholder:#8a94a6;
    --ab-search-button:#04b2ca;
    --ab-search-icon:#ffffff;
    --ab-search-button-hover:#04b2ca;
    
    --ab-yellow:#ffe600;
    --ab-green:#00b84f;
    --ab-green-2:#00913d;
    --ab-red:#d71920;
    --ab-border:#e2edf5;
    --ab-radius:18px;
    --ab-radius-lg:24px;
    --ab-shadow:0 10px 28px rgba(15,40,80,.08);
    --ab-container:1320px;
    --ab-gap:18px;
}
html,body {
    overflow-x:hidden;
}
body {
    background:var(--ab-bg)!important;
    color:var(--ab-text);
}
*,*:before,*:after {
    box-sizing:border-box;
}
a {
    text-decoration:none!important;
}

body.home .site-footer, body.front-page .site-footer {
    display:none!important;
}

body:not(.home):not(.front-page) .site-footer, body:not(.home):not(.front-page) footer.site-footer, body:not(.home):not(.front-page) footer {
    display:none!important;
}
.site-header,.desktop-header,.handheld-header,.mobile-header-v1,.electro-navbar, .departments-menu,.top-bar,.header-v5,.navbar-primary, body .header-v1,body .header-v2,body .header-v3,body .header-v4,body .header-v5 {
    display:none!important;
}
.ab-container, .ab-global-header, .ab-home-new, .ab-home-wrap, .ab-products-block, .ab-clean-product-hero, .ab-product-info-modern, .ab-related-home-section, .woocommerce-account .site-content .container, .woocommerce-account .entry-content, .woocommerce-account .woocommerce, .ab-footer-premium {
    width:min(var(--ab-container), calc(100vw - 32px));
    margin-left:auto!important;
    margin-right:auto!important;
}

/* 02 - HEADER GLOBAL */
.ab-home-new,.ab-global-header {
    font-family:Arial,Helvetica,sans-serif;
    color:var(--ab-text);
}
.ab-global-header {
    margin-top:12px;
    margin-bottom:20px;
    border-radius:var(--ab-radius);
    overflow:visible;
}
.ab-top-blue {
    background:var(--ab-blue);
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    gap:18px;
    padding:10px 14px;
    font-size:13px;
    font-weight:900;
    white-space:nowrap;
    overflow-x:auto;
    border-radius:var(--ab-radius) var(--ab-radius) 0 0;
}
.ab-top-blue a,.ab-top-blue span {
    color:#fff!important;
}
.ab-main-head {
    background:#fff;
    display:grid;
    grid-template-columns:190px minmax(0,1fr);
    gap:18px;
    align-items:center;
    padding:16px 18px;
    border-radius:0 0 var(--ab-radius) var(--ab-radius);
    box-shadow:var(--ab-shadow);
}
.ab-logo-box {
    display:flex;
    align-items:center;
    min-width:0;
    color:var(--ab-blue)!important;
    font-size:22px;
    font-weight:900;
    line-height:1;
}
.ab-logo-box img {
    display:block;
    max-width:170px;
    max-height:62px;
    object-fit:contain;
}
.ab-search{
    height:52px;
    display:flex;
    border:2px solid var(--ab-search-border) !important;
    border-radius:999px;
    background:var(--ab-search-bg) !important;
    overflow:visible;
    position:relative;
    z-index:50;
}

.ab-search-wrap{
    flex:1;
    min-width:0;
    position:relative;
    height:100%;
}

.ab-search input{
    width:100%;
    height:100%;
    border:0;
    outline:0;
    background:transparent !important;
    padding:0 16px;
    font-size:16px;
    font-weight:800;
    color:var(--ab-search-text) !important;
}

.ab-search input::placeholder{
    color:var(--ab-search-placeholder) !important;
    opacity:1;
}

.ab-search button{
    width:64px;
    min-width:64px;
    border:0;
    border-radius:0 999px 999px 0;
    background:var(--ab-search-button) !important;
    color:var(--ab-search-icon) !important;
    font-size:20px;
    font-weight:900;
    display:flex;
    align-items:center;
    justify-content:center;
}

.ab-search button:hover{
    background:var(--ab-search-button-hover) !important;
}
.ab-live-results {
    display:none;
    position:absolute;
    left:0;
    right:-64px;
    top:calc(100% + 8px);
    background:#fff;
    border:1px solid var(--ab-border);
    border-radius:16px;
    box-shadow:0 18px 42px rgba(0,0,0,.16);
    padding:6px;
    z-index:999999;
}
.ab-live-results.active {
    display:block;
}
.ab-live-item {
    display:flex;
    align-items:center;
    gap:12px;
    padding:10px;
    border-radius:12px;
    color:var(--ab-text)!important;
}
.ab-live-item:hover {
    background:#f4fbff;
}
.ab-live-item img {
    width:46px;
    height:46px;
    object-fit:contain;
    flex:0 0 46px;
}
.ab-live-title {
    font-size:14px;
    font-weight:900;
    line-height:1.2;
}
.ab-live-empty {
    padding:12px;
    font-size:13px;
    font-weight:800;
    color:var(--ab-muted);
}

/* 03 - HOME */
.ab-home-new {
    background:var(--ab-bg);
}
.ab-home-new .ab-top-blue,.ab-home-new .ab-main-head {
    width:100%;
}
.ab-home-wrap {
    padding:18px 0 42px;
}
.ab-banner-slider {
    width:100%;
    overflow:hidden!important;
    margin:0 0 24px!important;
    border-radius:var(--ab-radius);
    background:transparent!important;
    box-shadow:none!important;
}
.ab-banner-track {
    display:flex!important;
    width:300%!important;
    animation:abBannerSlide 12s infinite;
}
.ab-banner-slide {
    display:block!important;
    width:33.3333%!important;
    flex:0 0 33.3333%!important;
}
.ab-banner-slide img {
    width:100%!important;
    height:auto!important;
    display:block!important;
    object-fit:contain!important;
}
@keyframes abBannerSlide {
    0%,30%,100% {
        transform:translateX(0)
    }
    35%,63% {
        transform:translateX(-33.3333%)
    }
    68%,96% {
        transform:translateX(-66.6666%)
    }
}
.ab-title-row {
    display:flex;
    justify-content:space-between;
    align-items:center;
    margin:30px 0 14px;
    gap:12px;
}
.ab-title-row h2 {
    margin:0;
    font-size:25px;
    font-weight:900;
    color:var(--ab-text);
}
.ab-title-row a {
    color:var(--ab-blue);
    font-weight:900;
}
.ab-fire-title {
    background:linear-gradient(90deg,var(--ab-blue-2),var(--ab-blue));
    -webkit-background-clip:text;
    -webkit-text-fill-color:transparent;
}
.ab-cat-grid {
    display:grid;
    grid-template-columns:repeat(4,minmax(0,1fr));
    gap:14px;
}
.ab-cat-grid a {
    background:#fff;
    border:1px solid var(--ab-border);
    border-radius:var(--ab-radius);
    min-height:145px;
    display:flex;
    flex-direction:column;
    justify-content:space-between;
    align-items:center;
    text-align:center;
    overflow:hidden;
    color:#073b5a!important;
    box-shadow:var(--ab-shadow);
}
.ab-cat-icon-img {
    width:100%!important;
    height:105px!important;
    object-fit:contain!important;
    padding:8px!important;
    background:#fff!important;
}
.ab-cat-grid strong {
    width:calc(100% - 16px);
    margin:8px;
    padding:8px;
    background:linear-gradient(135deg,var(--ab-blue),var(--ab-blue-2));
    color:#fff!important;
    border-radius:10px;
    font-size:13px;
    font-weight:900;
    line-height:1.1;
    display:flex;
    align-items:center;
    justify-content:center;
    min-height:32px;
}
.ab-products-block {
    margin-top:28px;
}
.ab-products-block ul.products {
    display:none!important;
}
.ab-final-cta {
    margin:36px 0 0;
    background:linear-gradient(135deg,#073b5a,#006f91);
    border-radius:var(--ab-radius-lg);
    padding:34px 18px;
    text-align:center;
}
.ab-final-cta h2 {
    color:#fff;
    font-size:30px;
    font-weight:900;
    margin:0 0 22px;
}
.ab-final-cta a {
    display:inline-flex;
    align-items:center;
    justify-content:center;
    background:var(--ab-green);
    color:#fff!important;
    min-width:min(430px,100%);
    min-height:60px;
    border-radius:12px;
    font-size:17px;
    font-weight:900;
    padding:0 18px;
}
.ab-footer-premium {
    background:#fff;
    border:1px solid var(--ab-border);
    border-radius:var(--ab-radius-lg);
    box-shadow:var(--ab-shadow);
    text-align:center;
    margin-top:22px!important;
    margin-bottom:24px!important;
    padding:30px 18px;
    color:var(--ab-text);
}
.ab-footer-premium img {
    max-width:170px;
    max-height:70px;
    object-fit:contain;
    margin:0 auto 12px;
    display:block;
}
.ab-footer-slogan {
    font-size:15px;
    color:var(--ab-muted);
    margin:8px auto 16px;
}
.ab-footer-items {
    display:flex;
    justify-content:center;
    gap:10px;
    flex-wrap:wrap;
    margin-bottom:14px;
}
.ab-footer-items span {
    background:#eefaff;
    color:var(--ab-blue-2);
    border-radius:999px;
    padding:8px 12px;
    font-size:12px;
    font-weight:900;
}
.ab-footer-email,.ab-footer-copy,.ab-footer-rights {
    margin:7px 0;
    font-size:13px;
    color:var(--ab-muted);
}

/* 04 - CARDS E CATEGORIAS */
.ab-custom-products,body.woocommerce ul.products,.ab-related-home-carousel {
    display:grid!important;
    grid-template-columns:repeat(4,minmax(0,1fr))!important;
    gap:var(--ab-gap)!important;
    padding:0!important;
    width:100%!important;
    margin:0!important;
}
.ab-product-card,body.woocommerce ul.products li.product {
    background:#fff!important;
    border:1px solid var(--ab-border)!important;
    border-radius:16px!important;
    padding:16px!important;
    display:flex!important;
    flex-direction:column!important;
    box-shadow:var(--ab-shadow)!important;
    overflow:visible!important;
    min-height:0!important;
    height:auto!important;
    width:100%!important;
max-width:none!important;
min-width:0!important;
    margin:0!important;
}
.ab-product-link {
    display:block;
    color:var(--ab-text)!important;
}
.ab-product-img,body.woocommerce ul.products li.product .product-loop-body,body.woocommerce ul.products li.product .product-image {
    min-height:175px;
    height:auto;
    display:flex;
    align-items:center;
    justify-content:center;
    margin-bottom:10px;
    position:relative;
}
.ab-product-img img,body.woocommerce ul.products li.product img {
    max-width:100%!important;
    max-height:170px!important;
    object-fit:contain!important;
    display:block!important;
    margin:0 auto!important;
}
.ab-fav-btn{
    position:absolute;
    top:8px;
    right:8px;
    width:auto !important;
    height:auto !important;
    min-width:0 !important;
    min-height:0 !important;
    border:0 !important;
    border-radius:0 !important;
    background:transparent !important;
    box-shadow:none !important;
    color:#63b3ed !important;
    font-size:24px !important;
    font-weight:900 !important;
    line-height:1 !important;
    display:block !important;
    z-index:3;
    cursor:pointer;
    padding:0 !important;
    margin:0 !important;
}
.ab-fav-btn.active {
    color:#e91e63;
}
.ab-product-badge {
    display:inline-flex;
    align-items:center;
    justify-content:center;
    width:max-content;
    background:linear-gradient(135deg,var(--ab-blue),var(--ab-blue-2));
    color:#fff;
    border-radius:8px;
    padding:6px 11px;
    font-size:11px;
    font-weight:900;
    line-height:1;
    margin:0 0 12px;
}
.ab-product-card h3,body.woocommerce ul.products li.product .woocommerce-loop-product__title,body.woocommerce ul.products li.product h2,body.woocommerce ul.products li.product h3 {
    color:var(--ab-text)!important;
    font-size:16px!important;
    line-height:1.28!important;
    font-weight:900!important;
    min-height:0!important;
    margin:0 0 14px!important;
    text-align:left!important;
}
.ab-buy-label {
    font-size:14px;
    color:var(--ab-muted);
    font-weight:800;
    margin-bottom:3px;
}
.ab-product-price,body.woocommerce ul.products li.product .price {
    display:flex!important;
    flex-direction:column!important;
    align-items:flex-start!important;
    justify-content:flex-start!important;
    margin:0 0 10px!important;
    min-height:0!important;
}
.ab-old-price,body.woocommerce ul.products li.product .price del,body.woocommerce ul.products li.product del .amount {
    color:var(--ab-red)!important;
    opacity:1!important;
    font-size:12px!important;
    font-weight:800!important;
    text-decoration:line-through!important;
    white-space:nowrap!important;
    line-height:1.1!important;
    margin-bottom:2px!important;
}
.ab-new-price,body.woocommerce ul.products li.product .price ins .amount,body.woocommerce ul.products li.product .price>.amount {
    color:var(--ab-blue)!important;
    font-size:28px!important;
    font-weight:900!important;
    white-space:nowrap!important;
    line-height:1!important;
}
.ab-new-price small {
    font-size:14px;
    font-weight:900;
}
.ab-card-proof {
    display:flex;
    flex-direction:column;
    gap:2px;
    margin:4px 0 10px;
}
.ab-card-proof span {
    color:#ffb300;
    font-size:12px;
    letter-spacing:1px;
}
.ab-card-proof small {
    color:var(--ab-muted);
    font-size:11px;
    font-weight:800;
    line-height:1.2;
}
.ab-card-actions {
    margin-top:auto;
    width:100%;
}
.ab-view-btn {
    width:100%!important;
    min-height:42px!important;
    border-radius:10px!important;
    background:linear-gradient(135deg,var(--ab-blue),var(--ab-blue-2))!important;
    color:#fff!important;
    display:flex!important;
    align-items:center!important;
    justify-content:center!important;
    font-size:13px!important;
    font-weight:900!important;
    margin:8px 0!important;
    padding:0 8px;
}
.ab-whatsapp-btn {
    width:100%!important;
    min-height:52px!important;
    border-radius:12px!important;
    background:linear-gradient(135deg,var(--ab-green),var(--ab-green-2))!important;
    color:#fff!important;
    display:flex!important;
    align-items:center!important;
    justify-content:center!important;
    gap:10px!important;
    font-size:13px!important;
    font-weight:900!important;
    line-height:1.08!important;
    text-align:center!important;
    text-transform:uppercase!important;
    padding:8px 10px!important;
}
body.woocommerce ul.products li.product .hover-area,body.woocommerce ul.products li.product .loop-action,body.woocommerce ul.products li.product .product-loop-footer,body.woocommerce ul.products li.product .add-to-cart-wrap {
    display:none!important;
}
.woocommerce-pagination,nav.woocommerce-pagination {
    display:none!important;
}
.electro-ml-infinite-status {
    display:flex;
    justify-content:center;
    align-items:center;
    min-height:56px;
    color:var(--ab-muted);
    font-size:13px;
    font-weight:800;
}
.electro-ml-spinner {
    width:24px;
    height:24px;
    border:3px solid #dbeaf3;
    border-top-color:var(--ab-blue);
    border-radius:50%;
    display:inline-block;
    animation:abSpin .8s linear infinite;
}
@keyframes abSpin {
    to {
        transform:rotate(360deg)
    }
}

/* 05 - PRODUTO */
body.single-product div.product {
    background:transparent!important;
    box-shadow:none!important;
    border:0!important;
    padding:0!important;
}
/* REMOVER ELEMENTOS PADRÃO WOOCOMMERCE NA PÁGINA DE PRODUTO */

body.single-product .product-images-wrapper,
body.single-product .product-actions-wrapper,
body.single-product div.product .summary.entry-summary,
body.single-product div.product .images,
body.single-product div.product .woocommerce-product-gallery,
body.single-product .electro-wc-product-gallery,
body.single-product .section-onsale-product,
body.single-product form.cart,
body.single-product .product_meta,
body.single-product .woocommerce-tabs,
body.single-product .wc-tabs-wrapper,
body.single-product #tab-description,
body.single-product #tab-additional_information,
body.single-product #tab-reviews,
body.single-product section.related.products,
body.single-product section.upsells.products{
    display:none!important;
    height:0!important;
    min-height:0!important;
    margin:0!important;
    padding:0!important;
    overflow:hidden!important;
}
.ab-clean-product-hero {
    display:grid;
    grid-template-columns:minmax(0,1fr) minmax(0,1fr);
    gap:var(--ab-gap);
    margin-top:18px!important;
    margin-bottom:24px!important;
    align-items:flex-start;
}
.ab-clean-media-card,.ab-clean-info-card,.ab-desc-modern-card {
    background:#fff;
    border:1px solid var(--ab-border);
    border-radius:var(--ab-radius-lg);
    box-shadow:var(--ab-shadow);
    padding:28px;
    position:relative;
}
.ab-clean-media-card {
    display:flex;
    align-items:center;
    justify-content:center;
    min-height:auto;
}
.ab-product-gallery {
    width:100%;
}
.ab-product-gallery-main {
    display:flex;
    align-items:center;
    justify-content:center;
    min-height:300px;
}
.ab-clean-product-img {
    max-width:100%;
    max-height:300px;
    width:auto;
    height:auto;
    object-fit:contain;
    display:block;
    margin:0 auto;
}
.ab-product-gallery-thumbs {
    display:flex;
    gap:10px;
    justify-content:center;
    margin-top:18px;
    flex-wrap:wrap;
}
.ab-product-gallery-thumb {
    width:62px;
    height:62px;
    border:1px solid var(--ab-border);
    border-radius:12px;
    background:#fff;
    padding:5px;
    display:flex;
    align-items:center;
    justify-content:center;
    cursor:pointer;
}
.ab-product-gallery-thumb.is-active {
    border-color:var(--ab-blue);
    box-shadow:0 0 0 2px rgba(4,178,202,.12);
}
.ab-product-gallery-thumb img {
    max-width:100%;
    max-height:100%;
    object-fit:contain;
}
.ab-clean-info-card {
    display:flex;
    flex-direction:column;
    justify-content:center;
}
.ab-clean-category,.ab-clean-category a {
    font-size:12px;
    font-weight:900;
    color:var(--ab-blue-2)!important;
    text-transform:uppercase;
    margin-bottom:10px;
}
.ab-clean-title {
    font-size:34px;
    line-height:1.12;
    font-weight:900;
    letter-spacing:-.4px;
    margin:0 0 18px;
    color:var(--ab-text);
}
.ab-clean-badges {
    display:flex;
    gap:8px;
    flex-wrap:wrap;
    margin-bottom:14px;
}
.ab-clean-badges span {
    background:#eaf9ff;
    color:var(--ab-blue-2);
    border:1px solid #bfeeff;
    border-radius:999px;
    padding:7px 12px;
    font-size:12px;
    font-weight:900;
}
.ab-clean-shortdesc {
    background:#f7fbff;
    border-radius:14px;
    padding:14px;
    color:#34445a;
    font-size:15px;
    line-height:1.5;
    margin-bottom:14px;
}
.ab-review-modern-card{
    background:#ffffff;
    border:1px solid #ffffff;
    border-radius:14px;
    padding:12px;
    margin-bottom:16px;
    display:flex;
    align-items:center;
      justify-content:center;
    gap:6px;
}

.ab-review-stars{
    color:#ffb300;
    font-size:14px;
    letter-spacing:1px;
    font-weight:900;
    line-height:1;
    flex-shrink:0;
}

.ab-review-text{
    color:#1d1c1b;
    font-size:12px;
    font-weight:900;
    margin-top:0;
    line-height:1;
}
.ab-clean-price-block {
    margin:0 0 16px;
}
.ab-clean-price-main {
    color:var(--ab-blue);
    font-size:38px;
    font-weight:900;
    line-height:1;
}
.ab-clean-price-old {
    color:var(--ab-red);
    font-size:14px;
    font-weight:800;
    text-decoration:line-through;
    margin-top:4px;
}
.ab-clean-whatsapp-btn {
    width:100%;
    min-height:58px;
    border-radius:14px;
    background:linear-gradient(135deg,var(--ab-green),var(--ab-green-2));
    color:#fff!important;
    display:flex;
    align-items:center;
    justify-content:center;
    text-align:center;
    font-size:14px;
    font-weight:900;
    text-transform:uppercase;
    padding:10px 16px;
}
.ab-product-info-modern {
    margin-top:0!important;
    margin-bottom:24px!important;
}
.ab-desc-modern-card h2 {
    font-size:24px;
    margin:0 0 14px;
    font-weight:900;
    color:var(--ab-text);
}
.ab-desc-preview,.ab-desc-full-text {
    color:#2e4056;
    font-size:15px;
    line-height:1.58;
}
.ab-desc-toggle {
    margin-top:14px;
    width:100%;
    min-height:48px;
    border:0;
    border-radius:12px;
    background:linear-gradient(135deg,var(--ab-blue),var(--ab-blue-2));
    color:#fff;
    font-size:13px;
    font-weight:900;
    cursor:pointer;
}
.ab-related-home-section {
    width:min(var(--ab-container), calc(100vw - 32px))!important;
    margin:24px auto 42px!important;
}
.ab-related-title-row {
    margin:0 0 14px;
}
.ab-related-title-row h2 {
    font-size:24px;
    font-weight:900;
    margin:0;
    color:var(--ab-text);
}
.ab-mobile-fixed-whatsapp {
    display:none;
}

/* Remover card padrão de estoque/preço/compra do WooCommerce */
body.single-product form.cart,
body.single-product div.product form.cart,
body.single-product .summary form.cart,
body.single-product .woocommerce-variation-add-to-cart,
body.single-product .single_variation_wrap,
body.single-product .stock,
body.single-product .availability,
body.single-product .electro-stock,
body.single-product .product-actions-wrapper{
    display:none !important;
}

/* 06 - MINHA CONTA, LOGIN E CADASTRO */
.woocommerce-account .woocommerce,.woocommerce-account .entry-content>.woocommerce {
    background:#fff;
    border:1px solid var(--ab-border);
    border-radius:var(--ab-radius-lg);
    box-shadow:var(--ab-shadow);
    padding:24px;
    margin-top:22px!important;
    margin-bottom:36px!important;
}
.woocommerce-account .woocommerce-MyAccount-navigation {
    width:260px!important;
    float:left!important;
    margin-right:24px!important;
}
.woocommerce-account .woocommerce-MyAccount-navigation ul {
    list-style:none;
    margin:0;
    padding:0;
    display:flex;
    flex-direction:column;
    gap:8px;
}
.woocommerce-account .woocommerce-MyAccount-navigation a {
    display:block;
    background:#f3f9fd;
    color:var(--ab-text)!important;
    border-radius:12px;
    padding:13px 14px;
    font-weight:900;
}
.woocommerce-account .woocommerce-MyAccount-navigation .is-active a {
    background:linear-gradient(135deg,var(--ab-blue),var(--ab-blue-2));
    color:#fff!important;
}
.woocommerce-account .woocommerce-MyAccount-content {
    overflow:hidden;
    background:#fbfdff;
    border:1px solid var(--ab-border);
    border-radius:16px;
    padding:20px;
    min-height:260px;
}
.woocommerce form.login,.woocommerce form.register,.woocommerce form.lost_reset_password {
    max-width:560px;
    margin:24px auto!important;
    background:#fff;
    border:1px solid var(--ab-border);
    border-radius:var(--ab-radius-lg);
    box-shadow:var(--ab-shadow);
    padding:24px!important;
}
.woocommerce form .form-row input.input-text,
.woocommerce form .form-row textarea,
.woocommerce form .form-row select,
input[type="text"],
input[type="email"],
input[type="password"],
input[type="tel"],
select,
textarea{
    border:1px solid #dbe7f2!important;
    border-radius:12px!important;
    min-height:46px!important;
    padding:0 12px!important;
    font-size:16px!important;
}
.woocommerce button.button,.woocommerce a.button,.woocommerce input.button {
    background:linear-gradient(135deg,var(--ab-blue),var(--ab-blue-2))!important;
    color:#fff!important;
    border:0!important;
    border-radius:12px!important;
    min-height:46px!important;
    font-weight:900!important;
    padding:0 18px!important;
}

/* 07 - MOBILE */
@media(max-width:768px) {
    :root {
        --ab-gap:12px;
    }
    .ab-container,.ab-global-header,.ab-home-new,.ab-home-wrap,.ab-products-block,.ab-clean-product-hero,.ab-product-info-modern,.ab-related-home-section,.woocommerce-account .woocommerce,.woocommerce-account .entry-content,.ab-footer-premium {
        width:calc(100vw - 16px);
    }
    .ab-global-header {
        margin-top:8px;
        margin-bottom:14px;
        border-radius:14px;
    }
    .ab-top-blue {
        justify-content:flex-start;
        gap:14px;
        padding:8px 10px;
        font-size:12px;
        border-radius:14px 14px 0 0;
    }
    .ab-main-head {
        grid-template-columns:86px minmax(0,1fr);
        gap:8px;
        padding:10px;
        border-radius:0 0 14px 14px;
    }
    .ab-logo-box img {
        max-width:82px;
        max-height:34px;
    }
    .ab-search {
        height:40px;
        overflow:hidden;
        border:1px solid #d9e5ef;
    }
   .ab-search input,
.ab-search input[type="search"],
#ab-live-search-input{
    width:100%;
    height:100%;
    border:0 !important;
    border-right:0 !important;
    outline:0 !important;
    box-shadow:none !important;
    background:transparent !important;
    padding:0 16px;
    font-size:16px;
    font-weight:800;
    color:var(--ab-search-text);
}
    .ab-search button {
        width:42px;
        min-width:42px;
        height:40px;
        background:var(--ab-blue);
        color:#fff;
        font-size:15px;
    }
    .ab-live-results {
        left:-94px;
        right:0;
        top:calc(100% + 8px);
        width:calc(100vw - 20px);
    }
    .ab-live-item {
        padding:9px;
        gap:10px;
    }
    .ab-live-item img {
        width:42px;
        height:42px;
        flex-basis:42px;
    }
    .ab-live-title {
        font-size:13px;
    }
    .ab-home-wrap {
        padding:12px 0 34px;
    }
    .ab-banner-slider {
        border-radius:14px;
        margin-bottom:16px!important;
    }
    .ab-title-row {
        margin:24px 0 12px;
    }
    .ab-title-row h2 {
        font-size:20px;
    }
    .ab-title-row a {
        font-size:13px;
    }
    .ab-cat-grid {
        grid-template-columns:repeat(4,minmax(0,1fr));
        gap:8px;
    }
    .ab-cat-grid a {
        min-height:92px;
        border-radius:14px;
    }
  .ab-cat-icon-img {
    height:58px!important;
    object-fit:contain!important;
    padding:4px!important;
}
    .ab-cat-grid strong {
        font-size:10px;
        margin:5px;
        padding:5px 3px;
        min-height:26px;
        border-radius:8px;
    }
    .ab-custom-products,body.woocommerce ul.products,.ab-related-home-carousel {
        grid-template-columns:repeat(2,minmax(0,1fr))!important;
        gap:12px!important;
    }
    .ab-product-card,
    body.woocommerce ul.products li.product {
        padding:10px!important;
        border-radius:14px!important;
        justify-content:flex-start!important;
align-content:flex-start!important;
    }
    .ab-product-img,body.woocommerce ul.products li.product .product-loop-body,body.woocommerce ul.products li.product .product-image {
        min-height:118px!important;
        margin-bottom:8px!important;
    }
    .ab-product-img img,body.woocommerce ul.products li.product img {
        max-height:112px!important;
    }
    .ab-fav-btn{
    width:auto !important;
    height:auto !important;
    min-width:0 !important;
    min-height:0 !important;
    font-size:22px !important;
    top:7px;
    right:7px;
    background:transparent !important;
    box-shadow:none !important;
    padding:0 !important;
}
    .ab-product-badge {
        font-size:8px;
        padding:5px 7px;
        border-radius:7px;
        margin-bottom:8px;
    }
    .ab-product-card h3,body.woocommerce ul.products li.product .woocommerce-loop-product__title,body.woocommerce ul.products li.product h2,body.woocommerce ul.products li.product h3 {
        font-size:12px!important;
        line-height:1.25!important;
        margin-bottom:9px!important;
    }
    .ab-buy-label {
        font-size:11px;
    }
    .ab-new-price,body.woocommerce ul.products li.product .price ins .amount,body.woocommerce ul.products li.product .price>.amount {
        font-size:21px!important;
    }
    .ab-old-price,body.woocommerce ul.products li.product .price del,body.woocommerce ul.products li.product del .amount {
        font-size:10px!important;
    }
    .ab-card-proof span {
        font-size:10px;
    }
    .ab-card-proof small {
        font-size:9px;
    }
    .ab-view-btn {
        min-height:35px!important;
        font-size:10px!important;
        border-radius:8px!important;
        margin:5px 0!important;
    }
    .ab-whatsapp-btn {
        min-height:46px!important;
        font-size:9px!important;
        border-radius:9px!important;
        gap:6px!important;
        padding:6px!important;
    }
    .ab-clean-product-hero {
        grid-template-columns:1fr;
        margin-top:10px!important;
        margin-bottom:16px!important;
        gap:12px;
    }
    .ab-clean-media-card,.ab-clean-info-card,.ab-desc-modern-card {
        border-radius:16px;
        padding:14px;
    }
    .ab-clean-media-card {
        min-height:0;
    }
    .ab-product-gallery-main {
    min-height:auto;
}
    .ab-clean-product-img {
        max-height:280px;
    }
    .ab-product-gallery-thumb {
        width:54px;
        height:54px;
    }
    .ab-clean-title {
        font-size:22px;
        line-height:1.16;
        margin-bottom:12px;
    }
    .ab-clean-shortdesc {
        font-size:13px;
        padding:12px;
    }
    .ab-clean-price-main {
        font-size:30px;
    }
    .ab-clean-whatsapp-btn {
        min-height:54px;
        font-size:12px;
    }
    .ab-mobile-fixed-whatsapp {
        position:fixed;
        left:0;
        right:0;
        bottom:0;
        z-index:999999;
        display:flex!important;
        align-items:center;
        justify-content:center;
        height:64px;
        background:linear-gradient(135deg,var(--ab-green),var(--ab-green-2));
        color:#fff!important;
        font-size:13px;
        font-weight:900;
        text-transform:uppercase;
        text-align:center;
        padding:0 14px;
        border-radius:18px 18px 0 0;
        box-shadow:0 -6px 20px rgba(0,0,0,.18);
    }
    body.single-product {
        padding-bottom:76px!important;
    }
    .woocommerce-account .woocommerce {
        padding:14px!important;
        margin-top:14px!important;
    }
    .woocommerce-account .woocommerce-MyAccount-navigation {
        width:100%!important;
        float:none!important;
        margin:0 0 14px!important;
    }
    .woocommerce-account .woocommerce-MyAccount-navigation ul {
        display:grid;
        grid-template-columns:repeat(2,minmax(0,1fr));
        gap:8px;
    }
    .woocommerce-account .woocommerce-MyAccount-navigation a {
        font-size:12px;
        text-align:center;
        padding:11px 8px;
    }
    .woocommerce-account .woocommerce-MyAccount-content {
        padding:14px;
    }
    .woocommerce form.login,.woocommerce form.register,.woocommerce form.lost_reset_password {
        padding:16px!important;
        margin:16px auto!important;
    }
    .ab-footer-premium {
        border-radius:18px;
        padding:22px 12px;
    }
    .ab-footer-items {
        gap:7px;
    }
    .ab-footer-items span {
        font-size:11px;
        padding:7px 9px;
    }
}
@media(min-width:1200px) {
    .ab-custom-products,body.woocommerce ul.products,.ab-related-home-carousel {
        grid-template-columns:repeat(4,minmax(0,1fr))!important;
    }
}
