/* ========================================
   Visual Redesign Override
   Hides old sections and ensures new visual design is displayed
======================================== */

/* Hide old hero section if it exists */
.hero:not(.hero-visual) {
    display: none !important;
}

/* Hide old selection cards if they exist */
.selection-cards {
    display: none !important;
}

/* Ensure new hero is visible */
.hero-visual {
    display: flex !important;
}

/* Ensure new product selection is visible */
.product-selection {
    display: block !important;
}

/* Ensure new trust section is visible */
.trust-section-visual {
    display: block !important;
}

/* Hide old trust section */
.trust-section:not(.trust-section-visual) {
    display: none !important;
}

/* Hide old reviews section */
.reviews-section {
    display: none !important;
}

