/**
 * Droio Custom Styles
 * Custom overrides for PrestaShop classic theme
 */

/* Allow larger header logo */
#header .top-logo img {
    max-height: 80px !important;  /* Increased from 2rem (~32px) to 80px */
    width: auto;
}

/* For mobile: slightly smaller but still visible */
@media (max-width: 767px) {
    #header .top-logo img {
        max-height: 50px !important;
    }
}

/* Ensure header can accommodate larger logo */
#header .top-logo {
    min-height: 90px;
}
