.elementor-7 .elementor-element.elementor-element-e6978fe{--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;}/* Start custom CSS for shortcode, class: .elementor-element-fd90eca *//* --- LAYOUT & GRID --- */
.elementor-7 .elementor-element.elementor-element-fd90eca {
    --ring-blue: #2442A1;
    --ring-purple: #A36FF6;
    --img-size: 150px;
}
/* Force 5 columns on PC */
.elementor-7 .elementor-element.elementor-element-fd90eca .woocommerce ul.products {
    display: grid !important;
    grid-template-columns: repeat(5, 1fr) !important;
    gap: 30px !important;
    margin: 0 !important;
    padding: 20px 0 !important;
}
/* Force 2 columns on Mobile */
@media (max-width: 767px) {
    .elementor-7 .elementor-element.elementor-element-fd90eca .woocommerce ul.products {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 15px !important;
    }
}
/* --- PRODUCT CARD --- */
.elementor-7 .elementor-element.elementor-element-fd90eca .woocommerce ul.products li.product {
    width: 100% !important;
    margin: 0 !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    text-align: center !important;
    background: transparent;
    padding: 0 !important;
}
/* --- IMAGE & RING WRAPPER --- */
/* Target the link wrapping the image */
.elementor-7 .elementor-element.elementor-element-fd90eca .woocommerce ul.products li.product a.woocommerce-LoopProduct-link {
    position: relative;
    display: flex !important;
    flex-direction: column;
    align-items: center;
    width: 100%;
    text-decoration: none;
}
/* Create the Image Container */
.elementor-7 .elementor-element.elementor-element-fd90eca .woocommerce ul.products li.product a.woocommerce-LoopProduct-link::before {
    display: none; /* Hide default WC decorations */
}
/* Standard WC image styling */
.elementor-7 .elementor-element.elementor-element-fd90eca .woocommerce ul.products li.product img {
    width: var(--img-size) !important;
    height: var(--img-size) !important;
    border-radius: 50% !important;
    object-fit: cover;
    margin: 15px 0 !important;
    z-index: 5;
    background: #fff;
    border: 5px solid #fff; /* White gap between image and rings */
}
/* --- ROTATING RINGS --- */
/* Single ring using one path with 3 colors */
.elementor-7 .elementor-element.elementor-element-fd90eca .woocommerce ul.products li.product a.woocommerce-LoopProduct-link::after {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    width: calc(var(--img-size) + 30px);
    height: calc(var(--img-size) + 30px);
    margin-left: calc((var(--img-size) + 30px) / -2);
    margin-top: 0px;
    border-radius: 50%;
    border: 3px solid transparent;
    border-top-color: var(--ring-blue);
    border-right-color: #FFFFFF;
    border-bottom-color: var(--ring-purple);
    border-left-color: #FFFFFF;
    animation: spin-cw 6s linear infinite;
    pointer-events: none;
    z-index: 1;
}
/* --- TITLE & TEXT --- */
.elementor-7 .elementor-element.elementor-element-fd90eca .woocommerce-loop-product__title {
    color: #333 !important;
    font-size: 16px !important;
    font-weight: 600 !important;
    margin-top: 20px !important;
    padding: 0 !important;
    line-height: 1.2;
}
/* Hide price/add to cart if you only want the "Recent Product" look */
.elementor-7 .elementor-element.elementor-element-fd90eca .price, 
.elementor-7 .elementor-element.elementor-element-fd90eca .add_to_cart_button {
    display: none !important;
}
/* --- ANIMATIONS --- */
@keyframes spin-cw {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}
@keyframes spin-ccw {
    from { transform: rotate(360deg); }
    to { transform: rotate(0deg); }
}
/* Mobile Adjustments */
@media (max-width: 767px) {
    .elementor-7 .elementor-element.elementor-element-fd90eca {
        --img-size: 110px;
    }
    .elementor-7 .elementor-element.elementor-element-fd90eca .woocommerce ul.products li.product a.woocommerce-LoopProduct-link::after {
        margin-top: 0px;
    }
}/* End custom CSS */