/* Site-wide visual tweaks for Elementor */

/* Improve section spacing on large screens, keep mobile tight */
@media (min-width: 992px) {
    .elementor-section {
        margin-bottom: 24px;
    }
}

/* Soften card/images with subtle radius */
.elementor-widget-image img,
.elementor-image-box img,
.woocommerce ul.products li.product a img {
    border-radius: 6px;
    overflow: hidden;
}

/* Emphasize primary buttons, reduce overbearing shadows */
.elementor-button,
a.button,
button,
.woocommerce a.button,
.woocommerce button.button {
    border-radius: 6px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, .08);
    transition: transform .08s ease-in-out, box-shadow .12s ease-in-out;
}

.elementor-button:hover,
a.button:hover,
button:hover,
.woocommerce a.button:hover,
.woocommerce button.button:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 14px rgba(0, 0, 0, .10);
}

/* Tighter heading line-heights for hero areas */
.elementor-heading-title {
    line-height: 1.15;
}

/* Ensure column gaps don’t collapse at tablet widths */
@media (min-width: 768px) and (max-width: 991px) {
    .elementor-column-gap-default .elementor-column>.elementor-widget-wrap {
        padding-left: 16px;
        padding-right: 16px;
    }
}

/* Subtle divider style for sections */
.elementor-section+.elementor-section {
    border-top: 1px solid rgba(0, 0, 0, .06);
    padding-top: 16px;
}