/**
 * Header – logo in .header-center > strong.logo
 * (img.header-logo-desktop / img.header-logo-mobile)
 *
 * Gli attributi width/height in HTML (es. 223×125) vengono dall’admin Magento;
 * la dimensione visiva la controlla questo file (max-width / max-height).
 */

/* Desktop: solo .header-logo-desktop (mobile img è display:none in custom-css) */
@media (min-width: 992px) {
	.page-header.type6 .header-center strong.logo img.header-logo-desktop {
		width: auto !important;
		height: auto !important;
		max-width: 140px;
		max-height: 88px;
	}
}

/* Mobile: solo .header-logo-mobile in .header-center */
@media (max-width: 991px) {
	.page-header.type6 .header-center strong.logo img.header-logo-mobile {
		width: auto !important;
		height: auto !important;
		max-height: 34px;
	}

	.page-wrapper .page-header.type6.sticky-header .header-center strong.logo img.header-logo-mobile {
		max-width: 72px;
		max-height: 34px;
	}
}