﻿/* ================================================================
   site-overrides.css
   Per-client style overrides — lives in /clientstuff/ so platform
   updates to IvoControlStyles.css never touch this file.
   Loads last in the master page CSS stack — wins over all platform
   and theme styles.
   ================================================================ */


/* ── QuickMenu card section — remove platform padding ── */
.qm-card-section {
    padding: 0;
}

/* ── QuickMenu card grid — remove fixed row heights ── */
@media (max-width: 768px) {
    .qm-card-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        grid-auto-rows: auto;
    }
}

@media (max-width: 480px) {
    .qm-card-grid {
        grid-template-columns: 1fr !important;
        grid-auto-rows: auto;
    }
}

.ivo-cb-product-img-wrap {
    height: 100%;
    overflow: visible;
    position: relative;
}
