.elementor-product-list {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
    list-style: none;
    margin: 1rem 0;
    padding: 0;
}

.elementor-product-item {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    background: #fdfdfd;
    border: 1px solid #eee;
    border-radius: 8px;
    padding: 0.5rem 1rem;
    flex-wrap: nowrap;
}

.product-title {
    font-weight: bold;
    font-size: 1.1rem;
    color: #073F77;
    min-width: 300px;
}

.product-price-group {
    font-size: 13px;
    color: black;
    margin: 0.2rem 1rem;
    white-space: normal;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 0.8rem;
    line-height: 1.3;
}

.product-price-group > span {
    display: inline;
    white-space: nowrap;
}

.product-price-group strong {
    color: #388E3C;
    font-weight: bold;
}

.elementor-product-item .button {
    position: relative;
    padding: 0.4rem 1rem;
    text-decoration: none;
    font-family: inherit;
    font-weight: 600;
    background: #FFA000;
    color: #fff;
    border-radius: 4px;
    transition: background 0.2s;
    cursor: pointer;
}

.elementor-product-item .button.loading::after {
    content: '';
    position: absolute;
    right: 10px;
    top: 50%;
    width: 14px;
    height: 14px;
    margin-top: -7px;
    border: 2px solid #fff;
    border-top: 2px solid transparent;
    border-radius: 50%;
    animation: spin 0.6s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.elementor-product-item .button:hover {
    background: #e58f00;
}

.product-actions {
    display: flex;
    gap: 0.5rem;
    flex-wrap: nowrap;
}

@media (max-width: 768px) {
    .elementor-product-item {
        padding: 0.8rem 0.6rem;
        flex-direction: column;
        align-items: flex-start;
    }

    .product-title {
        min-width: 0 !important;
    }

    .product-price-group,
    .product-actions {
        margin-top: 0.4rem;
    }

    .product-price-group {
        display: flex;
        flex-direction: column;
        line-height: 0.8;
        gap: 0.2rem;
    }

    .product-price-group > span {
        display: block;
        line-height: 0.8;
        margin-bottom: 0;
        white-space: normal;
    }
}
