.elementor-257 .elementor-element.elementor-element-a98224f{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}.elementor-257 .elementor-element.elementor-element-a98224f:not(.elementor-motion-effects-element-type-background), .elementor-257 .elementor-element.elementor-element-a98224f > .elementor-motion-effects-container > .elementor-motion-effects-layer{background-color:transparent;background-image:linear-gradient(180deg, #ADADAD 0%, #f2295b 100%);}.elementor-widget-heading .elementor-heading-title{font-family:var( --e-global-typography-primary-font-family ), Sans-serif;font-weight:var( --e-global-typography-primary-font-weight );color:var( --e-global-color-primary );}.elementor-257 .elementor-element.elementor-element-300c171{text-align:center;}.elementor-257 .elementor-element.elementor-element-300c171 .elementor-heading-title{font-family:"Roboto", Sans-serif;font-size:38px;font-weight:600;-webkit-text-stroke-width:1px;stroke-width:1px;-webkit-text-stroke-color:#000;stroke:#000;color:#000000;}.elementor-257 .elementor-element.elementor-element-6e92692{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}:root{--page-title-display:none;}/* Start custom CSS for container, class: .elementor-element-6e92692 *//* ===== ZAVELO PRODUCT GRID ===== */

.woocommerce ul.products {
    display: grid !important;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 25px !important;
    align-items: stretch;
}

.woocommerce ul.products li.product {
    width: 100% !important;
    margin: 0 !important;
    padding: 15px !important;
    display: flex !important;
    flex-direction: column;
    background: #ffffff;
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    animation: zaveloFadeUp 0.7s ease both;
}

/* Product entrance animation */
.woocommerce ul.products li.product:nth-child(2) {
    animation-delay: 0.12s;
}

.woocommerce ul.products li.product:nth-child(3) {
    animation-delay: 0.24s;
}

.woocommerce ul.products li.product:nth-child(4) {
    animation-delay: 0.36s;
}

/* Card hover */
.woocommerce ul.products li.product:hover {
    transform: translateY(-10px);
    box-shadow: 0 16px 35px rgba(0, 0, 0, 0.16);
}

/* Same image height */
.woocommerce ul.products li.product a img {
    width: 100% !important;
    height: 340px !important;
    object-fit: contain !important;
    object-position: center;
    margin: 0 0 16px !important;
    transition: transform 0.45s ease;
}

/* Image zoom animation */
.woocommerce ul.products li.product:hover a img {
    transform: scale(1.06);
}

/* Equal title height */
.woocommerce ul.products li.product .woocommerce-loop-product__title {
    min-height: 58px;
    margin: 0 0 8px !important;
    padding: 0 !important;
    color: #171717;
    font-size: 18px !important;
    line-height: 1.4;
    font-weight: 600;
}

/* Price styling */
.woocommerce ul.products li.product .price {
    min-height: 35px;
    margin: 0 0 15px !important;
    color: #b38a3e !important;
    font-size: 17px !important;
    font-weight: 700;
}

/* Keep button at bottom */
.woocommerce ul.products li.product .button {
    width: 100% !important;
    min-height: 54px;
    margin-top: auto !important;
    padding: 16px 20px !important;
    display: flex !important;
    align-items: center;
    justify-content: center;
    border: 1px solid #171717 !important;
    border-radius: 8px !important;
    background: #171717 !important;
    color: #ffffff !important;
    font-size: 0 !important;
    font-weight: 600;
    text-align: center;
    overflow: hidden;
    position: relative;
    transition: all 0.35s ease;
}

/* Change Select options text to Buy Now */
.woocommerce ul.products li.product .button::after {
    content: "Buy Now";
    font-size: 17px;
    letter-spacing: 0.5px;
    position: relative;
    z-index: 2;
}

/* Gold hover effect */
.woocommerce ul.products li.product .button:hover {
    color: #171717 !important;
    background: #d4af37 !important;
    border-color: #d4af37 !important;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(212, 175, 55, 0.35);
}

/* Entrance animation */
@keyframes zaveloFadeUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Tablet */
@media (max-width: 1024px) {
    .woocommerce ul.products {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

/* Mobile */
@media (max-width: 600px) {
    .woocommerce ul.products {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 12px !important;
    }

    .woocommerce ul.products li.product {
        padding: 10px !important;
    }

    .woocommerce ul.products li.product a img {
        height: 210px !important;
    }

    .woocommerce ul.products li.product .woocommerce-loop-product__title {
        min-height: 55px;
        font-size: 14px !important;
    }

    .woocommerce ul.products li.product .price {
        font-size: 14px !important;
    }

    .woocommerce ul.products li.product .button {
        min-height: 46px;
        padding: 12px 8px !important;
    }

    .woocommerce ul.products li.product .button::after {
        font-size: 14px;
    }
}/* End custom CSS */