/* ACE PDP INSPIRATION V3 CLEAN START
   Escopo exclusivo: catalog-product-view.
   Base limpa, sem herdar V1/V2.
*/

html body.catalog-product-view {
    background: #f4f5f3 !important;
}

/* Remove espaçamento superior herdado do Magento/tema */
html body.catalog-product-view main.page-main,
html body.catalog-product-view .page-main,
html body.catalog-product-view .columns,
html body.catalog-product-view .column.main {
    width: 100% !important;
    max-width: none !important;
    margin-top: 0 !important;
    padding-top: 0 !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
}

/* Container PDP */
html body.catalog-product-view .ace-pdp-mock {
    width: min(1340px, calc(100vw - 96px)) !important;
    max-width: 1340px !important;
    margin: 26px auto 0 !important;
    box-sizing: border-box !important;
}

/* Breadcrumb/mapa do site: aproxima do menu */
html body.catalog-product-view .ace-pdp-breadcrumb,
html body.catalog-product-view .breadcrumbs {
    width: min(1340px, calc(100vw - 96px)) !important;
    max-width: 1340px !important;
    margin: 18px auto 12px !important;
    padding: 0 !important;
    min-height: 0 !important;
}

/* Topo em duas colunas */
@media (min-width: 1180px) {
    html body.catalog-product-view .ace-pdp-main {
        display: grid !important;
        grid-template-columns: 610px 560px !important;
        grid-template-areas:
            "gallery info"
            "gallery side" !important;
        column-gap: 72px !important;
        row-gap: 0 !important;
        align-items: start !important;
        justify-content: center !important;
        width: 100% !important;
    }

    html body.catalog-product-view .ace-pdp-gallery {
        grid-area: gallery !important;
        width: 610px !important;
        max-width: 610px !important;
        justify-self: end !important;
        position: sticky !important;
        top: 138px !important;
        z-index: 2 !important;
        border-radius: 24px !important;
        background: #fff !important;
        box-shadow: 0 20px 50px rgba(0,0,0,.075) !important;
        overflow: hidden !important;
        box-sizing: border-box !important;
    }

    html body.catalog-product-view .ace-pdp-info {
        grid-area: info !important;
        width: 560px !important;
        max-width: 560px !important;
        justify-self: start !important;
        padding: 30px 34px 22px !important;
        background: #fff !important;
        border: 1px solid rgba(0,0,0,.075) !important;
        border-bottom: 0 !important;
        border-radius: 24px 24px 0 0 !important;
        box-shadow: 0 18px 44px rgba(0,0,0,.075) !important;
        box-sizing: border-box !important;
    }

    html body.catalog-product-view .ace-pdp-side {
        grid-area: side !important;
        width: 560px !important;
        max-width: 560px !important;
        justify-self: start !important;
        margin-top: 0 !important;
        background: #fff !important;
        border: 1px solid rgba(0,0,0,.075) !important;
        border-top: 0 !important;
        border-radius: 0 0 24px 24px !important;
        box-shadow: 0 18px 44px rgba(0,0,0,.075) !important;
        overflow: hidden !important;
        box-sizing: border-box !important;
    }

    html body.catalog-product-view .ace-pdp-main-image,
    html body.catalog-product-view .ace-pdp-gallery-main {
        min-height: 520px !important;
        max-height: 550px !important;
        background: #fafafa !important;
        border-radius: 18px !important;
    }

    html body.catalog-product-view .ace-pdp-main-image img,
    html body.catalog-product-view .ace-pdp-gallery-main img {
        max-height: 490px !important;
        max-width: 88% !important;
        object-fit: contain !important;
    }

    html body.catalog-product-view .ace-pdp-thumbs {
        gap: 12px !important;
    }

    html body.catalog-product-view .ace-pdp-info h1,
    html body.catalog-product-view .ace-pdp-title {
        font-family: Montserrat, Arial, Helvetica, sans-serif !important;
        font-size: clamp(30px, 1.95vw, 38px) !important;
        line-height: 1.04 !important;
        font-weight: 950 !important;
        letter-spacing: -.04em !important;
        margin: 0 0 14px !important;
        color: #050608 !important;
    }

    html body.catalog-product-view .ace-pdp-price,
    html body.catalog-product-view .ace-pdp-price .price,
    html body.catalog-product-view .price-box .price {
        font-size: 30px !important;
        line-height: 1.05 !important;
        font-weight: 950 !important;
        color: #050608 !important;
    }

    html body.catalog-product-view .ace-pdp-cart-row {
        display: grid !important;
        grid-template-columns: 112px minmax(0, 1fr) !important;
        gap: 14px !important;
        align-items: center !important;
        margin-top: 16px !important;
    }

    html body.catalog-product-view .ace-pdp-cart-button {
        width: 100% !important;
        min-height: 54px !important;
        border-radius: 14px !important;
        background: #9cff00 !important;
        color: #050608 !important;
        font-family: Montserrat, Arial, Helvetica, sans-serif !important;
        font-weight: 950 !important;
    }

    html body.catalog-product-view .ace-pdp-favorite {
        min-height: 50px !important;
        border-radius: 14px !important;
        margin-top: 12px !important;
        font-family: Montserrat, Arial, Helvetica, sans-serif !important;
        font-weight: 850 !important;
    }

    html body.catalog-product-view .ace-pdp-benefits-grid {
        display: grid !important;
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    }

    html body.catalog-product-view .ace-pdp-benefit {
        min-height: 104px !important;
        padding: 16px 14px !important;
    }

    html body.catalog-product-view .ace-pdp-meta {
        padding: 18px 22px 18px !important;
    }
}

/* Ajuste para telas intermediárias */
@media (min-width: 1180px) and (max-width: 1500px) {
    html body.catalog-product-view .ace-pdp-mock,
    html body.catalog-product-view .ace-pdp-breadcrumb,
    html body.catalog-product-view .breadcrumbs {
        width: min(1240px, calc(100vw - 72px)) !important;
        max-width: 1240px !important;
    }

    html body.catalog-product-view .ace-pdp-main {
        grid-template-columns: 560px 520px !important;
        column-gap: 56px !important;
    }

    html body.catalog-product-view .ace-pdp-gallery {
        width: 560px !important;
        max-width: 560px !important;
    }

    html body.catalog-product-view .ace-pdp-info,
    html body.catalog-product-view .ace-pdp-side {
        width: 520px !important;
        max-width: 520px !important;
    }

    html body.catalog-product-view .ace-pdp-main-image,
    html body.catalog-product-view .ace-pdp-gallery-main {
        min-height: 490px !important;
        max-height: 520px !important;
    }

    html body.catalog-product-view .ace-pdp-main-image img,
    html body.catalog-product-view .ace-pdp-gallery-main img {
        max-height: 460px !important;
    }
}

/* Oculta bloco antigo de relacionados da lateral */
html body.catalog-product-view .ace-pdp-side .ace-pdp-related {
    display: none !important;
}

/* Oculta SKU visual no topo */
html body.catalog-product-view .ace-pdp-meta [data-ace-hide-sku],
html body.catalog-product-view .ace-pdp-meta .ace-hide-sku {
    display: none !important;
}

/* Você também pode gostar */
html body.catalog-product-view .ace-pdp-related-h11-exact {
    width: min(1180px, calc(100vw - 96px)) !important;
    max-width: 1180px !important;
    margin: 52px auto 30px !important;
    padding: 30px !important;
    border-radius: 28px !important;
    background: #fff !important;
    border: 1px solid rgba(0,0,0,.08) !important;
    box-shadow: 0 24px 58px rgba(0,0,0,.09) !important;
    box-sizing: border-box !important;
    position: relative !important;
    overflow: hidden !important;
}

html body.catalog-product-view .ace-pdp-related-h11-exact:before,
html body.catalog-product-view .ace-pdp-related-h11-exact:after,
html body.catalog-product-view .ace-pdp-related-h11-exact .ace-h11-products:before,
html body.catalog-product-view .ace-pdp-related-h11-exact .ace-h11-products:after,
html body.catalog-product-view .ace-pdp-related-h11-exact .ace-category-home-products-copy:before,
html body.catalog-product-view .ace-pdp-related-h11-exact .ace-category-home-products-copy:after {
    content: none !important;
    display: none !important;
    opacity: 0 !important;
    visibility: hidden !important;
}

html body.catalog-product-view .ace-pdp-related-h11-exact .ace-h11-section-head {
    position: relative !important;
    display: flex !important;
    align-items: flex-end !important;
    justify-content: space-between !important;
    gap: 24px !important;
    margin: 0 0 28px !important;
    padding: 0 0 16px !important;
    border-bottom: 1px solid rgba(0,0,0,.08) !important;
    background: transparent !important;
}

html body.catalog-product-view .ace-pdp-related-h11-exact .ace-h11-section-head:after {
    content: "" !important;
    position: absolute !important;
    left: 0 !important;
    bottom: -1px !important;
    width: 112px !important;
    height: 4px !important;
    border-radius: 999px !important;
    background: #9cff00 !important;
    box-shadow: 0 0 18px rgba(156,255,0,.38) !important;
}

html body.catalog-product-view .ace-pdp-related-h11-exact .ace-h11-section-head span {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    min-height: 28px !important;
    margin: 0 !important;
    padding: 8px 13px !important;
    border-radius: 999px !important;
    background: #050608 !important;
    color: #9cff00 !important;
    box-shadow: 0 10px 22px rgba(0,0,0,.16) !important;
    font-family: Montserrat, Arial, Helvetica, sans-serif !important;
    font-size: 10px !important;
    line-height: 1 !important;
    font-weight: 950 !important;
    letter-spacing: .13em !important;
    text-transform: uppercase !important;
    white-space: nowrap !important;
}

html body.catalog-product-view .ace-pdp-related-h11-exact .ace-h11-section-head h2 {
    margin: 0 !important;
    color: #050608 !important;
    font-family: Montserrat, Arial, Helvetica, sans-serif !important;
    font-size: clamp(28px, 2vw, 36px) !important;
    line-height: .98 !important;
    font-weight: 950 !important;
    letter-spacing: -.045em !important;
    text-transform: uppercase !important;
    text-align: right !important;
}

html body.catalog-product-view .ace-pdp-related-h11-exact .ace-h11-container,
html body.catalog-product-view .ace-pdp-related-h11-exact .ace-h11-products {
    width: 100% !important;
    max-width: none !important;
    margin: 0 !important;
    padding: 0 !important;
}

html body.catalog-product-view .ace-pdp-related-h11-exact .ace-h11-products-grid {
    width: 100% !important;
    display: grid !important;
    grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
    gap: 22px !important;
    align-items: stretch !important;
    margin: 0 !important;
    padding: 0 !important;
}

html body.catalog-product-view .ace-pdp-related-h11-exact .ace-h11-product-card {
    height: 100% !important;
    min-height: 390px !important;
    display: flex !important;
    flex-direction: column !important;
    text-decoration: none !important;
}

html body.catalog-product-view .ace-pdp-related-h11-exact .ace-h11-product-info {
    flex: 1 1 auto !important;
    display: flex !important;
    flex-direction: column !important;
}

html body.catalog-product-view .ace-pdp-related-h11-exact .ace-h11-product-name {
    min-height: 48px !important;
    text-decoration: none !important;
}

html body.catalog-product-view .ace-pdp-related-h11-exact .ace-h11-product-btn {
    margin-top: auto !important;
}

/* Abas/detalhes */
html body.catalog-product-view .ace-pdp-tabs {
    width: min(1180px, calc(100vw - 96px)) !important;
    max-width: 1180px !important;
    margin-left: auto !important;
    margin-right: auto !important;
}

/* Responsivo */
@media (max-width: 1179px) {
    html body.catalog-product-view .ace-pdp-mock,
    html body.catalog-product-view .ace-pdp-related-h11-exact,
    html body.catalog-product-view .ace-pdp-tabs {
        width: min(100% - 32px, 1040px) !important;
        max-width: 1040px !important;
    }

    html body.catalog-product-view .ace-pdp-main {
        display: grid !important;
        grid-template-columns: 1fr !important;
        gap: 24px !important;
    }

    html body.catalog-product-view .ace-pdp-gallery {
        position: relative !important;
        top: auto !important;
    }
}

@media (max-width: 1080px) {
    html body.catalog-product-view .ace-pdp-related-h11-exact .ace-h11-products-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    }

    html body.catalog-product-view .ace-pdp-related-h11-exact .ace-h11-section-head {
        display: block !important;
    }

    html body.catalog-product-view .ace-pdp-related-h11-exact .ace-h11-section-head h2 {
        margin-top: 12px !important;
        text-align: left !important;
    }
}

@media (max-width: 620px) {
    html body.catalog-product-view .ace-pdp-related-h11-exact {
        padding: 18px !important;
        border-radius: 22px !important;
    }

    html body.catalog-product-view .ace-pdp-related-h11-exact .ace-h11-products-grid {
        grid-template-columns: 1fr !important;
    }
}

/* ACE PDP INSPIRATION V3 CLEAN END */

/* ACE PDP INSPIRATION V4 POLISH START
   Polimento:
   - reduz espaço superior entre menu e breadcrumb;
   - aumenta um pouco a área útil;
   - melhora proporção entre galeria e compra;
   - oculta meta técnica do topo visual.
*/

/* Aproxima PDP do menu verde */
html body.catalog-product-view .page-main,
html body.catalog-product-view main.page-main,
html body.catalog-product-view .columns,
html body.catalog-product-view .column.main {
    padding-top: 0 !important;
    margin-top: 0 !important;
}

html body.catalog-product-view .ace-pdp-mock {
    margin-top: -12px !important;
}

html body.catalog-product-view .ace-pdp-breadcrumb,
html body.catalog-product-view .breadcrumbs {
    margin-top: 2px !important;
    margin-bottom: 10px !important;
}

/* Remove meta visual do topo: marca/modelo/categoria/SKU ficam para detalhes */
html body.catalog-product-view .ace-pdp-meta {
    display: none !important;
}

/* Desktop: usa melhor a largura e mantém corredor entre colunas */
@media (min-width: 1180px) {
    html body.catalog-product-view .ace-pdp-mock,
    html body.catalog-product-view .ace-pdp-breadcrumb,
    html body.catalog-product-view .breadcrumbs {
        width: min(1320px, calc(100vw - 72px)) !important;
        max-width: 1320px !important;
    }

    html body.catalog-product-view .ace-pdp-main {
        grid-template-columns: 620px 570px !important;
        column-gap: 54px !important;
        justify-content: center !important;
        align-items: start !important;
    }

    html body.catalog-product-view .ace-pdp-gallery {
        width: 620px !important;
        max-width: 620px !important;
        justify-self: end !important;
    }

    html body.catalog-product-view .ace-pdp-info,
    html body.catalog-product-view .ace-pdp-side {
        width: 570px !important;
        max-width: 570px !important;
        justify-self: start !important;
    }

    html body.catalog-product-view .ace-pdp-main-image,
    html body.catalog-product-view .ace-pdp-gallery-main {
        min-height: 500px !important;
        max-height: 530px !important;
    }

    html body.catalog-product-view .ace-pdp-main-image img,
    html body.catalog-product-view .ace-pdp-gallery-main img {
        max-height: 470px !important;
        max-width: 86% !important;
    }

    html body.catalog-product-view .ace-pdp-info {
        padding: 32px 36px 24px !important;
    }

    html body.catalog-product-view .ace-pdp-side {
        padding-bottom: 0 !important;
    }

    html body.catalog-product-view .ace-pdp-related-h11-exact,
    html body.catalog-product-view .ace-pdp-tabs {
        width: min(1180px, calc(100vw - 96px)) !important;
        max-width: 1180px !important;
    }

    html body.catalog-product-view .ace-pdp-related-h11-exact {
        margin-top: 44px !important;
    }
}

/* Telas largas */
@media (min-width: 1500px) {
    html body.catalog-product-view .ace-pdp-mock,
    html body.catalog-product-view .ace-pdp-breadcrumb,
    html body.catalog-product-view .breadcrumbs {
        width: min(1360px, calc(100vw - 96px)) !important;
        max-width: 1360px !important;
    }

    html body.catalog-product-view .ace-pdp-main {
        grid-template-columns: 640px 590px !important;
        column-gap: 64px !important;
    }

    html body.catalog-product-view .ace-pdp-gallery {
        width: 640px !important;
        max-width: 640px !important;
    }

    html body.catalog-product-view .ace-pdp-info,
    html body.catalog-product-view .ace-pdp-side {
        width: 590px !important;
        max-width: 590px !important;
    }
}

/* ACE PDP INSPIRATION V4 POLISH END */

/* ACE PDP INSPIRATION V5 WIDE BALANCED START
   Correção do V4:
   - V4 ficou estreito demais no desktop;
   - V5 amplia a área útil e reduz espaços laterais;
   - mantém duas colunas e sticky gallery.
*/

/* aproxima um pouco mais o bloco do breadcrumb */
html body.catalog-product-view .ace-pdp-mock {
    margin-top: 2px !important;
}

html body.catalog-product-view .ace-pdp-breadcrumb,
html body.catalog-product-view .breadcrumbs {
    margin-top: 0 !important;
    margin-bottom: 10px !important;
}

/* desktop comum */
@media (min-width: 1180px) {
    html body.catalog-product-view .ace-pdp-mock,
    html body.catalog-product-view .ace-pdp-breadcrumb,
    html body.catalog-product-view .breadcrumbs {
        width: min(1480px, calc(100vw - 56px)) !important;
        max-width: 1480px !important;
    }

    html body.catalog-product-view .ace-pdp-main {
        grid-template-columns: 700px 620px !important;
        column-gap: 56px !important;
        justify-content: center !important;
        align-items: start !important;
    }

    html body.catalog-product-view .ace-pdp-gallery {
        width: 700px !important;
        max-width: 700px !important;
        justify-self: end !important;
    }

    html body.catalog-product-view .ace-pdp-info,
    html body.catalog-product-view .ace-pdp-side {
        width: 620px !important;
        max-width: 620px !important;
        justify-self: start !important;
    }

    html body.catalog-product-view .ace-pdp-main-image,
    html body.catalog-product-view .ace-pdp-gallery-main {
        min-height: 540px !important;
        max-height: 570px !important;
    }

    html body.catalog-product-view .ace-pdp-main-image img,
    html body.catalog-product-view .ace-pdp-gallery-main img {
        max-height: 505px !important;
        max-width: 88% !important;
    }

    html body.catalog-product-view .ace-pdp-info {
        padding: 34px 38px 26px !important;
    }

    html body.catalog-product-view .ace-pdp-info h1,
    html body.catalog-product-view .ace-pdp-title {
        font-size: clamp(32px, 2vw, 40px) !important;
    }

    html body.catalog-product-view .ace-pdp-related-h11-exact,
    html body.catalog-product-view .ace-pdp-tabs {
        width: min(1320px, calc(100vw - 72px)) !important;
        max-width: 1320px !important;
    }

    html body.catalog-product-view .ace-pdp-related-h11-exact {
        margin-top: 46px !important;
    }
}

/* notebooks e telas intermediárias */
@media (min-width: 1180px) and (max-width: 1500px) {
    html body.catalog-product-view .ace-pdp-mock,
    html body.catalog-product-view .ace-pdp-breadcrumb,
    html body.catalog-product-view .breadcrumbs {
        width: min(1320px, calc(100vw - 48px)) !important;
        max-width: 1320px !important;
    }

    html body.catalog-product-view .ace-pdp-main {
        grid-template-columns: 620px 560px !important;
        column-gap: 44px !important;
    }

    html body.catalog-product-view .ace-pdp-gallery {
        width: 620px !important;
        max-width: 620px !important;
    }

    html body.catalog-product-view .ace-pdp-info,
    html body.catalog-product-view .ace-pdp-side {
        width: 560px !important;
        max-width: 560px !important;
    }

    html body.catalog-product-view .ace-pdp-main-image,
    html body.catalog-product-view .ace-pdp-gallery-main {
        min-height: 510px !important;
        max-height: 535px !important;
    }

    html body.catalog-product-view .ace-pdp-main-image img,
    html body.catalog-product-view .ace-pdp-gallery-main img {
        max-height: 470px !important;
    }

    html body.catalog-product-view .ace-pdp-related-h11-exact,
    html body.catalog-product-view .ace-pdp-tabs {
        width: min(1180px, calc(100vw - 72px)) !important;
        max-width: 1180px !important;
    }
}

/* telas muito largas */
@media (min-width: 1700px) {
    html body.catalog-product-view .ace-pdp-mock,
    html body.catalog-product-view .ace-pdp-breadcrumb,
    html body.catalog-product-view .breadcrumbs {
        width: min(1520px, calc(100vw - 80px)) !important;
        max-width: 1520px !important;
    }

    html body.catalog-product-view .ace-pdp-main {
        grid-template-columns: 720px 640px !important;
        column-gap: 72px !important;
    }

    html body.catalog-product-view .ace-pdp-gallery {
        width: 720px !important;
        max-width: 720px !important;
    }

    html body.catalog-product-view .ace-pdp-info,
    html body.catalog-product-view .ace-pdp-side {
        width: 640px !important;
        max-width: 640px !important;
    }

    html body.catalog-product-view .ace-pdp-related-h11-exact,
    html body.catalog-product-view .ace-pdp-tabs {
        width: min(1360px, calc(100vw - 100px)) !important;
        max-width: 1360px !important;
    }
}

/* ACE PDP INSPIRATION V5 WIDE BALANCED END */

/* ACE PDP V5.2 THUMBNAILS FIX START
   Ajuste exclusivo das miniaturas da galeria.
   Não altera largura geral, topo, relacionados, Home ou categorias.
*/

html body.catalog-product-view .ace-pdp-thumbs,
html body.catalog-product-view .ace-pdp-gallery-thumbs {
    min-height: 82px !important;
    height: auto !important;
    padding: 8px 10px !important;
    gap: 12px !important;
    align-items: center !important;
    overflow: visible !important;
    box-sizing: border-box !important;
}

html body.catalog-product-view .ace-pdp-thumb,
html body.catalog-product-view .ace-pdp-gallery-thumb {
    min-height: 66px !important;
    height: 66px !important;
    padding: 6px !important;
    border-radius: 12px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    overflow: hidden !important;
    box-sizing: border-box !important;
    background-size: contain !important;
    background-repeat: no-repeat !important;
    background-position: center center !important;
}

html body.catalog-product-view .ace-pdp-thumb img,
html body.catalog-product-view .ace-pdp-gallery-thumb img,
html body.catalog-product-view .ace-pdp-thumbs img,
html body.catalog-product-view .ace-pdp-gallery-thumbs img {
    width: auto !important;
    height: auto !important;
    max-width: 92% !important;
    max-height: 54px !important;
    object-fit: contain !important;
    object-position: center center !important;
    display: block !important;
}

html body.catalog-product-view .ace-pdp-thumb.is-active,
html body.catalog-product-view .ace-pdp-gallery-thumb.is-active,
html body.catalog-product-view .ace-pdp-thumb.active,
html body.catalog-product-view .ace-pdp-gallery-thumb.active {
    border-color: #9cff00 !important;
}

/* ACE PDP V5.2 THUMBNAILS FIX END */

/* ACE PDP V5.3 BUYBOX REFINEMENT START
   Ajuste exclusivo do bloco de compra:
   - reduz botão adicionar ao carrinho;
   - reduz favoritos;
   - deixa quantidade mais discreta;
   - mantém largura V5 e miniaturas V5.2.
*/

html body.catalog-product-view .ace-pdp-cart-row {
    grid-template-columns: 98px minmax(0, 1fr) !important;
    gap: 12px !important;
    margin-top: 14px !important;
}

html body.catalog-product-view .ace-pdp-qty,
html body.catalog-product-view .ace-pdp-quantity,
html body.catalog-product-view .ace-pdp-qty-box {
    min-height: 44px !important;
    height: 44px !important;
    border-radius: 11px !important;
    font-size: 13px !important;
}

html body.catalog-product-view .ace-pdp-cart-button,
html body.catalog-product-view button.tocart,
html body.catalog-product-view .action.tocart {
    min-height: 46px !important;
    height: 46px !important;
    border-radius: 12px !important;
    font-size: 12px !important;
    line-height: 1 !important;
    font-weight: 900 !important;
    letter-spacing: .01em !important;
    padding: 0 22px !important;
    box-shadow: 0 10px 22px rgba(156,255,0,.22) !important;
}

html body.catalog-product-view .ace-pdp-cart-button:hover,
html body.catalog-product-view button.tocart:hover,
html body.catalog-product-view .action.tocart:hover {
    transform: translateY(-1px) !important;
    box-shadow: 0 14px 28px rgba(156,255,0,.28) !important;
}

html body.catalog-product-view .ace-pdp-favorite,
html body.catalog-product-view .ace-pdp-favorite button,
html body.catalog-product-view .action.towishlist {
    min-height: 42px !important;
    height: 42px !important;
    border-radius: 12px !important;
    font-size: 11px !important;
    line-height: 1 !important;
    font-weight: 850 !important;
    margin-top: 10px !important;
    padding: 0 18px !important;
}

html body.catalog-product-view .ace-pdp-info {
    padding-bottom: 24px !important;
}

/* ACE PDP V5.3 BUYBOX REFINEMENT END */

/* ACE PDP V5.15 CLEAN RELATED HEADER START */

html body.catalog-product-view .ace-pdp-related-h11-exact {
    padding-top: 28px !important;
}

html body.catalog-product-view .ace-pdp-related-h11-exact .ace-h11-section-head,
html body.catalog-product-view .ace-pdp-related-h11-exact .ace-pdp-related-head-clean,
html body.catalog-product-view .ace-pdp-related-h11-exact .ace-pdp-related-titlebar-final,
html body.catalog-product-view .ace-pdp-related-h11-exact .ace-pdp-related-head-v512 {
    display: none !important;
}

html body.catalog-product-view .ace-pdp-related-h11-exact .ace-pdp-related-header-v515 {
    display: block !important;
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 0 22px 0 !important;
    padding: 0 !important;
    position: static !important;
    left: auto !important;
    right: auto !important;
    top: auto !important;
    transform: none !important;
    overflow: visible !important;
    box-sizing: border-box !important;
}

html body.catalog-product-view .ace-pdp-related-h11-exact .ace-pdp-related-title-v515 {
    display: block !important;
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 0 14px 0 !important;
    padding: 0 !important;
    position: static !important;
    left: auto !important;
    right: auto !important;
    transform: none !important;
    text-indent: 0 !important;
    clip: auto !important;
    clip-path: none !important;
    overflow: visible !important;
    white-space: normal !important;
    text-align: left !important;
    color: #050608 !important;
    font-family: Montserrat, Arial, Helvetica, sans-serif !important;
    font-size: clamp(30px, 2.15vw, 38px) !important;
    line-height: 1.05 !important;
    font-weight: 950 !important;
    letter-spacing: -0.035em !important;
    text-transform: uppercase !important;
    box-sizing: border-box !important;
}

html body.catalog-product-view .ace-pdp-related-h11-exact .ace-pdp-related-rule-v515 {
    display: block !important;
    width: 100% !important;
    height: 1px !important;
    background: rgba(0,0,0,.08) !important;
    position: relative !important;
    overflow: visible !important;
}

html body.catalog-product-view .ace-pdp-related-h11-exact .ace-pdp-related-rule-v515::before {
    content: "" !important;
    position: absolute !important;
    left: 0 !important;
    top: -1px !important;
    width: 108px !important;
    height: 4px !important;
    border-radius: 999px !important;
    background: #9cff00 !important;
    box-shadow: 0 0 14px rgba(156,255,0,.35) !important;
}

html body.catalog-product-view .ace-pdp-related-h11-exact .ace-h11-products-grid {
    margin-top: 0 !important;
}

/* ACE PDP V5.15 CLEAN RELATED HEADER END */

/* ACE PDP V5.16 RELATED CARDS POLISH START
   Polimento visual somente dos cards relacionados.
   Não altera topo, galeria, buybox, header da seção, Home ou categorias.
*/

html body.catalog-product-view .ace-pdp-related-h11-exact {
    padding-bottom: 30px !important;
}

html body.catalog-product-view .ace-pdp-related-h11-exact .ace-h11-products-grid {
    gap: 18px !important;
    align-items: stretch !important;
}

html body.catalog-product-view .ace-pdp-related-h11-exact .ace-h11-product-card {
    min-height: 360px !important;
    height: auto !important;
    padding: 18px 18px 20px !important;
    border-radius: 22px !important;
    background: #ffffff !important;
    border: 1px solid rgba(0,0,0,.075) !important;
    box-shadow: 0 18px 38px rgba(0,0,0,.055) !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: flex-end !important;
    overflow: hidden !important;
    box-sizing: border-box !important;
}

html body.catalog-product-view .ace-pdp-related-h11-exact .ace-h11-product-img {
    height: 190px !important;
    min-height: 190px !important;
    max-height: 190px !important;
    margin: 0 0 18px !important;
    padding: 0 !important;
    display: flex !important;
    align-items: flex-end !important;
    justify-content: center !important;
    overflow: visible !important;
}

html body.catalog-product-view .ace-pdp-related-h11-exact .ace-h11-product-img img {
    max-width: 96% !important;
    max-height: 178px !important;
    width: auto !important;
    height: auto !important;
    object-fit: contain !important;
    object-position: center bottom !important;
    display: block !important;
}

html body.catalog-product-view .ace-pdp-related-h11-exact .ace-h11-product-info {
    display: flex !important;
    flex-direction: column !important;
    justify-content: flex-end !important;
    flex: 1 1 auto !important;
    min-height: 126px !important;
    padding: 0 !important;
}

html body.catalog-product-view .ace-pdp-related-h11-exact .ace-h11-product-name {
    min-height: 42px !important;
    margin: 0 0 12px !important;
    color: #050608 !important;
    font-size: 13px !important;
    line-height: 1.22 !important;
    font-weight: 950 !important;
    letter-spacing: -.015em !important;
    text-transform: uppercase !important;
}

html body.catalog-product-view .ace-pdp-related-h11-exact .ace-h11-product-price {
    margin: 0 0 12px !important;
    color: #050608 !important;
    font-size: 22px !important;
    line-height: 1 !important;
    font-weight: 950 !important;
    letter-spacing: -.035em !important;
}

html body.catalog-product-view .ace-pdp-related-h11-exact .ace-h11-product-btn {
    width: 100% !important;
    min-height: 44px !important;
    height: 44px !important;
    border-radius: 12px !important;
    background: #050608 !important;
    color: #ffffff !important;
    font-size: 12px !important;
    font-weight: 950 !important;
    letter-spacing: .02em !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
}

html body.catalog-product-view .ace-pdp-related-h11-exact .ace-h11-product-card:hover {
    transform: translateY(-3px) !important;
    box-shadow: 0 24px 48px rgba(0,0,0,.085) !important;
}

/* ACE PDP V5.16 RELATED CARDS POLISH END */

/* ACE PDP V5.17 MAIN PANELS ALIGN START
   Corrige o desalinhamento entre:
   - painel principal do produto/galeria;
   - painel "Você também pode gostar";
   - painel das abas inferiores.
   Não altera Home, categorias, miniaturas, buybox ou cards.
*/

html body.catalog-product-view .ace-pdp-mock {
    width: min(1320px, calc(100vw - 72px)) !important;
    max-width: 1320px !important;
    margin-left: auto !important;
    margin-right: auto !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
    box-sizing: border-box !important;
}

html body.catalog-product-view .ace-pdp-breadcrumb {
    width: min(1320px, calc(100vw - 72px)) !important;
    max-width: 1320px !important;
    margin-left: auto !important;
    margin-right: auto !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
    box-sizing: border-box !important;
}

html body.catalog-product-view .ace-pdp-main {
    width: 100% !important;
    max-width: 100% !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    box-sizing: border-box !important;
}

html body.catalog-product-view .ace-pdp-related-h11-exact,
html body.catalog-product-view .ace-pdp-tabs {
    width: min(1320px, calc(100vw - 72px)) !important;
    max-width: 1320px !important;
    margin-left: auto !important;
    margin-right: auto !important;
    box-sizing: border-box !important;
}

/* evita que algum wrapper interno empurre a galeria para fora do eixo */
html body.catalog-product-view .ace-pdp-gallery {
    margin-left: 0 !important;
}

html body.catalog-product-view .ace-pdp-info,
html body.catalog-product-view .ace-pdp-side {
    margin-right: 0 !important;
}

@media (max-width: 900px) {
    html body.catalog-product-view .ace-pdp-mock,
    html body.catalog-product-view .ace-pdp-breadcrumb,
    html body.catalog-product-view .ace-pdp-related-h11-exact,
    html body.catalog-product-view .ace-pdp-tabs {
        width: calc(100vw - 28px) !important;
        max-width: calc(100vw - 28px) !important;
    }
}

/* ACE PDP V5.17 MAIN PANELS ALIGN END */

/* ACE PDP V5.18 MAIN INNER SHIFT START
   Corrige o problema real:
   o bloco principal interno da PDP estava mais à esquerda
   que os painéis "Você também pode gostar" e "Descrição".
*/

@media (min-width: 1180px) {
    html body.catalog-product-view .ace-pdp-main {
        transform: translateX(56px) !important;
        width: calc(100% - 56px) !important;
        max-width: calc(100% - 56px) !important;
        box-sizing: border-box !important;
    }
}

@media (min-width: 1500px) {
    html body.catalog-product-view .ace-pdp-main {
        transform: translateX(62px) !important;
        width: calc(100% - 62px) !important;
        max-width: calc(100% - 62px) !important;
    }
}

@media (max-width: 1179px) {
    html body.catalog-product-view .ace-pdp-main {
        transform: none !important;
        width: 100% !important;
        max-width: 100% !important;
    }
}

/* ACE PDP V5.18 MAIN INNER SHIFT END */

/* ACE PDP V5.22 LOWER PANELS CORRECT START
   Corrige o excesso dos painéis inferiores após V5.20/V5.21.
   Usa base V5.18 e aplica largura menor nos painéis de baixo.
*/

@media (min-width: 1180px) {
    html body.catalog-product-view .ace-pdp-related-h11-exact,
    html body.catalog-product-view .ace-pdp-tabs {
        width: min(1372px, calc(100vw - 60px)) !important;
        max-width: 1372px !important;
        margin-left: auto !important;
        margin-right: auto !important;
        box-sizing: border-box !important;
    }
}

@media (min-width: 1500px) {
    html body.catalog-product-view .ace-pdp-related-h11-exact,
    html body.catalog-product-view .ace-pdp-tabs {
        width: min(1390px, calc(100vw - 64px)) !important;
        max-width: 1390px !important;
    }
}

@media (max-width: 1179px) {
    html body.catalog-product-view .ace-pdp-related-h11-exact,
    html body.catalog-product-view .ace-pdp-tabs {
        width: calc(100vw - 28px) !important;
        max-width: calc(100vw - 28px) !important;
    }
}

/* ACE PDP V5.22 LOWER PANELS CORRECT END */

/* ACE PDP V5.23 LOWER PANELS LEFT SHIFT START
   Ajuste final:
   a largura dos painéis inferiores está boa,
   mas eles estão visualmente deslocados para a direita.
   Move apenas Relacionados e Abas um pouco para a esquerda.
*/

@media (min-width: 1180px) {
    html body.catalog-product-view .ace-pdp-related-h11-exact,
    html body.catalog-product-view .ace-pdp-tabs {
        transform: translateX(-24px) !important;
    }
}

@media (min-width: 1500px) {
    html body.catalog-product-view .ace-pdp-related-h11-exact,
    html body.catalog-product-view .ace-pdp-tabs {
        transform: translateX(-26px) !important;
    }
}

@media (max-width: 1179px) {
    html body.catalog-product-view .ace-pdp-related-h11-exact,
    html body.catalog-product-view .ace-pdp-tabs {
        transform: none !important;
    }
}

/* ACE PDP V5.23 LOWER PANELS LEFT SHIFT END */

/* ACE PDP V5.24 LOWER PANELS FINAL SHIFT START
   Ajuste fino final:
   mantém a largura atual dos painéis inferiores,
   apenas desloca mais alguns pixels para a esquerda.
*/

@media (min-width: 1180px) {
    html body.catalog-product-view .ace-pdp-related-h11-exact,
    html body.catalog-product-view .ace-pdp-tabs {
        transform: translateX(-34px) !important;
    }
}

@media (min-width: 1500px) {
    html body.catalog-product-view .ace-pdp-related-h11-exact,
    html body.catalog-product-view .ace-pdp-tabs {
        transform: translateX(-36px) !important;
    }
}

@media (max-width: 1179px) {
    html body.catalog-product-view .ace-pdp-related-h11-exact,
    html body.catalog-product-view .ace-pdp-tabs {
        transform: none !important;
    }
}

/* ACE PDP V5.24 LOWER PANELS FINAL SHIFT END */

/* ACE PDP V5.25-A SHIPPING ESTIMATE START
   Bloco visual de cálculo de frete/CEP na PDP.
   Sem integração real de transportadora nesta etapa.
*/

html body.catalog-product-view .ace-pdp-shipping-estimate {
    margin-top: 18px !important;
    padding-top: 18px !important;
    border-top: 1px solid rgba(0,0,0,.08) !important;
}

html body.catalog-product-view .ace-pdp-shipping-title {
    display: flex !important;
    align-items: center !important;
    gap: 9px !important;
    margin: 0 0 12px !important;
    color: #070707 !important;
    font-size: 13px !important;
    font-weight: 950 !important;
    letter-spacing: .09em !important;
    text-transform: uppercase !important;
}

html body.catalog-product-view .ace-pdp-shipping-title span {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 22px !important;
    height: 22px !important;
    border-radius: 999px !important;
    background: rgba(137, 255, 0, .18) !important;
    font-size: 12px !important;
    line-height: 1 !important;
}

html body.catalog-product-view .ace-pdp-shipping-form {
    display: flex !important;
    align-items: stretch !important;
    gap: 10px !important;
    width: 100% !important;
}

html body.catalog-product-view .ace-pdp-shipping-input {
    flex: 1 1 auto !important;
    min-width: 0 !important;
    height: 46px !important;
    border-radius: 14px !important;
    border: 1px solid rgba(0,0,0,.12) !important;
    background: #fff !important;
    padding: 0 16px !important;
    color: #111 !important;
    font-size: 14px !important;
    font-weight: 750 !important;
    outline: none !important;
    box-shadow: none !important;
    box-sizing: border-box !important;
}

html body.catalog-product-view .ace-pdp-shipping-input::placeholder {
    color: rgba(0,0,0,.28) !important;
    font-weight: 800 !important;
}

html body.catalog-product-view .ace-pdp-shipping-input:focus {
    border-color: #8cff00 !important;
    box-shadow: 0 0 0 3px rgba(140,255,0,.18) !important;
}

html body.catalog-product-view .ace-pdp-shipping-button {
    flex: 0 0 auto !important;
    height: 46px !important;
    border: 0 !important;
    border-radius: 14px !important;
    background: #050505 !important;
    color: #fff !important;
    padding: 0 18px !important;
    font-size: 12px !important;
    font-weight: 950 !important;
    text-transform: uppercase !important;
    letter-spacing: .02em !important;
    cursor: pointer !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 8px !important;
    white-space: nowrap !important;
    transition: transform .18s ease, box-shadow .18s ease, background .18s ease !important;
}

html body.catalog-product-view .ace-pdp-shipping-button:hover {
    transform: translateY(-1px) !important;
    box-shadow: 0 14px 26px rgba(0,0,0,.18) !important;
    background: #111 !important;
}

html body.catalog-product-view .ace-pdp-shipping-help {
    display: inline-flex !important;
    margin-top: 10px !important;
    color: rgba(0,0,0,.46) !important;
    font-size: 12px !important;
    font-weight: 750 !important;
    text-decoration: none !important;
}

html body.catalog-product-view .ace-pdp-shipping-help:hover {
    color: #111 !important;
    text-decoration: underline !important;
}

html body.catalog-product-view .ace-pdp-shipping-result {
    display: none !important;
    margin-top: 12px !important;
    border-radius: 14px !important;
    background: rgba(140,255,0,.12) !important;
    border: 1px solid rgba(140,255,0,.32) !important;
    color: #111 !important;
    padding: 11px 13px !important;
    font-size: 12px !important;
    font-weight: 800 !important;
    line-height: 1.4 !important;
}

html body.catalog-product-view .ace-pdp-shipping-result.is-visible {
    display: block !important;
}

html body.catalog-product-view .ace-pdp-shipping-result.is-error {
    background: rgba(255, 59, 48, .08) !important;
    border-color: rgba(255, 59, 48, .22) !important;
}

@media (max-width: 680px) {
    html body.catalog-product-view .ace-pdp-shipping-form {
        flex-direction: column !important;
    }

    html body.catalog-product-view .ace-pdp-shipping-button {
        width: 100% !important;
    }
}

/* ACE PDP V5.25-A SHIPPING ESTIMATE END */

/* ACE PDP V5.26 BUY BUTTONS AFTER SHIPPING START
   Ajusta proporção dos botões após inclusão do bloco Calcular Frete.
   Não altera alinhamento geral da PDP.
*/

html body.catalog-product-view .ace-pdp-info {
    padding-bottom: 24px !important;
}

html body.catalog-product-view .ace-pdp-cart-row {
    align-items: stretch !important;
    gap: 10px !important;
    margin-top: 8px !important;
}

html body.catalog-product-view .ace-pdp-qty {
    height: 48px !important;
    min-height: 48px !important;
    border-radius: 13px !important;
    flex: 0 0 86px !important;
}

html body.catalog-product-view .ace-pdp-qty button,
html body.catalog-product-view .ace-pdp-qty span,
html body.catalog-product-view .ace-pdp-qty input {
    min-height: 48px !important;
    height: 48px !important;
    line-height: 48px !important;
}

html body.catalog-product-view .ace-pdp-cart-button {
    height: 48px !important;
    min-height: 48px !important;
    border-radius: 13px !important;
    padding: 0 22px !important;
    font-size: 12px !important;
    font-weight: 950 !important;
    letter-spacing: .01em !important;
    line-height: 1 !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 8px !important;
    white-space: nowrap !important;
}

html body.catalog-product-view .ace-pdp-favorite {
    height: 42px !important;
    min-height: 42px !important;
    border-radius: 12px !important;
    margin-top: 10px !important;
    font-size: 11px !important;
    font-weight: 950 !important;
    line-height: 1 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 0 18px !important;
}

html body.catalog-product-view .ace-pdp-shipping-estimate {
    margin-top: 20px !important;
    padding-top: 20px !important;
}

html body.catalog-product-view .ace-pdp-shipping-form {
    gap: 10px !important;
}

html body.catalog-product-view .ace-pdp-shipping-input {
    height: 48px !important;
    min-height: 48px !important;
    border-radius: 13px !important;
    font-size: 14px !important;
}

html body.catalog-product-view .ace-pdp-shipping-button {
    height: 48px !important;
    min-height: 48px !important;
    min-width: 128px !important;
    border-radius: 13px !important;
    padding: 0 20px !important;
    font-size: 12px !important;
    line-height: 1 !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 8px !important;
    white-space: nowrap !important;
}

html body.catalog-product-view .ace-pdp-shipping-button span {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    line-height: 1 !important;
    font-size: 14px !important;
}

@media (max-width: 680px) {
    html body.catalog-product-view .ace-pdp-cart-row {
        flex-direction: column !important;
    }

    html body.catalog-product-view .ace-pdp-qty,
    html body.catalog-product-view .ace-pdp-cart-button,
    html body.catalog-product-view .ace-pdp-shipping-button {
        width: 100% !important;
        flex-basis: auto !important;
    }
}

/* ACE PDP V5.26 BUY BUTTONS AFTER SHIPPING END */

/* ACE PDP V5.27 SHIPPING PREMIUM START
   Profissionaliza o bloco de cálculo de frete:
   remove aparência de bloco comprimido, melhora proporção, ícones e botão.
*/

html body.catalog-product-view .ace-pdp-info {
    padding-bottom: 28px !important;
}

html body.catalog-product-view .ace-pdp-shipping-estimate {
    margin-top: 18px !important;
    padding: 18px !important;
    border: 1px solid rgba(0,0,0,.08) !important;
    border-radius: 18px !important;
    background: linear-gradient(180deg, #ffffff 0%, #fafafa 100%) !important;
    box-shadow: 0 12px 30px rgba(0,0,0,.045) !important;
}

html body.catalog-product-view .ace-pdp-shipping-title {
    display: flex !important;
    align-items: center !important;
    gap: 10px !important;
    margin: 0 0 14px !important;
    color: #050505 !important;
    font-size: 14px !important;
    font-weight: 950 !important;
    letter-spacing: .105em !important;
    text-transform: uppercase !important;
}

html body.catalog-product-view .ace-pdp-shipping-title-icon {
    width: 30px !important;
    height: 30px !important;
    min-width: 30px !important;
    border-radius: 10px !important;
    background: #050505 !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
}

html body.catalog-product-view .ace-pdp-shipping-title-icon svg {
    width: 16px !important;
    height: 16px !important;
    display: block !important;
    fill: #8cff00 !important;
}

html body.catalog-product-view .ace-pdp-shipping-form {
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) 148px !important;
    gap: 12px !important;
    align-items: stretch !important;
    width: 100% !important;
}

html body.catalog-product-view .ace-pdp-shipping-input {
    width: 100% !important;
    height: 52px !important;
    min-height: 52px !important;
    border-radius: 15px !important;
    border: 1px solid rgba(0,0,0,.12) !important;
    background: #fff !important;
    padding: 0 18px !important;
    color: #101010 !important;
    font-size: 15px !important;
    font-weight: 800 !important;
    outline: none !important;
    box-shadow: inset 0 1px 0 rgba(255,255,255,.9) !important;
    box-sizing: border-box !important;
}

html body.catalog-product-view .ace-pdp-shipping-input::placeholder {
    color: rgba(0,0,0,.30) !important;
    font-weight: 800 !important;
}

html body.catalog-product-view .ace-pdp-shipping-input:focus {
    border-color: #8cff00 !important;
    box-shadow: 0 0 0 4px rgba(140,255,0,.18) !important;
}

html body.catalog-product-view .ace-pdp-shipping-button {
    width: 148px !important;
    min-width: 148px !important;
    height: 52px !important;
    min-height: 52px !important;
    border-radius: 15px !important;
    border: 0 !important;
    background: #050505 !important;
    color: #fff !important;
    padding: 0 18px !important;
    font-size: 12px !important;
    font-weight: 950 !important;
    line-height: 1 !important;
    text-transform: uppercase !important;
    letter-spacing: .035em !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 8px !important;
    white-space: nowrap !important;
    box-shadow: 0 10px 22px rgba(0,0,0,.12) !important;
}

html body.catalog-product-view .ace-pdp-shipping-button:hover {
    background: #111 !important;
    transform: translateY(-1px) !important;
    box-shadow: 0 15px 28px rgba(0,0,0,.18) !important;
}

html body.catalog-product-view .ace-pdp-shipping-button-icon {
    width: 15px !important;
    height: 15px !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
}

html body.catalog-product-view .ace-pdp-shipping-button-icon svg {
    width: 15px !important;
    height: 15px !important;
    fill: currentColor !important;
    display: block !important;
}

html body.catalog-product-view .ace-pdp-shipping-help {
    margin-top: 11px !important;
    color: rgba(0,0,0,.48) !important;
    font-size: 12px !important;
    font-weight: 750 !important;
}

html body.catalog-product-view .ace-pdp-shipping-result {
    margin-top: 13px !important;
    border-radius: 14px !important;
    padding: 12px 14px !important;
    font-size: 12px !important;
    font-weight: 850 !important;
}

@media (max-width: 680px) {
    html body.catalog-product-view .ace-pdp-shipping-estimate {
        padding: 15px !important;
    }

    html body.catalog-product-view .ace-pdp-shipping-form {
        grid-template-columns: 1fr !important;
    }

    html body.catalog-product-view .ace-pdp-shipping-button {
        width: 100% !important;
        min-width: 0 !important;
    }
}

/* ACE PDP V5.27 SHIPPING PREMIUM END */

/* ACE PDP V5.28 PREMIUM BUTTONS START
   Reposiciona visualmente os botões principais da compra.
   Objetivo: tirar aparência improvisada e aproximar do padrão premium.
*/

html body.catalog-product-view .ace-pdp-cart-row {
    display: grid !important;
    grid-template-columns: 96px minmax(0, 1fr) !important;
    gap: 12px !important;
    align-items: stretch !important;
    margin-top: 10px !important;
}

html body.catalog-product-view .ace-pdp-qty {
    height: 54px !important;
    min-height: 54px !important;
    border-radius: 16px !important;
    background: #f5f5f5 !important;
    border: 1px solid rgba(0,0,0,.06) !important;
    box-shadow: inset 0 1px 0 rgba(255,255,255,.8) !important;
    overflow: hidden !important;
}

html body.catalog-product-view .ace-pdp-qty button,
html body.catalog-product-view .ace-pdp-qty span,
html body.catalog-product-view .ace-pdp-qty input {
    height: 54px !important;
    min-height: 54px !important;
    line-height: 54px !important;
    color: #050505 !important;
    font-size: 13px !important;
    font-weight: 950 !important;
}

html body.catalog-product-view .ace-pdp-cart-button {
    height: 54px !important;
    min-height: 54px !important;
    border-radius: 16px !important;
    border: 0 !important;
    background: #050505 !important;
    color: #fff !important;
    padding: 0 24px !important;
    font-size: 12px !important;
    font-weight: 950 !important;
    letter-spacing: .045em !important;
    text-transform: uppercase !important;
    line-height: 1 !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 10px !important;
    white-space: nowrap !important;
    box-shadow: 0 16px 30px rgba(0,0,0,.20), inset 0 0 0 1px rgba(255,255,255,.08) !important;
    transition: transform .18s ease, box-shadow .18s ease, background .18s ease !important;
}

html body.catalog-product-view .ace-pdp-cart-button:hover {
    background: #111 !important;
    transform: translateY(-1px) !important;
    box-shadow: 0 20px 36px rgba(0,0,0,.26), 0 0 0 3px rgba(140,255,0,.18) !important;
}

html body.catalog-product-view .ace-pdp-cart-button-icon {
    width: 17px !important;
    height: 17px !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    color: #8cff00 !important;
}

html body.catalog-product-view .ace-pdp-cart-button-icon svg {
    width: 17px !important;
    height: 17px !important;
    display: block !important;
    fill: currentColor !important;
}

html body.catalog-product-view .ace-pdp-favorite {
    height: 48px !important;
    min-height: 48px !important;
    border-radius: 15px !important;
    margin-top: 12px !important;
    padding: 0 20px !important;
    border: 1px solid rgba(0,0,0,.16) !important;
    background: #fff !important;
    color: #050505 !important;
    font-size: 12px !important;
    font-weight: 950 !important;
    letter-spacing: .035em !important;
    text-transform: uppercase !important;
    line-height: 1 !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 9px !important;
    width: 100% !important;
    box-shadow: 0 8px 18px rgba(0,0,0,.045) !important;
    transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease, background .18s ease !important;
}

html body.catalog-product-view .ace-pdp-favorite:hover {
    transform: translateY(-1px) !important;
    border-color: rgba(0,0,0,.35) !important;
    background: #fafafa !important;
    box-shadow: 0 14px 26px rgba(0,0,0,.09) !important;
}

html body.catalog-product-view .ace-pdp-favorite-icon {
    width: 16px !important;
    height: 16px !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    color: #050505 !important;
}

html body.catalog-product-view .ace-pdp-favorite-icon svg {
    width: 16px !important;
    height: 16px !important;
    display: block !important;
    fill: currentColor !important;
}

html body.catalog-product-view .ace-pdp-shipping-estimate {
    margin-top: 16px !important;
    padding: 16px !important;
    border-radius: 18px !important;
}

html body.catalog-product-view .ace-pdp-shipping-form {
    grid-template-columns: minmax(0, 1fr) 156px !important;
    gap: 12px !important;
}

html body.catalog-product-view .ace-pdp-shipping-input {
    height: 54px !important;
    min-height: 54px !important;
    border-radius: 16px !important;
    font-size: 14px !important;
}

html body.catalog-product-view .ace-pdp-shipping-button {
    width: 156px !important;
    min-width: 156px !important;
    height: 54px !important;
    min-height: 54px !important;
    border-radius: 16px !important;
    background: #050505 !important;
    font-size: 12px !important;
    font-weight: 950 !important;
    letter-spacing: .045em !important;
    box-shadow: 0 14px 28px rgba(0,0,0,.18), inset 0 0 0 1px rgba(255,255,255,.08) !important;
}

html body.catalog-product-view .ace-pdp-shipping-button:hover {
    background: #111 !important;
    box-shadow: 0 18px 34px rgba(0,0,0,.24), 0 0 0 3px rgba(140,255,0,.14) !important;
}

html body.catalog-product-view .ace-pdp-shipping-title-icon {
    background: #050505 !important;
}

html body.catalog-product-view .ace-pdp-shipping-title-icon svg {
    fill: #8cff00 !important;
}

@media (max-width: 680px) {
    html body.catalog-product-view .ace-pdp-cart-row {
        grid-template-columns: 1fr !important;
    }

    html body.catalog-product-view .ace-pdp-shipping-form {
        grid-template-columns: 1fr !important;
    }

    html body.catalog-product-view .ace-pdp-shipping-button {
        width: 100% !important;
        min-width: 0 !important;
    }
}

/* ACE PDP V5.28 PREMIUM BUTTONS END */

/* ACE PDP V5.29 RECOVER BUTTONS START
   Recuperação segura: elimina SVG gigante dos botões principais
   e estabiliza proporção sem mexer no alinhamento da PDP.
*/

html body.catalog-product-view .ace-pdp-cart-button-icon,
html body.catalog-product-view .ace-pdp-favorite-icon,
html body.catalog-product-view .ace-pdp-cart-button svg,
html body.catalog-product-view .ace-pdp-favorite svg {
    display: none !important;
    visibility: hidden !important;
    width: 0 !important;
    height: 0 !important;
    max-width: 0 !important;
    max-height: 0 !important;
    overflow: hidden !important;
    position: absolute !important;
    pointer-events: none !important;
}

html body.catalog-product-view .ace-pdp-cart-row {
    display: grid !important;
    grid-template-columns: 88px minmax(0, 1fr) !important;
    gap: 12px !important;
    align-items: stretch !important;
}

html body.catalog-product-view .ace-pdp-qty {
    height: 50px !important;
    min-height: 50px !important;
    border-radius: 14px !important;
}

html body.catalog-product-view .ace-pdp-qty button,
html body.catalog-product-view .ace-pdp-qty span,
html body.catalog-product-view .ace-pdp-qty input {
    height: 50px !important;
    min-height: 50px !important;
    line-height: 50px !important;
}

html body.catalog-product-view .ace-pdp-cart-button {
    height: 50px !important;
    min-height: 50px !important;
    border-radius: 14px !important;
    background: #8cff00 !important;
    color: #050505 !important;
    border: 0 !important;
    padding: 0 22px !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    box-shadow: 0 12px 24px rgba(140,255,0,.22) !important;
    overflow: hidden !important;
}

html body.catalog-product-view .ace-pdp-cart-button span {
    color: #050505 !important;
    font-size: 12px !important;
    font-weight: 950 !important;
    line-height: 1 !important;
    letter-spacing: .035em !important;
    text-transform: uppercase !important;
}

html body.catalog-product-view .ace-pdp-favorite {
    height: 44px !important;
    min-height: 44px !important;
    border-radius: 13px !important;
    margin-top: 10px !important;
    background: #fff !important;
    color: #050505 !important;
    border: 1px solid rgba(0,0,0,.22) !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 0 18px !important;
    box-shadow: none !important;
    overflow: hidden !important;
}

html body.catalog-product-view .ace-pdp-favorite span {
    color: #050505 !important;
    font-size: 11px !important;
    font-weight: 950 !important;
    line-height: 1 !important;
    letter-spacing: .035em !important;
    text-transform: uppercase !important;
}

html body.catalog-product-view .ace-pdp-shipping-button {
    height: 52px !important;
    min-height: 52px !important;
    width: 150px !important;
    min-width: 150px !important;
    border-radius: 15px !important;
}

@media (max-width: 680px) {
    html body.catalog-product-view .ace-pdp-cart-row {
        grid-template-columns: 1fr !important;
    }

    html body.catalog-product-view .ace-pdp-shipping-form {
        grid-template-columns: 1fr !important;
    }

    html body.catalog-product-view .ace-pdp-shipping-button {
        width: 100% !important;
        min-width: 0 !important;
    }
}

/* ACE PDP V5.29 RECOVER BUTTONS END */

/* ACE PDP V5.30 CLEAN PREMIUM BUTTONS START
   Acabamento premium sem SVG:
   - carrinho preto robusto
   - favoritos branco elegante
   - consultar proporcional ao campo de CEP
*/

html body.catalog-product-view .ace-pdp-cart-row {
    display: grid !important;
    grid-template-columns: 92px minmax(0, 1fr) !important;
    gap: 12px !important;
    align-items: stretch !important;
    margin-top: 10px !important;
}

html body.catalog-product-view .ace-pdp-qty {
    height: 52px !important;
    min-height: 52px !important;
    border-radius: 15px !important;
    background: #f6f6f6 !important;
    border: 1px solid rgba(0,0,0,.08) !important;
    box-shadow: inset 0 1px 0 rgba(255,255,255,.9) !important;
    overflow: hidden !important;
}

html body.catalog-product-view .ace-pdp-qty button,
html body.catalog-product-view .ace-pdp-qty span,
html body.catalog-product-view .ace-pdp-qty input {
    height: 52px !important;
    min-height: 52px !important;
    line-height: 52px !important;
    color: #050505 !important;
    font-size: 13px !important;
    font-weight: 950 !important;
}

html body.catalog-product-view .ace-pdp-cart-button {
    height: 52px !important;
    min-height: 52px !important;
    border-radius: 15px !important;
    border: 0 !important;
    background: #050505 !important;
    color: #ffffff !important;
    padding: 0 24px !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 100% !important;
    box-shadow: 0 16px 32px rgba(0,0,0,.22), inset 0 0 0 1px rgba(255,255,255,.08) !important;
    transition: transform .18s ease, box-shadow .18s ease, background .18s ease !important;
    overflow: hidden !important;
}

html body.catalog-product-view .ace-pdp-cart-button span {
    color: #ffffff !important;
    font-size: 12px !important;
    font-weight: 950 !important;
    letter-spacing: .045em !important;
    text-transform: uppercase !important;
    line-height: 1 !important;
    white-space: nowrap !important;
}

html body.catalog-product-view .ace-pdp-cart-button:hover {
    background: #111111 !important;
    transform: translateY(-1px) !important;
    box-shadow: 0 20px 38px rgba(0,0,0,.28), 0 0 0 3px rgba(140,255,0,.14) !important;
}

html body.catalog-product-view .ace-pdp-favorite {
    height: 46px !important;
    min-height: 46px !important;
    border-radius: 14px !important;
    margin-top: 12px !important;
    background: #ffffff !important;
    color: #050505 !important;
    border: 1px solid rgba(0,0,0,.20) !important;
    padding: 0 20px !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 100% !important;
    box-shadow: 0 8px 18px rgba(0,0,0,.045) !important;
    transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease, background .18s ease !important;
    overflow: hidden !important;
}

html body.catalog-product-view .ace-pdp-favorite span {
    color: #050505 !important;
    font-size: 11px !important;
    font-weight: 950 !important;
    letter-spacing: .045em !important;
    text-transform: uppercase !important;
    line-height: 1 !important;
    white-space: nowrap !important;
}

html body.catalog-product-view .ace-pdp-favorite:hover {
    background: #fafafa !important;
    border-color: rgba(0,0,0,.36) !important;
    transform: translateY(-1px) !important;
    box-shadow: 0 13px 24px rgba(0,0,0,.08) !important;
}

html body.catalog-product-view .ace-pdp-shipping-estimate {
    margin-top: 16px !important;
    padding: 16px !important;
    border-radius: 18px !important;
    background: #ffffff !important;
    border: 1px solid rgba(0,0,0,.08) !important;
    box-shadow: 0 12px 28px rgba(0,0,0,.045) !important;
}

html body.catalog-product-view .ace-pdp-shipping-title {
    margin-bottom: 13px !important;
}

html body.catalog-product-view .ace-pdp-shipping-form {
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) 150px !important;
    gap: 10px !important;
    align-items: stretch !important;
}

html body.catalog-product-view .ace-pdp-shipping-input {
    height: 52px !important;
    min-height: 52px !important;
    border-radius: 15px !important;
    padding: 0 16px !important;
    font-size: 14px !important;
    font-weight: 800 !important;
}

html body.catalog-product-view .ace-pdp-shipping-button {
    width: 150px !important;
    min-width: 150px !important;
    height: 52px !important;
    min-height: 52px !important;
    border-radius: 15px !important;
    background: #050505 !important;
    color: #fff !important;
    padding: 0 18px !important;
    font-size: 12px !important;
    font-weight: 950 !important;
    letter-spacing: .04em !important;
    text-transform: uppercase !important;
    box-shadow: 0 14px 28px rgba(0,0,0,.18), inset 0 0 0 1px rgba(255,255,255,.08) !important;
}

html body.catalog-product-view .ace-pdp-shipping-button:hover {
    background: #111111 !important;
    transform: translateY(-1px) !important;
    box-shadow: 0 18px 34px rgba(0,0,0,.24), 0 0 0 3px rgba(140,255,0,.14) !important;
}

html body.catalog-product-view .ace-pdp-shipping-button-icon,
html body.catalog-product-view .ace-pdp-shipping-button-icon svg {
    width: 14px !important;
    height: 14px !important;
    max-width: 14px !important;
    max-height: 14px !important;
}

html body.catalog-product-view .ace-pdp-cart-button svg,
html body.catalog-product-view .ace-pdp-favorite svg,
html body.catalog-product-view .ace-pdp-cart-button-icon,
html body.catalog-product-view .ace-pdp-favorite-icon {
    display: none !important;
    visibility: hidden !important;
    width: 0 !important;
    height: 0 !important;
    max-width: 0 !important;
    max-height: 0 !important;
    overflow: hidden !important;
    position: absolute !important;
    pointer-events: none !important;
}

@media (max-width: 680px) {
    html body.catalog-product-view .ace-pdp-cart-row,
    html body.catalog-product-view .ace-pdp-shipping-form {
        grid-template-columns: 1fr !important;
    }

    html body.catalog-product-view .ace-pdp-shipping-button {
        width: 100% !important;
        min-width: 0 !important;
    }
}

/* ACE PDP V5.30 CLEAN PREMIUM BUTTONS END */

/* ACE PDP V5.31 FINAL BUTTON REFINE START
   Objetivo:
   - carrinho menos espremido
   - favoritos em amarelo/neon da marca
   - consultar com a mesma linguagem premium
*/

html body.catalog-product-view .ace-pdp-cart-row {
    grid-template-columns: 76px minmax(0, 1fr) !important;
    gap: 14px !important;
    align-items: center !important;
}

html body.catalog-product-view .ace-pdp-qty {
    height: 54px !important;
    min-height: 54px !important;
    border-radius: 16px !important;
    background: #f7f7f7 !important;
    border: 1px solid rgba(0,0,0,.08) !important;
    box-shadow: inset 0 1px 0 rgba(255,255,255,.9) !important;
}

html body.catalog-product-view .ace-pdp-qty button,
html body.catalog-product-view .ace-pdp-qty span,
html body.catalog-product-view .ace-pdp-qty input {
    height: 54px !important;
    min-height: 54px !important;
    line-height: 54px !important;
    font-size: 13px !important;
    font-weight: 800 !important;
    color: #111 !important;
}

html body.catalog-product-view .ace-pdp-cart-button {
    height: 54px !important;
    min-height: 54px !important;
    border-radius: 16px !important;
    background: #050505 !important;
    border: 1px solid #050505 !important;
    color: #fff !important;
    width: 100% !important;
    padding: 0 20px !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    box-shadow: 0 12px 24px rgba(0,0,0,.18) !important;
    transition: transform .18s ease, box-shadow .18s ease, background .18s ease !important;
}

html body.catalog-product-view .ace-pdp-cart-button span,
html body.catalog-product-view .ace-pdp-cart-button {
    font-family: Montserrat, Arial, Helvetica, sans-serif !important;
    font-size: 13px !important;
    font-weight: 850 !important;
    letter-spacing: .015em !important;
    text-transform: uppercase !important;
    line-height: 1 !important;
    white-space: nowrap !important;
    color: #fff !important;
}

html body.catalog-product-view .ace-pdp-cart-button:hover {
    background: #111 !important;
    transform: translateY(-1px) !important;
    box-shadow: 0 16px 30px rgba(0,0,0,.22) !important;
}

html body.catalog-product-view .ace-pdp-favorite {
    height: 50px !important;
    min-height: 50px !important;
    border-radius: 16px !important;
    margin-top: 12px !important;
    background: #d8ff00 !important;
    border: 1px solid #c7ef00 !important;
    color: #050505 !important;
    width: 100% !important;
    padding: 0 18px !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    box-shadow: 0 10px 22px rgba(160,190,0,.18) !important;
    transition: transform .18s ease, box-shadow .18s ease, background .18s ease !important;
}

html body.catalog-product-view .ace-pdp-favorite span,
html body.catalog-product-view .ace-pdp-favorite {
    font-family: Montserrat, Arial, Helvetica, sans-serif !important;
    font-size: 12px !important;
    font-weight: 850 !important;
    letter-spacing: .02em !important;
    text-transform: uppercase !important;
    line-height: 1 !important;
    white-space: nowrap !important;
    color: #050505 !important;
}

html body.catalog-product-view .ace-pdp-favorite:hover {
    background: #dfff1f !important;
    transform: translateY(-1px) !important;
    box-shadow: 0 14px 26px rgba(160,190,0,.22) !important;
}

html body.catalog-product-view .ace-pdp-shipping-estimate {
    padding: 18px !important;
    border-radius: 18px !important;
}

html body.catalog-product-view .ace-pdp-shipping-form {
    grid-template-columns: minmax(0, 1fr) 124px !important;
    gap: 12px !important;
    align-items: center !important;
}

html body.catalog-product-view .ace-pdp-shipping-input {
    height: 48px !important;
    min-height: 48px !important;
    border-radius: 14px !important;
    padding: 0 16px !important;
    font-family: Montserrat, Arial, Helvetica, sans-serif !important;
    font-size: 14px !important;
    font-weight: 700 !important;
    color: #333 !important;
    border: 1px solid rgba(0,0,0,.10) !important;
    background: #fff !important;
}

html body.catalog-product-view .ace-pdp-shipping-button {
    width: 124px !important;
    min-width: 124px !important;
    height: 48px !important;
    min-height: 48px !important;
    border-radius: 14px !important;
    background: #050505 !important;
    border: 1px solid #050505 !important;
    color: #fff !important;
    padding: 0 16px !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    box-shadow: 0 10px 22px rgba(0,0,0,.16) !important;
    transition: transform .18s ease, box-shadow .18s ease, background .18s ease !important;
}

html body.catalog-product-view .ace-pdp-shipping-button,
html body.catalog-product-view .ace-pdp-shipping-button span {
    font-family: Montserrat, Arial, Helvetica, sans-serif !important;
    font-size: 12px !important;
    font-weight: 850 !important;
    letter-spacing: .015em !important;
    text-transform: uppercase !important;
    line-height: 1 !important;
    color: #fff !important;
    white-space: nowrap !important;
}

html body.catalog-product-view .ace-pdp-shipping-button:hover {
    background: #111 !important;
    transform: translateY(-1px) !important;
    box-shadow: 0 14px 28px rgba(0,0,0,.22) !important;
}

html body.catalog-product-view .ace-pdp-cart-button svg,
html body.catalog-product-view .ace-pdp-favorite svg,
html body.catalog-product-view .ace-pdp-cart-button-icon,
html body.catalog-product-view .ace-pdp-favorite-icon {
    display: none !important;
}

@media (max-width: 680px) {
    html body.catalog-product-view .ace-pdp-cart-row,
    html body.catalog-product-view .ace-pdp-shipping-form {
        grid-template-columns: 1fr !important;
    }

    html body.catalog-product-view .ace-pdp-shipping-button {
        width: 100% !important;
        min-width: 0 !important;
    }
}

/* ACE PDP V5.31 FINAL BUTTON REFINE END */

/* ACE PDP V5.32 MICRO TUNING START
   Ajustes:
   - quantidade mais larga
   - favoritos menos achatado
   - consultar maior e input do CEP mais curto
*/

html body.catalog-product-view .ace-pdp-cart-row {
    grid-template-columns: 92px minmax(0, 1fr) !important;
    gap: 14px !important;
    align-items: center !important;
}

html body.catalog-product-view .ace-pdp-qty {
    width: 92px !important;
    min-width: 92px !important;
    height: 54px !important;
    min-height: 54px !important;
    border-radius: 16px !important;
    padding: 0 4px !important;
    background: #f7f7f7 !important;
    border: 1px solid rgba(0,0,0,.08) !important;
    box-shadow: inset 0 1px 0 rgba(255,255,255,.9) !important;
}

html body.catalog-product-view .ace-pdp-qty button,
html body.catalog-product-view .ace-pdp-qty span,
html body.catalog-product-view .ace-pdp-qty input {
    min-width: 24px !important;
    height: 54px !important;
    min-height: 54px !important;
    line-height: 54px !important;
    font-size: 13px !important;
    font-weight: 800 !important;
    color: #111 !important;
    text-align: center !important;
}

html body.catalog-product-view .ace-pdp-cart-button {
    height: 56px !important;
    min-height: 56px !important;
    border-radius: 16px !important;
    padding: 0 22px !important;
}

html body.catalog-product-view .ace-pdp-cart-button,
html body.catalog-product-view .ace-pdp-cart-button span {
    font-family: Montserrat, Arial, Helvetica, sans-serif !important;
    font-size: 13px !important;
    font-weight: 850 !important;
    letter-spacing: .01em !important;
    text-transform: uppercase !important;
    line-height: 1 !important;
    white-space: nowrap !important;
}

html body.catalog-product-view .ace-pdp-favorite {
    height: 56px !important;
    min-height: 56px !important;
    border-radius: 18px !important;
    margin-top: 12px !important;
    padding: 0 22px !important;
    background: #d8ff00 !important;
    border: 1px solid #c7ef00 !important;
    box-shadow: 0 12px 24px rgba(160,190,0,.18) !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
}

html body.catalog-product-view .ace-pdp-favorite,
html body.catalog-product-view .ace-pdp-favorite span {
    font-family: Montserrat, Arial, Helvetica, sans-serif !important;
    font-size: 13px !important;
    font-weight: 850 !important;
    letter-spacing: .015em !important;
    text-transform: uppercase !important;
    line-height: 1 !important;
    white-space: nowrap !important;
    color: #050505 !important;
}

html body.catalog-product-view .ace-pdp-shipping-estimate {
    padding: 18px !important;
    border-radius: 18px !important;
}

html body.catalog-product-view .ace-pdp-shipping-form {
    grid-template-columns: minmax(0, 1fr) 138px !important;
    gap: 12px !important;
    align-items: center !important;
}

html body.catalog-product-view .ace-pdp-shipping-input {
    width: 100% !important;
    max-width: 100% !important;
    height: 48px !important;
    min-height: 48px !important;
    border-radius: 14px !important;
    padding: 0 16px !important;
    font-family: Montserrat, Arial, Helvetica, sans-serif !important;
    font-size: 14px !important;
    font-weight: 700 !important;
    color: #333 !important;
    border: 1px solid rgba(0,0,0,.10) !important;
    background: #fff !important;
}

html body.catalog-product-view .ace-pdp-shipping-button {
    width: 138px !important;
    min-width: 138px !important;
    max-width: 138px !important;
    height: 48px !important;
    min-height: 48px !important;
    border-radius: 14px !important;
    padding: 0 18px !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    background: #050505 !important;
    border: 1px solid #050505 !important;
    color: #fff !important;
    box-shadow: 0 10px 22px rgba(0,0,0,.16) !important;
}

html body.catalog-product-view .ace-pdp-shipping-button,
html body.catalog-product-view .ace-pdp-shipping-button span {
    font-family: Montserrat, Arial, Helvetica, sans-serif !important;
    font-size: 13px !important;
    font-weight: 850 !important;
    letter-spacing: .01em !important;
    text-transform: uppercase !important;
    line-height: 1 !important;
    white-space: nowrap !important;
    color: #fff !important;
}

@media (max-width: 680px) {
    html body.catalog-product-view .ace-pdp-cart-row,
    html body.catalog-product-view .ace-pdp-shipping-form {
        grid-template-columns: 1fr !important;
    }

    html body.catalog-product-view .ace-pdp-qty {
        width: 100% !important;
        min-width: 0 !important;
    }

    html body.catalog-product-view .ace-pdp-shipping-button {
        width: 100% !important;
        min-width: 0 !important;
        max-width: none !important;
    }
}

/* ACE PDP V5.32 MICRO TUNING END */

/* ACE PDP V5.33 CONSULT BUTTON REFINE START
   Ajuste final do botão Consultar:
   - remove sensação de botão apertado
   - elimina seta como ruído visual
   - deixa o botão com mesma linguagem do CTA principal
*/

html body.catalog-product-view .ace-pdp-shipping-form {
    grid-template-columns: minmax(0, 1fr) 152px !important;
    gap: 12px !important;
    align-items: center !important;
}

html body.catalog-product-view .ace-pdp-shipping-input {
    height: 50px !important;
    min-height: 50px !important;
    border-radius: 15px !important;
    padding: 0 16px !important;
    font-family: Montserrat, Arial, Helvetica, sans-serif !important;
    font-size: 14px !important;
    font-weight: 700 !important;
}

html body.catalog-product-view .ace-pdp-shipping-button {
    width: 152px !important;
    min-width: 152px !important;
    max-width: 152px !important;
    height: 50px !important;
    min-height: 50px !important;
    border-radius: 15px !important;
    padding: 0 20px !important;
    background: #050505 !important;
    border: 1px solid #050505 !important;
    color: #ffffff !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 0 !important;
    box-shadow: 0 12px 24px rgba(0,0,0,.18), inset 0 0 0 1px rgba(255,255,255,.08) !important;
    transition: transform .18s ease, box-shadow .18s ease, background .18s ease !important;
    overflow: hidden !important;
}

html body.catalog-product-view .ace-pdp-shipping-button:hover {
    background: #111111 !important;
    transform: translateY(-1px) !important;
    box-shadow: 0 16px 30px rgba(0,0,0,.24), 0 0 0 3px rgba(140,255,0,.12) !important;
}

html body.catalog-product-view .ace-pdp-shipping-button,
html body.catalog-product-view .ace-pdp-shipping-button span,
html body.catalog-product-view .ace-pdp-shipping-button-label {
    font-family: Montserrat, Arial, Helvetica, sans-serif !important;
    font-size: 13px !important;
    font-weight: 850 !important;
    letter-spacing: .012em !important;
    text-transform: uppercase !important;
    line-height: 1 !important;
    color: #ffffff !important;
    white-space: nowrap !important;
    text-align: center !important;
}

html body.catalog-product-view .ace-pdp-shipping-button-icon,
html body.catalog-product-view .ace-pdp-shipping-button-icon svg,
html body.catalog-product-view .ace-pdp-shipping-button svg {
    display: none !important;
    visibility: hidden !important;
    width: 0 !important;
    height: 0 !important;
    max-width: 0 !important;
    max-height: 0 !important;
    overflow: hidden !important;
    position: absolute !important;
    pointer-events: none !important;
}

@media (max-width: 680px) {
    html body.catalog-product-view .ace-pdp-shipping-form {
        grid-template-columns: 1fr !important;
    }

    html body.catalog-product-view .ace-pdp-shipping-button {
        width: 100% !important;
        min-width: 0 !important;
        max-width: none !important;
    }
}

/* ACE PDP V5.33 CONSULT BUTTON REFINE END */

/* ACE PDP V5.34 BUTTON TEXT NATURAL START
   Ajuste final: remove sensação de texto achatado nos botões.
*/

html body.catalog-product-view .ace-pdp-cart-button {
    height: 58px !important;
    min-height: 58px !important;
    border-radius: 17px !important;
}

html body.catalog-product-view .ace-pdp-favorite {
    height: 58px !important;
    min-height: 58px !important;
    border-radius: 18px !important;
}

html body.catalog-product-view .ace-pdp-shipping-button {
    height: 52px !important;
    min-height: 52px !important;
    border-radius: 15px !important;
    width: 154px !important;
    min-width: 154px !important;
    max-width: 154px !important;
}

html body.catalog-product-view .ace-pdp-cart-button,
html body.catalog-product-view .ace-pdp-favorite,
html body.catalog-product-view .ace-pdp-shipping-button {
    font-family: Montserrat, Arial, Helvetica, sans-serif !important;
    font-stretch: normal !important;
    text-rendering: geometricPrecision !important;
    -webkit-font-smoothing: antialiased !important;
    -moz-osx-font-smoothing: grayscale !important;
}

html body.catalog-product-view .ace-pdp-cart-button span,
html body.catalog-product-view .ace-pdp-favorite span,
html body.catalog-product-view .ace-pdp-shipping-button span,
html body.catalog-product-view .ace-pdp-shipping-button-label {
    font-family: Montserrat, Arial, Helvetica, sans-serif !important;
    font-size: 13px !important;
    font-weight: 800 !important;
    letter-spacing: 0 !important;
    line-height: 1.22 !important;
    text-transform: uppercase !important;
    white-space: nowrap !important;
    transform: none !important;
    font-stretch: normal !important;
    text-rendering: geometricPrecision !important;
    -webkit-font-smoothing: antialiased !important;
    -moz-osx-font-smoothing: grayscale !important;
}

html body.catalog-product-view .ace-pdp-cart-button span {
    color: #ffffff !important;
}

html body.catalog-product-view .ace-pdp-favorite span {
    color: #050505 !important;
}

html body.catalog-product-view .ace-pdp-shipping-button span,
html body.catalog-product-view .ace-pdp-shipping-button-label {
    color: #ffffff !important;
    font-size: 12.8px !important;
    font-weight: 800 !important;
    line-height: 1.22 !important;
}

html body.catalog-product-view .ace-pdp-shipping-form {
    grid-template-columns: minmax(0, 1fr) 154px !important;
    gap: 12px !important;
}

@media (max-width: 680px) {
    html body.catalog-product-view .ace-pdp-shipping-form {
        grid-template-columns: 1fr !important;
    }

    html body.catalog-product-view .ace-pdp-shipping-button {
        width: 100% !important;
        min-width: 0 !important;
        max-width: none !important;
    }
}

/* ACE PDP V5.34 BUTTON TEXT NATURAL END */

/* ACE PDP V5.35 QTY CART GAP MATCH START
   Objetivo: usar o mesmo gap visual do bloco CEP/Consultar.
*/

html body.catalog-product-view .ace-pdp-buy-row,
html body.catalog-product-view .ace-pdp-cart-row,
html body.catalog-product-view .ace-pdp-purchase-row,
html body.catalog-product-view .ace-pdp-main-buy-row,
html body.catalog-product-view .box-tocart .fieldset,
html body.catalog-product-view .product-add-form .fieldset {
    column-gap: 12px !important;
    gap: 12px !important;
}

html body.catalog-product-view .box-tocart .field.qty,
html body.catalog-product-view .product-add-form .field.qty,
html body.catalog-product-view .ace-pdp-qty-wrap {
    margin-right: 0 !important;
}

html body.catalog-product-view .box-tocart .actions,
html body.catalog-product-view .product-add-form .actions,
html body.catalog-product-view .ace-pdp-cart-button-wrap {
    margin-left: 0 !important;
}

html body.catalog-product-view .box-tocart .field.qty {
    min-width: 74px !important;
    max-width: 74px !important;
    width: 74px !important;
}

/* ACE PDP V5.35 QTY CART GAP MATCH END */

/* ACE PDP V5.36 QTY CART BIGGER GAP START
   Correção do V5.35:
   o gap ficou menor; agora abrimos mais espaço entre quantidade e carrinho.
*/

html body.catalog-product-view .ace-pdp-cart-row {
    display: grid !important;
    grid-template-columns: 92px minmax(0, 1fr) !important;
    column-gap: 24px !important;
    gap: 24px !important;
    align-items: center !important;
}

html body.catalog-product-view .ace-pdp-qty {
    width: 92px !important;
    min-width: 92px !important;
    max-width: 92px !important;
    margin-right: 0 !important;
}

html body.catalog-product-view .ace-pdp-cart-button {
    margin-left: 0 !important;
    width: 100% !important;
}

@media (max-width: 680px) {
    html body.catalog-product-view .ace-pdp-cart-row {
        grid-template-columns: 1fr !important;
        gap: 12px !important;
        column-gap: 12px !important;
    }

    html body.catalog-product-view .ace-pdp-qty {
        width: 100% !important;
        min-width: 0 !important;
        max-width: none !important;
    }
}

/* ACE PDP V5.36 QTY CART BIGGER GAP END */

/* ACE PDP V5.41 PREMIUM INFO JS SAFE START */

html body.catalog-product-view .ace-pdp-tabs.ace-pdp-legacy-tabs-hidden {
    display: none !important;
}

html body.catalog-product-view .ace-pdp-premium-info {
    width: min(1412px, calc(100vw - 44px)) !important;
    max-width: 1412px !important;
    margin: 34px auto 58px !important;
    background: #fff !important;
    border: 1px solid rgba(0,0,0,.07) !important;
    border-radius: 26px !important;
    box-shadow: 0 24px 56px rgba(0,0,0,.07) !important;
    padding: 22px !important;
    box-sizing: border-box !important;
}

html body.catalog-product-view .ace-pdp-premium-tabs {
    display: grid !important;
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    gap: 12px !important;
    margin: 0 0 20px !important;
}

html body.catalog-product-view .ace-pdp-premium-tab {
    height: 58px !important;
    border-radius: 18px !important;
    border: 1px solid rgba(0,0,0,.10) !important;
    background: #fff !important;
    color: rgba(0,0,0,.58) !important;
    font-family: Montserrat, Arial, Helvetica, sans-serif !important;
    font-size: 14px !important;
    font-weight: 800 !important;
    cursor: pointer !important;
}

html body.catalog-product-view .ace-pdp-premium-tab.is-active {
    background: #050505 !important;
    color: #fff !important;
    border-color: #050505 !important;
    box-shadow: 0 16px 30px rgba(0,0,0,.18) !important;
}

html body.catalog-product-view .ace-pdp-premium-body {
    background: #fafafa !important;
    border: 1px solid rgba(0,0,0,.06) !important;
    border-radius: 24px !important;
    padding: 24px !important;
    min-height: 430px !important;
}

html body.catalog-product-view .ace-pdp-premium-panel {
    display: none !important;
}

html body.catalog-product-view .ace-pdp-premium-panel.is-active {
    display: block !important;
}

html body.catalog-product-view .ace-pdp-premium-layout {
    display: grid !important;
    grid-template-columns: minmax(360px, .85fr) minmax(0, 1.15fr) !important;
    gap: 34px !important;
    align-items: start !important;
}

html body.catalog-product-view .ace-pdp-premium-media-card {
    min-height: 420px !important;
    border-radius: 22px !important;
    overflow: hidden !important;
    background: #fff !important;
    border: 1px solid rgba(0,0,0,.06) !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}

html body.catalog-product-view .ace-pdp-premium-media-card img {
    width: 100% !important;
    height: 420px !important;
    object-fit: contain !important;
    padding: 34px !important;
    box-sizing: border-box !important;
}

html body.catalog-product-view .ace-pdp-premium-eyebrow {
    margin: 0 0 10px !important;
    color: rgba(0,0,0,.42) !important;
    font-size: 12px !important;
    font-weight: 850 !important;
    text-transform: uppercase !important;
    letter-spacing: .15em !important;
}

html body.catalog-product-view .ace-pdp-premium-content h2,
html body.catalog-product-view .ace-pdp-premium-specs-head h2,
html body.catalog-product-view .ace-pdp-premium-compat-copy h2 {
    margin: 0 0 14px !important;
    color: #050505 !important;
    font-size: clamp(26px, 2.2vw, 36px) !important;
    line-height: 1.04 !important;
    font-weight: 950 !important;
    letter-spacing: -.045em !important;
}

html body.catalog-product-view .ace-pdp-premium-intro,
html body.catalog-product-view .ace-pdp-premium-specs-head p,
html body.catalog-product-view .ace-pdp-premium-compat-copy p {
    margin: 0 0 22px !important;
    color: rgba(0,0,0,.64) !important;
    font-size: 15px !important;
    line-height: 1.72 !important;
    font-weight: 500 !important;
}

html body.catalog-product-view .ace-pdp-premium-box {
    margin: 22px 0 26px !important;
    padding: 20px !important;
    background: #fff !important;
    border: 1px solid rgba(0,0,0,.07) !important;
    border-radius: 20px !important;
    box-shadow: 0 12px 30px rgba(0,0,0,.035) !important;
}

html body.catalog-product-view .ace-pdp-premium-box-title {
    display: flex !important;
    align-items: center !important;
    gap: 10px !important;
    margin-bottom: 16px !important;
    color: #050505 !important;
    font-size: 13px !important;
    font-weight: 950 !important;
    text-transform: uppercase !important;
    letter-spacing: .12em !important;
}

html body.catalog-product-view .ace-pdp-premium-box-title span,
html body.catalog-product-view .ace-pdp-premium-box-grid span,
html body.catalog-product-view .ace-pdp-premium-compat-card span {
    width: 22px !important;
    height: 22px !important;
    min-width: 22px !important;
    border-radius: 999px !important;
    background: rgba(140,255,0,.24) !important;
    color: #238500 !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-weight: 950 !important;
}

html body.catalog-product-view .ace-pdp-premium-box-grid {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 12px 18px !important;
}

html body.catalog-product-view .ace-pdp-premium-box-grid div {
    display: flex !important;
    align-items: center !important;
    gap: 9px !important;
    color: rgba(0,0,0,.66) !important;
    font-size: 13px !important;
    font-weight: 700 !important;
}

html body.catalog-product-view .ace-pdp-premium-tech h3 {
    margin: 0 0 16px !important;
    color: #050505 !important;
    font-size: 14px !important;
    font-weight: 950 !important;
    text-transform: uppercase !important;
    letter-spacing: .14em !important;
}

html body.catalog-product-view .ace-pdp-premium-tech ul {
    margin: 0 !important;
    padding: 0 !important;
    list-style: none !important;
    display: grid !important;
    gap: 14px !important;
}

html body.catalog-product-view .ace-pdp-premium-tech li {
    position: relative !important;
    padding-left: 22px !important;
    color: rgba(0,0,0,.64) !important;
    font-size: 14px !important;
    line-height: 1.55 !important;
}

html body.catalog-product-view .ace-pdp-premium-tech li::before {
    content: "" !important;
    position: absolute !important;
    left: 0 !important;
    top: .58em !important;
    width: 7px !important;
    height: 7px !important;
    border-radius: 999px !important;
    background: #8cff00 !important;
    box-shadow: 0 0 0 4px rgba(140,255,0,.16) !important;
}

html body.catalog-product-view .ace-pdp-premium-tech strong {
    display: block !important;
    margin-bottom: 3px !important;
    color: #050505 !important;
    font-size: 14px !important;
    font-weight: 900 !important;
}

html body.catalog-product-view .ace-pdp-premium-tech span {
    display: block !important;
}

html body.catalog-product-view .ace-pdp-premium-chips {
    display: flex !important;
    flex-wrap: wrap !important;
    gap: 10px !important;
    margin-top: 24px !important;
}

html body.catalog-product-view .ace-pdp-premium-chips span {
    display: inline-flex !important;
    height: 38px !important;
    padding: 0 16px !important;
    border-radius: 12px !important;
    background: #fff !important;
    border: 1px solid rgba(0,0,0,.07) !important;
    align-items: center !important;
    color: rgba(0,0,0,.72) !important;
    font-size: 12px !important;
    font-weight: 850 !important;
}

html body.catalog-product-view .ace-pdp-premium-specs-head {
    margin-bottom: 22px !important;
}

html body.catalog-product-view .ace-pdp-premium-spec-grid {
    display: grid !important;
    grid-template-columns: repeat(5, minmax(0, 1fr)) !important;
    gap: 14px !important;
}

html body.catalog-product-view .ace-pdp-premium-spec-grid div {
    min-height: 118px !important;
    padding: 18px !important;
    border-radius: 18px !important;
    background: #fff !important;
    border: 1px solid rgba(0,0,0,.07) !important;
    box-shadow: 0 10px 24px rgba(0,0,0,.035) !important;
}

html body.catalog-product-view .ace-pdp-premium-spec-grid span {
    display: block !important;
    margin-bottom: 10px !important;
    color: rgba(0,0,0,.42) !important;
    font-size: 11px !important;
    font-weight: 850 !important;
    text-transform: uppercase !important;
    letter-spacing: .13em !important;
}

html body.catalog-product-view .ace-pdp-premium-spec-grid strong {
    display: block !important;
    color: #050505 !important;
    font-size: 17px !important;
    line-height: 1.15 !important;
    font-weight: 950 !important;
}

html body.catalog-product-view .ace-pdp-premium-compat {
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) 430px !important;
    gap: 32px !important;
    align-items: start !important;
}

html body.catalog-product-view .ace-pdp-premium-compat-card {
    display: grid !important;
    gap: 14px !important;
    padding: 22px !important;
    border-radius: 22px !important;
    background: #fff !important;
    border: 1px solid rgba(0,0,0,.07) !important;
    box-shadow: 0 12px 30px rgba(0,0,0,.035) !important;
}

html body.catalog-product-view .ace-pdp-premium-compat-card div {
    display: grid !important;
    grid-template-columns: 24px minmax(0, 1fr) !important;
    gap: 6px 12px !important;
    align-items: start !important;
}

html body.catalog-product-view .ace-pdp-premium-compat-card strong {
    color: #050505 !important;
    font-size: 14px !important;
    font-weight: 900 !important;
}

html body.catalog-product-view .ace-pdp-premium-compat-card small {
    grid-column: 2 !important;
    color: rgba(0,0,0,.56) !important;
    font-size: 13px !important;
    line-height: 1.45 !important;
}

@media (min-width: 1180px) {
    html body.catalog-product-view .ace-pdp-premium-info {
        transform: translateX(-34px) !important;
    }
}

@media (max-width: 1180px) {
    html body.catalog-product-view .ace-pdp-premium-info {
        width: calc(100vw - 34px) !important;
        transform: none !important;
    }

    html body.catalog-product-view .ace-pdp-premium-layout,
    html body.catalog-product-view .ace-pdp-premium-compat {
        grid-template-columns: 1fr !important;
    }

    html body.catalog-product-view .ace-pdp-premium-spec-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    }
}

@media (max-width: 680px) {
    html body.catalog-product-view .ace-pdp-premium-info {
        width: calc(100vw - 24px) !important;
        margin: 24px auto 40px !important;
        padding: 14px !important;
        border-radius: 22px !important;
    }

    html body.catalog-product-view .ace-pdp-premium-tabs,
    html body.catalog-product-view .ace-pdp-premium-box-grid,
    html body.catalog-product-view .ace-pdp-premium-spec-grid {
        grid-template-columns: 1fr !important;
    }

    html body.catalog-product-view .ace-pdp-premium-body {
        padding: 16px !important;
    }
}

/* ACE PDP V5.41 PREMIUM INFO JS SAFE END */

/* ACE PDP V5.56 REMOVE FATIADO RELATED START
   Mantém o bloco relacionado da PDP, mas remove o comportamento fatiado.
   Não altera Home.
   Não altera categorias.
   Não altera painel direito, frete, botões ou painel premium.
*/

html body.catalog-product-view .ace-pdp-related-h11-exact .ace-h11-products-grid {
    display: grid !important;
    grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
    gap: 18px !important;
    align-items: stretch !important;
    width: 100% !important;
}

html body.catalog-product-view .ace-pdp-related-h11-exact .ace-h11-product-card {
    width: auto !important;
    min-width: 0 !important;
    min-height: 360px !important;
    padding: 18px 20px !important;
    border-radius: 22px !important;
    background: #fff !important;
    border: 1px solid rgba(0,0,0,.08) !important;
    box-shadow: 0 14px 34px rgba(0,0,0,.045) !important;
    display: flex !important;
    flex-direction: column !important;
    overflow: hidden !important;
    transform: translateY(0) !important;
    transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease !important;
}

html body.catalog-product-view .ace-pdp-related-h11-exact .ace-h11-product-card:hover {
    transform: translateY(-6px) !important;
    border-color: rgba(140,255,0,.58) !important;
    box-shadow: 0 22px 44px rgba(0,0,0,.11) !important;
}

html body.catalog-product-view .ace-pdp-related-h11-exact .ace-h11-product-img {
    height: 190px !important;
    min-height: 190px !important;
    max-height: 190px !important;
    margin: 0 0 12px !important;
    border-radius: 16px !important;
    background: #fff !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    overflow: hidden !important;
}

html body.catalog-product-view .ace-pdp-related-h11-exact .ace-h11-product-img img {
    display: block !important;
    width: auto !important;
    height: auto !important;
    max-width: 94% !important;
    max-height: 176px !important;
    object-fit: contain !important;
    object-position: center center !important;
    transform: scale(1) !important;
    transition: transform .22s ease !important;
}

html body.catalog-product-view .ace-pdp-related-h11-exact .ace-h11-product-card:hover .ace-h11-product-img img {
    transform: scale(1.045) !important;
}

html body.catalog-product-view .ace-pdp-related-h11-exact .ace-h11-product-info {
    flex: 1 1 auto !important;
    min-height: 128px !important;
    display: flex !important;
    flex-direction: column !important;
}

html body.catalog-product-view .ace-pdp-related-h11-exact .ace-h11-product-btn {
    margin-top: auto !important;
}

@media (max-width: 1080px) {
    html body.catalog-product-view .ace-pdp-related-h11-exact .ace-h11-products-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    }
}

@media (max-width: 620px) {
    html body.catalog-product-view .ace-pdp-related-h11-exact .ace-h11-products-grid {
        grid-template-columns: 1fr !important;
    }
}

/* ACE PDP V5.56 REMOVE FATIADO RELATED END */

/* ACE PDP V5.57 RELATED CARDS POLISH START
   Somente "Você também pode gostar".
   Fatiador já removido na V5.56.
   Agora: card maior, hover visível e sombra sem cortar.
*/

html body.catalog-product-view .ace-pdp-related-h11-exact {
    overflow: visible !important;
    padding-top: 34px !important;
    padding-bottom: 36px !important;
}

html body.catalog-product-view .ace-pdp-related-h11-exact .ace-h11-container,
html body.catalog-product-view .ace-pdp-related-h11-exact .ace-h11-products {
    overflow: visible !important;
}

html body.catalog-product-view .ace-pdp-related-h11-exact .ace-h11-products-grid {
    overflow: visible !important;
    padding-top: 12px !important;
    padding-bottom: 8px !important;
    gap: 20px !important;
}

html body.catalog-product-view .ace-pdp-related-h11-exact .ace-h11-product-card {
    min-height: 390px !important;
    padding: 20px 20px 18px !important;
    border-radius: 22px !important;
    background: #ffffff !important;
    border: 1px solid rgba(0,0,0,.08) !important;
    box-shadow: 0 12px 30px rgba(0,0,0,.055) !important;
    overflow: visible !important;
    transform: translateY(0) scale(1) !important;
    transition: transform .24s ease, box-shadow .24s ease, border-color .24s ease !important;
    will-change: transform !important;
}

html body.catalog-product-view .ace-pdp-related-h11-exact .ace-h11-product-card:hover,
html body.catalog-product-view .ace-pdp-related-h11-exact .ace-h11-product-card.is-flipping {
    transform: translateY(-9px) scale(1.012) !important;
    border-color: rgba(140,255,0,.72) !important;
    box-shadow: 0 26px 54px rgba(0,0,0,.14) !important;
    z-index: 4 !important;
}

html body.catalog-product-view .ace-pdp-related-h11-exact .ace-h11-product-img {
    height: 212px !important;
    min-height: 212px !important;
    max-height: 212px !important;
    margin: 0 0 14px !important;
    border-radius: 18px !important;
    background: #ffffff !important;
    overflow: hidden !important;
}

html body.catalog-product-view .ace-pdp-related-h11-exact .ace-h11-product-img img {
    max-width: 96% !important;
    max-height: 198px !important;
    object-fit: contain !important;
    object-position: center center !important;
    transform: scale(1) !important;
    transition: transform .24s ease !important;
}

html body.catalog-product-view .ace-pdp-related-h11-exact .ace-h11-product-card:hover .ace-h11-product-img img,
html body.catalog-product-view .ace-pdp-related-h11-exact .ace-h11-product-card.is-flipping .ace-h11-product-img img {
    transform: scale(1.065) !important;
}

html body.catalog-product-view .ace-pdp-related-h11-exact .ace-h11-product-name {
    min-height: 46px !important;
    margin-bottom: 14px !important;
    font-size: 13px !important;
    line-height: 1.18 !important;
}

html body.catalog-product-view .ace-pdp-related-h11-exact .ace-h11-product-price {
    font-size: 23px !important;
    margin-bottom: 16px !important;
}

html body.catalog-product-view .ace-pdp-related-h11-exact .ace-h11-product-btn {
    height: 46px !important;
    min-height: 46px !important;
    border-radius: 12px !important;
    margin-top: auto !important;
}

/* ACE PDP V5.57 RELATED CARDS POLISH END */

/* ACE PDP V5.58 RELATED HOVER FLIP START
   Somente "Você também pode gostar".
   Mantém correção da V5.56/V5.57: sem fatiador e sem corte superior.
   Adiciona hover/flip limpo semelhante aos cards da Home/Categoria.
*/

html body.catalog-product-view .ace-pdp-related-h11-exact,
html body.catalog-product-view .ace-pdp-related-h11-exact .ace-h11-container,
html body.catalog-product-view .ace-pdp-related-h11-exact .ace-h11-products,
html body.catalog-product-view .ace-pdp-related-h11-exact .ace-h11-products-grid {
    overflow: visible !important;
}

html body.catalog-product-view .ace-pdp-related-h11-exact .ace-h11-product-card {
    transform-style: preserve-3d !important;
    backface-visibility: hidden !important;
    transform-origin: center center !important;
}

html body.catalog-product-view .ace-pdp-related-h11-exact .ace-h11-product-card:hover,
html body.catalog-product-view .ace-pdp-related-h11-exact .ace-h11-product-card.is-flipping {
    transform: translateY(-9px) scale(1.012) !important;
    border-color: rgba(140,255,0,.78) !important;
    box-shadow: 0 28px 58px rgba(0,0,0,.15) !important;
    z-index: 8 !important;
}

html body.catalog-product-view .ace-pdp-related-h11-exact .ace-h11-product-img {
    overflow: visible !important;
    perspective: 900px !important;
    transform-style: preserve-3d !important;
}

html body.catalog-product-view .ace-pdp-related-h11-exact .ace-h11-product-img img {
    transform-origin: center center !important;
    transform-style: preserve-3d !important;
    backface-visibility: hidden !important;
    transition: transform .34s cubic-bezier(.2,.7,.2,1), filter .34s ease !important;
    will-change: transform !important;
}

html body.catalog-product-view .ace-pdp-related-h11-exact .ace-h11-product-card:hover .ace-h11-product-img img,
html body.catalog-product-view .ace-pdp-related-h11-exact .ace-h11-product-card.is-flipping .ace-h11-product-img img {
    transform: perspective(900px) rotateY(-10deg) rotateZ(-1.2deg) scale(1.075) !important;
    filter: drop-shadow(0 16px 18px rgba(0,0,0,.13)) !important;
}

html body.catalog-product-view .ace-pdp-related-h11-exact .ace-h11-product-card:active .ace-h11-product-img img {
    transform: perspective(900px) rotateY(8deg) rotateZ(1deg) scale(1.045) !important;
}

/* ACE PDP V5.58 RELATED HOVER FLIP END */

/* ACE PDP V5.59 CLEAN HOVER WITHOUT SLICE START
   Remove efeito fatiado no hover da PDP.
   Não usa o JS ace-product-card-flip.js na PDP.
   Mantém hover elegante apenas por CSS.
*/

html body.catalog-product-view .ace-pdp-related-h11-exact,
html body.catalog-product-view .ace-pdp-related-h11-exact .ace-h11-container,
html body.catalog-product-view .ace-pdp-related-h11-exact .ace-h11-products,
html body.catalog-product-view .ace-pdp-related-h11-exact .ace-h11-products-grid {
    overflow: visible !important;
}

html body.catalog-product-view .ace-pdp-related-h11-exact .ace-h11-product-card {
    overflow: visible !important;
    transform: translateY(0) scale(1) !important;
    transition: transform .24s ease, box-shadow .24s ease, border-color .24s ease !important;
    will-change: transform !important;
}

html body.catalog-product-view .ace-pdp-related-h11-exact .ace-h11-product-card:hover {
    transform: translateY(-8px) scale(1.01) !important;
    border-color: rgba(140,255,0,.78) !important;
    box-shadow: 0 28px 58px rgba(0,0,0,.15) !important;
    z-index: 10 !important;
}

html body.catalog-product-view .ace-pdp-related-h11-exact .ace-h11-product-card.is-flipping {
    transform: translateY(-8px) scale(1.01) !important;
}

html body.catalog-product-view .ace-pdp-related-h11-exact .ace-h11-product-img {
    overflow: hidden !important;
    position: relative !important;
    transform: none !important;
    perspective: none !important;
}

html body.catalog-product-view .ace-pdp-related-h11-exact .ace-h11-product-img span,
html body.catalog-product-view .ace-pdp-related-h11-exact .ace-h11-product-img [class*="slice"],
html body.catalog-product-view .ace-pdp-related-h11-exact .ace-h11-product-img [class*="flip"] {
    display: none !important;
}

html body.catalog-product-view .ace-pdp-related-h11-exact .ace-h11-product-img img {
    display: block !important;
    position: static !important;
    opacity: 1 !important;
    visibility: visible !important;
    width: auto !important;
    height: auto !important;
    max-width: 96% !important;
    max-height: 198px !important;
    object-fit: contain !important;
    object-position: center center !important;
    clip-path: none !important;
    mask: none !important;
    -webkit-mask: none !important;
    transform: scale(1) rotate(0deg) !important;
    transform-origin: center center !important;
    transition: transform .26s ease, filter .26s ease !important;
    filter: none !important;
}

html body.catalog-product-view .ace-pdp-related-h11-exact .ace-h11-product-card:hover .ace-h11-product-img img {
    transform: scale(1.065) rotate(-1.5deg) !important;
    filter: drop-shadow(0 15px 16px rgba(0,0,0,.12)) !important;
}

/* ACE PDP V5.59 CLEAN HOVER WITHOUT SLICE END */

/* ACE PDP V5.60 CLEAN IMAGE GIRO START
   Hover mais forte sem JS fatiador.
   Não usa ace-product-card-flip.js.
   Não altera Home/Categorias.
*/

@keyframes acePdpRelatedCleanGiro {
    0% {
        transform: perspective(900px) rotateY(0deg) rotateX(0deg) rotateZ(0deg) scale(1);
    }
    32% {
        transform: perspective(900px) rotateY(-24deg) rotateX(4deg) rotateZ(-2deg) scale(1.09);
    }
    62% {
        transform: perspective(900px) rotateY(16deg) rotateX(-2deg) rotateZ(1.5deg) scale(1.075);
    }
    100% {
        transform: perspective(900px) rotateY(0deg) rotateX(0deg) rotateZ(-1deg) scale(1.07);
    }
}

html body.catalog-product-view .ace-pdp-related-h11-exact,
html body.catalog-product-view .ace-pdp-related-h11-exact .ace-h11-container,
html body.catalog-product-view .ace-pdp-related-h11-exact .ace-h11-products,
html body.catalog-product-view .ace-pdp-related-h11-exact .ace-h11-products-grid {
    overflow: visible !important;
}

html body.catalog-product-view .ace-pdp-related-h11-exact .ace-h11-product-card {
    overflow: visible !important;
    transform: translateY(0) scale(1) !important;
    transition: transform .24s ease, box-shadow .24s ease, border-color .24s ease !important;
}

html body.catalog-product-view .ace-pdp-related-h11-exact .ace-h11-product-card:hover {
    transform: translateY(-9px) scale(1.012) !important;
    border-color: rgba(140,255,0,.82) !important;
    box-shadow: 0 30px 62px rgba(0,0,0,.16) !important;
    z-index: 12 !important;
}

html body.catalog-product-view .ace-pdp-related-h11-exact .ace-h11-product-img {
    overflow: visible !important;
    perspective: 900px !important;
    transform-style: preserve-3d !important;
}

html body.catalog-product-view .ace-pdp-related-h11-exact .ace-h11-product-img span,
html body.catalog-product-view .ace-pdp-related-h11-exact .ace-h11-product-img [class*="slice"],
html body.catalog-product-view .ace-pdp-related-h11-exact .ace-h11-product-img [class*="flip"] {
    display: none !important;
}

html body.catalog-product-view .ace-pdp-related-h11-exact .ace-h11-product-img img {
    display: block !important;
    position: static !important;
    opacity: 1 !important;
    visibility: visible !important;
    clip-path: none !important;
    mask: none !important;
    -webkit-mask: none !important;
    transform-origin: center center !important;
    transform-style: preserve-3d !important;
    backface-visibility: hidden !important;
    transition: transform .28s ease, filter .28s ease !important;
    will-change: transform !important;
}

html body.catalog-product-view .ace-pdp-related-h11-exact .ace-h11-product-card:hover .ace-h11-product-img img {
    animation: acePdpRelatedCleanGiro .72s cubic-bezier(.2,.72,.18,1) both !important;
    filter: drop-shadow(0 17px 18px rgba(0,0,0,.14)) !important;
}

/* ACE PDP V5.60 CLEAN IMAGE GIRO END */

/* ACE PDP V5.61 DYNAMIC HOVER NO SLICE START
   Hover dinamico exclusivo da PDP.
   Nao cria fatias.
   Nao usa ace-product-card-flip.js.
*/

html body.catalog-product-view .ace-pdp-related-h11-exact,
html body.catalog-product-view .ace-pdp-related-h11-exact .ace-h11-container,
html body.catalog-product-view .ace-pdp-related-h11-exact .ace-h11-products,
html body.catalog-product-view .ace-pdp-related-h11-exact .ace-h11-products-grid {
    overflow: visible !important;
}

html body.catalog-product-view .ace-pdp-related-h11-exact .ace-h11-product-card {
    overflow: visible !important;
    transform: translateY(0) scale(1) !important;
    transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease !important;
    will-change: transform !important;
}

html body.catalog-product-view .ace-pdp-related-h11-exact .ace-h11-product-card.ace-pdp-related-hover {
    transform: translateY(-9px) scale(1.012) !important;
    border-color: rgba(140,255,0,.85) !important;
    box-shadow: 0 30px 62px rgba(0,0,0,.16) !important;
    z-index: 20 !important;
}

html body.catalog-product-view .ace-pdp-related-h11-exact .ace-h11-product-img {
    overflow: visible !important;
    perspective: 900px !important;
    transform-style: preserve-3d !important;
}

html body.catalog-product-view .ace-pdp-related-h11-exact .ace-h11-product-img span,
html body.catalog-product-view .ace-pdp-related-h11-exact .ace-h11-product-img [class*="slice"],
html body.catalog-product-view .ace-pdp-related-h11-exact .ace-h11-product-img [class*="flip"] {
    display: none !important;
}

html body.catalog-product-view .ace-pdp-related-h11-exact .ace-h11-product-img img {
    display: block !important;
    position: static !important;
    opacity: 1 !important;
    visibility: visible !important;
    clip-path: none !important;
    mask: none !important;
    -webkit-mask: none !important;
    transform-origin: center center !important;
    transform-style: preserve-3d !important;
    backface-visibility: hidden !important;
    transition: transform .12s linear, filter .16s ease !important;
    will-change: transform !important;
}

html body.catalog-product-view .ace-pdp-related-h11-exact .ace-h11-product-card.ace-pdp-related-hover .ace-h11-product-img img {
    filter: drop-shadow(0 17px 18px rgba(0,0,0,.14)) !important;
}

/* ACE PDP V5.61 DYNAMIC HOVER NO SLICE END */

/* ACE PDP V5.62 REAL JS HOVER START
   Corrige o problema da V5.61: CSS antigo com !important bloqueava o JS.
   Agora o JS V5.62 aplica transform com prioridade important.
   Sem fatiar.
*/

html body.catalog-product-view .ace-pdp-related-h11-exact,
html body.catalog-product-view .ace-pdp-related-h11-exact .ace-h11-container,
html body.catalog-product-view .ace-pdp-related-h11-exact .ace-h11-products,
html body.catalog-product-view .ace-pdp-related-h11-exact .ace-h11-products-grid {
    overflow: visible !important;
}

html body.catalog-product-view .ace-pdp-related-h11-exact .ace-h11-product-img {
    overflow: visible !important;
    perspective: 900px !important;
    transform-style: preserve-3d !important;
}

html body.catalog-product-view .ace-pdp-related-h11-exact .ace-h11-product-img span,
html body.catalog-product-view .ace-pdp-related-h11-exact .ace-h11-product-img [class*="slice"],
html body.catalog-product-view .ace-pdp-related-h11-exact .ace-h11-product-img [class*="flip"] {
    display: none !important;
}

html body.catalog-product-view .ace-pdp-related-h11-exact .ace-h11-product-img img {
    animation: none !important;
    transform-origin: center center !important;
    transform-style: preserve-3d !important;
    backface-visibility: hidden !important;
    will-change: transform !important;
}

html body.catalog-product-view .ace-pdp-related-h11-exact .ace-h11-product-card:hover .ace-h11-product-img img,
html body.catalog-product-view .ace-pdp-related-h11-exact .ace-h11-product-card.is-flipping .ace-h11-product-img img,
html body.catalog-product-view .ace-pdp-related-h11-exact .ace-h11-product-card.ace-pdp-related-hover .ace-h11-product-img img {
    animation: none !important;
}

html body.catalog-product-view .ace-pdp-related-h11-exact .ace-h11-product-card.ace-pdp-related-hover {
    border-color: rgba(140,255,0,.88) !important;
    box-shadow: 0 30px 62px rgba(0,0,0,.16) !important;
    z-index: 20 !important;
}

/* ACE PDP V5.62 REAL JS HOVER END */

/* ACE PDP V5.63 CLEAN 2D HOVER START
   Remove efeito 3D/perspective que deformava a imagem.
   Remove dependencia de JS de hover/flip.
   Mantem hover visivel por CSS 2D: sobe card, sombra, borda neon e imagem com zoom/rotacao leve.
*/

html body.catalog-product-view .ace-pdp-related-h11-exact,
html body.catalog-product-view .ace-pdp-related-h11-exact .ace-h11-container,
html body.catalog-product-view .ace-pdp-related-h11-exact .ace-h11-products,
html body.catalog-product-view .ace-pdp-related-h11-exact .ace-h11-products-grid {
    overflow: visible !important;
}

html body.catalog-product-view .ace-pdp-related-h11-exact {
    padding-top: 38px !important;
}

html body.catalog-product-view .ace-pdp-related-h11-exact .ace-h11-product-card {
    overflow: visible !important;
    transform: translateY(0) scale(1) !important;
    transition: transform .24s ease, box-shadow .24s ease, border-color .24s ease !important;
    will-change: transform !important;
}

html body.catalog-product-view .ace-pdp-related-h11-exact .ace-h11-product-card:hover,
html body.catalog-product-view .ace-pdp-related-h11-exact .ace-h11-product-card.is-flipping,
html body.catalog-product-view .ace-pdp-related-h11-exact .ace-h11-product-card.ace-pdp-related-hover {
    transform: translateY(-10px) scale(1.015) !important;
    border-color: rgba(140,255,0,.88) !important;
    box-shadow: 0 30px 62px rgba(0,0,0,.16) !important;
    z-index: 20 !important;
}

html body.catalog-product-view .ace-pdp-related-h11-exact .ace-h11-product-img {
    overflow: visible !important;
    perspective: none !important;
    transform-style: flat !important;
    transform: none !important;
}

html body.catalog-product-view .ace-pdp-related-h11-exact .ace-h11-product-img span,
html body.catalog-product-view .ace-pdp-related-h11-exact .ace-h11-product-img [class*="slice"],
html body.catalog-product-view .ace-pdp-related-h11-exact .ace-h11-product-img [class*="flip"] {
    display: none !important;
}

html body.catalog-product-view .ace-pdp-related-h11-exact .ace-h11-product-img img {
    display: block !important;
    position: static !important;
    opacity: 1 !important;
    visibility: visible !important;
    clip-path: none !important;
    mask: none !important;
    -webkit-mask: none !important;
    perspective: none !important;
    transform-style: flat !important;
    backface-visibility: visible !important;
    transform-origin: center center !important;
    animation: none !important;
    transform: translateY(0) scale(1) rotate(0deg) !important;
    transition: transform .26s ease, filter .26s ease !important;
    will-change: transform !important;
    filter: none !important;
}

html body.catalog-product-view .ace-pdp-related-h11-exact .ace-h11-product-card:hover .ace-h11-product-img img,
html body.catalog-product-view .ace-pdp-related-h11-exact .ace-h11-product-card.is-flipping .ace-h11-product-img img,
html body.catalog-product-view .ace-pdp-related-h11-exact .ace-h11-product-card.ace-pdp-related-hover .ace-h11-product-img img {
    animation: none !important;
    transform: translateY(-7px) scale(1.13) rotate(-3deg) !important;
    filter: drop-shadow(0 18px 18px rgba(0,0,0,.14)) !important;
}

/* ACE PDP V5.63 CLEAN 2D HOVER END */

/* ACE PDP V5.66 REAL CATEGORY CARD HOVER START
   Diagnostico:
   - Categoria usa ace-category-home-card-clone-v1.css.
   - PDP tinha hover proprio forçando scale/rotate na imagem.
   Correção:
   - Mantém o card com comportamento de categoria/home.
   - Remove transform/rotate/zoom inventado da imagem.
*/

html body.catalog-product-view .ace-pdp-related-h11-exact,
html body.catalog-product-view .ace-pdp-related-h11-exact .ace-h11-container,
html body.catalog-product-view .ace-pdp-related-h11-exact .ace-h11-products,
html body.catalog-product-view .ace-pdp-related-h11-exact .ace-h11-products-grid {
    overflow: visible !important;
}

html body.catalog-product-view .ace-pdp-related-h11-exact .ace-h11-product-card {
    position: relative !important;
    background: #fff !important;
    border: 1px solid #e2e6dc !important;
    border-radius: 18px !important;
    box-shadow: 0 12px 28px rgba(0,0,0,.07) !important;
    overflow: hidden !important;
    transform: translateY(0) !important;
    transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease !important;
    will-change: auto !important;
}

html body.catalog-product-view .ace-pdp-related-h11-exact .ace-h11-product-card:hover,
html body.catalog-product-view .ace-pdp-related-h11-exact .ace-h11-product-card.is-flipping,
html body.catalog-product-view .ace-pdp-related-h11-exact .ace-h11-product-card.ace-pdp-related-hover {
    transform: translateY(-4px) !important;
    border-color: rgba(140,255,0,.82) !important;
    box-shadow: 0 18px 38px rgba(0,0,0,.12) !important;
}

html body.catalog-product-view .ace-pdp-related-h11-exact .ace-h11-product-img {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    overflow: hidden !important;
    perspective: none !important;
    transform: none !important;
    transform-style: flat !important;
}

html body.catalog-product-view .ace-pdp-related-h11-exact .ace-h11-product-img span,
html body.catalog-product-view .ace-pdp-related-h11-exact .ace-h11-product-img [class*="slice"],
html body.catalog-product-view .ace-pdp-related-h11-exact .ace-h11-product-img [class*="flip"] {
    display: none !important;
}

html body.catalog-product-view .ace-pdp-related-h11-exact .ace-h11-product-img img {
    display: block !important;
    opacity: 1 !important;
    visibility: visible !important;
    max-width: 100% !important;
    object-fit: contain !important;
    animation: none !important;
    transform: none !important;
    filter: none !important;
    clip-path: none !important;
    mask: none !important;
    -webkit-mask: none !important;
    transition: none !important;
    will-change: auto !important;
}

html body.catalog-product-view .ace-pdp-related-h11-exact .ace-h11-product-card:hover .ace-h11-product-img img,
html body.catalog-product-view .ace-pdp-related-h11-exact .ace-h11-product-card.is-flipping .ace-h11-product-img img,
html body.catalog-product-view .ace-pdp-related-h11-exact .ace-h11-product-card.ace-pdp-related-hover .ace-h11-product-img img {
    animation: none !important;
    transform: none !important;
    filter: none !important;
}

/* ACE PDP V5.66 REAL CATEGORY CARD HOVER END */

/* ACE PDP V5.67 CARD HOVER IMAGE FIXED START
   Hover visivel no card, sem mexer na imagem.
   Objetivo: card sobe, borda neon e sombra como efeito comercial.
   Evita fatiamento/deformacao porque a imagem permanece fixa.
*/

html body.catalog-product-view .ace-pdp-related-h11-exact,
html body.catalog-product-view .ace-pdp-related-h11-exact .ace-h11-container,
html body.catalog-product-view .ace-pdp-related-h11-exact .ace-h11-products,
html body.catalog-product-view .ace-pdp-related-h11-exact .ace-h11-products-grid {
    overflow: visible !important;
}

html body.catalog-product-view .ace-pdp-related-h11-exact .ace-h11-product-card {
    position: relative !important;
    overflow: hidden !important;
    border: 1px solid rgba(226,230,220,.95) !important;
    box-shadow: 0 12px 30px rgba(0,0,0,.06) !important;
    transform: translateY(0) scale(1) !important;
    transition:
        transform .22s ease,
        box-shadow .22s ease,
        border-color .22s ease,
        background .22s ease !important;
    will-change: transform, box-shadow !important;
}

html body.catalog-product-view .ace-pdp-related-h11-exact .ace-h11-product-card:hover,
html body.catalog-product-view .ace-pdp-related-h11-exact .ace-h11-product-card:focus-within {
    transform: translateY(-8px) scale(1.01) !important;
    border-color: rgba(140,255,0,.98) !important;
    box-shadow:
        0 26px 54px rgba(0,0,0,.16),
        0 0 0 3px rgba(140,255,0,.13) !important;
    z-index: 30 !important;
}

html body.catalog-product-view .ace-pdp-related-h11-exact .ace-h11-product-img {
    overflow: hidden !important;
    perspective: none !important;
    transform: none !important;
    transform-style: flat !important;
}

html body.catalog-product-view .ace-pdp-related-h11-exact .ace-h11-product-img span,
html body.catalog-product-view .ace-pdp-related-h11-exact .ace-h11-product-img [class*="slice"],
html body.catalog-product-view .ace-pdp-related-h11-exact .ace-h11-product-img [class*="flip"] {
    display: none !important;
}

html body.catalog-product-view .ace-pdp-related-h11-exact .ace-h11-product-img img,
html body.catalog-product-view .ace-pdp-related-h11-exact .ace-h11-product-card:hover .ace-h11-product-img img,
html body.catalog-product-view .ace-pdp-related-h11-exact .ace-h11-product-card:focus-within .ace-h11-product-img img,
html body.catalog-product-view .ace-pdp-related-h11-exact .ace-h11-product-card.is-flipping .ace-h11-product-img img,
html body.catalog-product-view .ace-pdp-related-h11-exact .ace-h11-product-card.ace-pdp-related-hover .ace-h11-product-img img {
    animation: none !important;
    transform: none !important;
    filter: none !important;
    clip-path: none !important;
    mask: none !important;
    -webkit-mask: none !important;
    transition: none !important;
    will-change: auto !important;
}

html body.catalog-product-view .ace-pdp-related-h11-exact .ace-h11-product-btn {
    transition: transform .18s ease, box-shadow .18s ease, background .18s ease !important;
}

html body.catalog-product-view .ace-pdp-related-h11-exact .ace-h11-product-card:hover .ace-h11-product-btn,
html body.catalog-product-view .ace-pdp-related-h11-exact .ace-h11-product-card:focus-within .ace-h11-product-btn {
    transform: translateY(-1px) !important;
    box-shadow: 0 12px 24px rgba(0,0,0,.18) !important;
}

/* ACE PDP V5.67 CARD HOVER IMAGE FIXED END */
