/* PageBuilder mobile/desktop image toggle — missing in Hyva (uses Tailwind, not LESS) */
@media (max-width: 767px) {
    .pagebuilder-mobile-hidden {
        display: none !important;
    }
}
@media (min-width: 768px) {
    .pagebuilder-mobile-only {
        display: none !important;
    }
}

/* PageBuilder images — respect native dimensions, don't stretch beyond original size */
figure[data-content-type="image"] img {
    width: auto;
    max-width: 100%;
    height: auto;
}

/* PageBuilder contained rows — match PrestaShop container width (1170px) */
[data-content-type="row"][data-appearance="contained"] > [data-element="inner"] {
    max-width: 1170px;
    margin-left: auto;
    margin-right: auto;
}
