/*padrao*/

/* Reset */
*,
*::before,
*::after {
    box-sizing: border-box;
}

/* Body */
body {
    margin: 0;
    padding: 0;
    background: #fff;
    color: #222;

    font-family:
        -apple-system,
        BlinkMacSystemFont,
        "Segoe UI",
        Roboto,
        Helvetica,
        Arial,
        sans-serif;

    font-size: 15px;
    line-height: 1.5;

    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

/* Tipografia */
h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0 0 14px;
    line-height: 1.2;
    font-weight: 600;
    color: #111;
}

h1 {
    font-size: 34px;
}

h2 {
    font-size: 28px;
}

h3 {
    font-size: 22px;
}

h4 {
    font-size: 18px;
}

h5 {
    font-size: 16px;
}

h6 {
    font-size: 14px;
}

p {
    margin: 0 0 16px;
}

/* Links */
a {
    color: inherit;
    text-decoration: none;
    transition: .2s ease;
}

/* Inputs */
input,
textarea,
select,
button {
    font: inherit;
}

/* Campos */
input,
textarea,
select {
    width: 100%;
    padding: 12px 14px;

    border: 1px solid #dcdcdc;
    border-radius: 10px;

    background: #fff;
    color: #222;

    outline: none;
    transition: .2s ease;
}

input:focus,
textarea:focus,
select:focus {
    border-color: #00a000;
    box-shadow: 0 0 0 3px rgba(0,160,0,.08);
}

/* Botões */
button,
.button,
input[type="submit"] {
    border: 0;
    border-radius: 10px;

    padding: 12px 18px;

    background: #00a000;
    color: #fff;

    font-weight: 600;
    cursor: pointer;

    transition: .2s ease;
}

button:hover,
.button:hover,
input[type="submit"]:hover {
    opacity: .92;
}

/* Containers */
.container,
.elementor-container,
.e-con-inner {
    width: 100%;
}

/* Cards */
.card,
.elementor-widget-container,
.woocommerce ul.products li.product {
    border-radius: 14px;
}

.added_to_cart wc-forward{
    background-color: red;
}

/* Imagens */
img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Seleção */
::selection {
    background: #00a000;
    color: #fff;
}

/* Scroll */
::-webkit-scrollbar {
    width: 10px;
    height: 10px;
}

::-webkit-scrollbar-thumb {
    background: rgba(0,0,0,.18);
    border-radius: 20px;
}

::-webkit-scrollbar-track {
    background: transparent;
}

/* Mobile */
@media (max-width: 768px) {

    body {
        font-size: 14px;
    }

    h1 {
        font-size: 28px;
    }

    h2 {
        font-size: 24px;
    }

    h3 {
        font-size: 20px;
    }

}

/* Card */
.woocommerce ul.products li.product {
    position: relative;
    overflow: hidden;
}

/* Area da imagem */
.woocommerce ul.products li.product .amotora-image-area {
    position: relative;
    height: 270px;
    overflow: hidden;
    background: #fff;
}

/* Imagem principal */
.woocommerce ul.products li.product .amotora-image-area > img:not(.amotora-second-image) {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
    transition: opacity .75s ease;
}

/* Troca de imagem */
.woocommerce ul.products li.product .amotora-image-area > img.amotora-second-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    background: #fff;
    opacity: 0;
    z-index: 5;
    transition: opacity .75s ease;
}

.woocommerce ul.products li.product:hover .amotora-image-area > img.amotora-second-image {
    opacity: 1;
}

span.onsale {
    margin-top: 10px !important;
}

/* Botao */
.woocommerce ul.products li.product .woocommerce-loop-product__buttons {
    position: absolute;
    left: 0;
    right: 0;
    top: 228px;
    z-index: 20;
    opacity: 0;
    transform: translateY(14px);
    transition: opacity .35s ease, transform .35s ease;
    pointer-events: none;
}

.woocommerce ul.products li.product:hover .woocommerce-loop-product__buttons {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.woocommerce ul.products li.product .woocommerce-loop-product__buttons .button {
    width: 100%;
    margin: 0;
    border-radius: 4px 4px 0 0;
    text-align: center;
}

/* Espaco titulo */
.woocommerce ul.products li.product .woocommerce-loop-product__title {
    padding: 10px !important;
}


/* Galeria */
.amotora-product-gallery {
    width: 100%;
    max-width: 600px;
}

/* Imagem principal */
.amotora-product-gallery .amotora-gallery-main {
    width: 100%;
    aspect-ratio: 1 / 1;
    background: #fff;
    overflow: hidden;
}

.amotora-product-gallery .amotora-gallery-main .splide__track,
.amotora-product-gallery .amotora-gallery-main .splide__list,
.amotora-product-gallery .amotora-gallery-main .splide__slide {
    height: 100%;
}

.amotora-product-gallery .amotora-gallery-main img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    display: block;
    cursor: grab;
}

.amotora-product-gallery .amotora-gallery-main:active img {
    cursor: grabbing;
}

/* Setas */
.amotora-product-gallery .amotora-gallery-main .splide__arrow {
    background: transparent !important;
    opacity: 1 !important;
}

.amotora-product-gallery .amotora-gallery-main .splide__arrow svg {
    fill: #fff !important;
    filter: drop-shadow(0 1px 1px rgba(0,0,0,.75));
}

/* Thumbs */
.amotora-product-gallery .amotora-gallery-thumbs {
    margin-top: 14px;
    max-width: 600px;
}

.amotora-product-gallery .amotora-gallery-thumbs .splide__track {
    overflow: hidden;
    padding: 0 !important;
}

.amotora-product-gallery .amotora-gallery-thumbs .splide__list {
    align-items: center;
}

/* Thumb */
.amotora-product-gallery .amotora-gallery-thumbs .splide__slide {
    width: 90px !important;
    height: 90px !important;
    min-width: 90px !important;
    min-height: 90px !important;
    max-width: 90px !important;
    max-height: 90px !important;
    border: 0 !important;
    box-shadow: none !important;
    background: transparent !important;
    opacity: .35;
    transition: opacity .25s ease;
    overflow: hidden;
    cursor: pointer;
}


.amotora-product-gallery .amotora-gallery-thumbs .splide__slide.is-active {
    opacity: 1;
}

.amotora-product-gallery .amotora-gallery-thumbs img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    display: block;
}

@media (max-width: 768px) {
    .amotora-product-gallery .amotora-gallery-thumbs .splide__slide {
        width: 70px !important;
        height: 70px !important;
        min-width: 70px !important;
        min-height: 70px !important;
        max-width: 70px !important;
        max-height: 70px !important;
    }
}


/* Products*/

/* Products */


.amotora-product-attributes {
    width: 100%;
}

.amotora-product-details {
    width: 100%;
    margin-top: 24px;
    padding: 20px;
    box-sizing: border-box;
    border-radius: 10px;
    background: #f4f4f4;
}

.amotora-product-attribute-row {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    padding: 10px 0;
    border-bottom: 1px solid #ddd;
}

.amotora-product-attribute-label {
    font-weight: 700;
    color: #111;
}

.amotora-product-attribute-value {
    font-weight: 600;
    color: #666;
    text-align: right;
}

.amotora-product-documents {
    margin-top: 30px;
    text-align: left;
}

.amotora-product-documents-list {
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 14px;
}

.amotora-product-document-link {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-weight: 600;
    font-size: 15px;
    color: #111;
    text-decoration: none;
    text-transform: none;
}

.amotora-product-document-link:hover,
.amotora-product-document-link:focus {
    color: #111;
    text-decoration: none;
    opacity: 0.85;
}

.amotora-product-document-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 28px;
    height: 28px;
    padding: 0 6px;
    background: #20c463;
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    border-radius: 2px;
    line-height: 1;
}

.amotora-product-document-title {
    text-transform: none;
}

@media (max-width: 600px) {
    .amotora-product-attribute-row {
        gap: 10px;
    }

    .amotora-product-attribute-label,
    .amotora-product-attribute-value {
        font-size: 14px;
    }

    .amotora-product-documents-list {
        gap: 10px;
    }
}

/*shared product*/

.amotora-product-meta-share {
    width: 100%;
    margin: 15px 0;
    font-size: 14px;
    color: #666;
}

.amotora-product-meta-line {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
    align-items: center;
    margin-bottom: 18px;
}

.amotora-product-meta-item strong,
.amotora-product-share-line strong {
    color: #111;
    font-weight: 700;
}

.amotora-product-meta-item a {
    color: #666;
    text-decoration: none;
    font-weight: 600;
}

.amotora-product-meta-item a:hover {
    text-decoration: none;
    color: #111;
}

.amotora-product-share-line {
    display: flex;
    align-items: center;
    gap: 10px;
}

.amotora-product-share-line a {
    color: #666;
    font-weight: 700;
    text-decoration: none;
    line-height: 1;
}

.amotora-product-share-line a:hover {
    color: #111;
    text-decoration: none;
}

/*short descrition*/

.amotora-product-short-description {
    width: 100%;
    margin: 15px 0;
    font-size: 14px;
    line-height: 1.6;
    color: #666;
}

.amotora-product-short-description-link {
    color: #111;
    font-weight: 700;
    text-decoration: none;
}

.amotora-product-short-description-link:hover,
.amotora-product-short-description-link:focus {
    color: #111;
    text-decoration: none;
}


/*outros cards*/

/* Card */

.woocommerce ul.products li.product,
.woocommerce-page ul.products li.product,
.elementor-widget-woocommerce-products ul.products li.product,
.elementor-widget-woocommerce-product-related ul.products li.product,
.related.products ul.products li.product,
.upsells.products ul.products li.product,
.up-sells.products ul.products li.product,
.cross-sells ul.products li.product {
    position: relative;
    overflow: hidden;
}

/* Area da imagem */

.woocommerce ul.products li.product .amotora-image-area,
.woocommerce-page ul.products li.product .amotora-image-area,
.elementor-widget-woocommerce-products ul.products li.product .amotora-image-area,
.elementor-widget-woocommerce-product-related ul.products li.product .amotora-image-area,
.related.products ul.products li.product .amotora-image-area,
.upsells.products ul.products li.product .amotora-image-area,
.up-sells.products ul.products li.product .amotora-image-area,
.cross-sells ul.products li.product .amotora-image-area {
    position: relative;
    height: 270px;
    overflow: hidden;
    background: #fff;
}

/* Imagem principal */

.woocommerce ul.products li.product .amotora-image-area img:not(.amotora-second-image),
.woocommerce-page ul.products li.product .amotora-image-area img:not(.amotora-second-image),
.elementor-widget-woocommerce-products ul.products li.product .amotora-image-area img:not(.amotora-second-image),
.elementor-widget-woocommerce-product-related ul.products li.product .amotora-image-area img:not(.amotora-second-image),
.related.products ul.products li.product .amotora-image-area img:not(.amotora-second-image),
.upsells.products ul.products li.product .amotora-image-area img:not(.amotora-second-image),
.up-sells.products ul.products li.product .amotora-image-area img:not(.amotora-second-image),
.cross-sells ul.products li.product .amotora-image-area img:not(.amotora-second-image) {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
    transition: opacity .75s ease;
}

/* Segunda imagem */

.woocommerce ul.products li.product .amotora-image-area img.amotora-second-image,
.woocommerce-page ul.products li.product .amotora-image-area img.amotora-second-image,
.elementor-widget-woocommerce-products ul.products li.product .amotora-image-area img.amotora-second-image,
.elementor-widget-woocommerce-product-related ul.products li.product .amotora-image-area img.amotora-second-image,
.related.products ul.products li.product .amotora-image-area img.amotora-second-image,
.upsells.products ul.products li.product .amotora-image-area img.amotora-second-image,
.up-sells.products ul.products li.product .amotora-image-area img.amotora-second-image,
.cross-sells ul.products li.product .amotora-image-area img.amotora-second-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    background: #fff;
    opacity: 0;
    z-index: 5;
    transition: opacity .75s ease;
}

.woocommerce ul.products li.product:hover .amotora-image-area img.amotora-second-image,
.woocommerce-page ul.products li.product:hover .amotora-image-area img.amotora-second-image,
.elementor-widget-woocommerce-products ul.products li.product:hover .amotora-image-area img.amotora-second-image,
.elementor-widget-woocommerce-product-related ul.products li.product:hover .amotora-image-area img.amotora-second-image,
.related.products ul.products li.product:hover .amotora-image-area img.amotora-second-image,
.upsells.products ul.products li.product:hover .amotora-image-area img.amotora-second-image,
.up-sells.products ul.products li.product:hover .amotora-image-area img.amotora-second-image,
.cross-sells ul.products li.product:hover .amotora-image-area img.amotora-second-image {
    opacity: 1;
}

/* Oferta */

.woocommerce span.onsale,
.woocommerce-page span.onsale {
    margin-top: 10px !important;
    z-index: 25;
}

/* Botao */

.woocommerce ul.products li.product > .button,
.woocommerce-page ul.products li.product > .button,
.elementor-widget-woocommerce-products ul.products li.product > .button,
.elementor-widget-woocommerce-product-related ul.products li.product > .button,
.related.products ul.products li.product > .button,
.upsells.products ul.products li.product > .button,
.up-sells.products ul.products li.product > .button,
.cross-sells ul.products li.product > .button,
.woocommerce ul.products li.product .woocommerce-loop-product__buttons,
.woocommerce-page ul.products li.product .woocommerce-loop-product__buttons {
    position: absolute;
    left: 0;
    right: 0;
    top: 228px;
    z-index: 20;
    opacity: 0;
    transform: translateY(14px);
    transition: opacity .35s ease, transform .35s ease;
    pointer-events: none;
}

.woocommerce ul.products li.product:hover > .button,
.woocommerce-page ul.products li.product:hover > .button,
.elementor-widget-woocommerce-products ul.products li.product:hover > .button,
.elementor-widget-woocommerce-product-related ul.products li.product:hover > .button,
.related.products ul.products li.product:hover > .button,
.upsells.products ul.products li.product:hover > .button,
.up-sells.products ul.products li.product:hover > .button,
.cross-sells ul.products li.product:hover > .button,
.woocommerce ul.products li.product:hover .woocommerce-loop-product__buttons,
.woocommerce-page ul.products li.product:hover .woocommerce-loop-product__buttons {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.woocommerce ul.products li.product > .button,
.woocommerce-page ul.products li.product > .button,
.elementor-widget-woocommerce-products ul.products li.product > .button,
.elementor-widget-woocommerce-product-related ul.products li.product > .button,
.related.products ul.products li.product > .button,
.upsells.products ul.products li.product > .button,
.up-sells.products ul.products li.product > .button,
.cross-sells ul.products li.product > .button,
.woocommerce ul.products li.product .woocommerce-loop-product__buttons .button,
.woocommerce-page ul.products li.product .woocommerce-loop-product__buttons .button {
    width: 100%;
    margin: 0;
    border-radius: 4px 4px 0 0;
    text-align: center;
}

/* Titulo */

.woocommerce ul.products li.product .woocommerce-loop-product__title,
.woocommerce-page ul.products li.product .woocommerce-loop-product__title,
.elementor-widget-woocommerce-products ul.products li.product .woocommerce-loop-product__title,
.elementor-widget-woocommerce-product-related ul.products li.product .woocommerce-loop-product__title,
.related.products ul.products li.product .woocommerce-loop-product__title,
.upsells.products ul.products li.product .woocommerce-loop-product__title,
.up-sells.products ul.products li.product .woocommerce-loop-product__title,
.cross-sells ul.products li.product .woocommerce-loop-product__title {
    padding: 10px !important;
}

/* Mobile */

@media (max-width: 768px) {
    .woocommerce ul.products li.product .amotora-image-area,
    .woocommerce-page ul.products li.product .amotora-image-area,
    .elementor-widget-woocommerce-products ul.products li.product .amotora-image-area,
    .elementor-widget-woocommerce-product-related ul.products li.product .amotora-image-area,
    .related.products ul.products li.product .amotora-image-area,
    .upsells.products ul.products li.product .amotora-image-area,
    .up-sells.products ul.products li.product .amotora-image-area,
    .cross-sells ul.products li.product .amotora-image-area {
        height: 210px;
    }

    .woocommerce ul.products li.product > .button,
    .woocommerce-page ul.products li.product > .button,
    .elementor-widget-woocommerce-products ul.products li.product > .button,
    .elementor-widget-woocommerce-product-related ul.products li.product > .button,
    .related.products ul.products li.product > .button,
    .upsells.products ul.products li.product > .button,
    .up-sells.products ul.products li.product > .button,
    .cross-sells ul.products li.product > .button,
    .woocommerce ul.products li.product .woocommerce-loop-product__buttons,
    .woocommerce-page ul.products li.product .woocommerce-loop-product__buttons {
        top: 168px;
    }
}

.woocommerce .woocommerce-ordering {
    margin: 0 0 3em!important;
}

/*carrinho*/

.wc-block-components-sidebar-layout.wc-block-cart.wp-block-woocommerce-filled-cart-block.is-large {
    padding-bottom: 120px;
    padding-top: 100px;
}

/*botao login*/

.amotora-button-login {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    color: #666;
    font-size: 16px;
    transition: .2s ease;
    font-weight: 600;
}

.amotora-button-login:hover {
    color: #000;
}

.amotora-button-login-icon {
    width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.amotora-button-login-icon svg {
    width: 100%;
    height: 100%;
    display: block;
}

.amotora-button-login-text {
    line-height: 1;
}
/*estoque*/

.woocommerce div.product p.stock {
    display: none;
}

/*banners*/

.amotora-banners-slider {
    width: 100%;
}

.amotora-banner-link,
.amotora-banner-no-link,
.amotora-banner-picture {
    display: block;
    width: 100%;
}

.amotora-banner-image {
    display: block;
    width: 100%;
    height: auto;
}

/*slide cart*/

/* Esconde botão "Ver carrinho" */
.elementor-button--view-cart {
    display: none !important;
}

/* Subtotal */
.elementor-menu-cart__subtotal {
    text-align: center;
    padding: 18px 0;
    margin-top: 15px;
    border-top: 1px solid #ececec;
    font-size: 20px;
    font-weight: 500;
}

.elementor-menu-cart__subtotal strong {
    font-weight: 600;
}

/* Área dos botões */
.elementor-menu-cart__footer-buttons {
    display: flex !important;
    flex-direction: column !important;
    margin-top: 10px;
}

/* Botão principal */
.elementor-button--checkout {
    width: 100%;
    min-height: 46px;
    border-radius: 6px;
    background: #2ea44f !important;
    border-color: #2ea44f !important;
    font-size: 15px;
    font-weight: 600;
    transition: all .2s ease;
}

.elementor-button--checkout:hover {
    background: #278a43 !important;
    border-color: #278a43 !important;
    transform: translateY(-1px);
}

/* Texto */
.elementor-button--checkout .elementor-button-text {
    line-height: 1;
}