/* Usability Improvements - August 31, 2025 */

/* 1. Header Contrast – "Welcome to our store" */
p.mgt.small {
    font-size: 16px !important;
    font-weight: 600 !important;
    padding: 5px 0 !important;
    letter-spacing: 0.2px !important;
}

/* 2. Icon Consistency */
/* Target the Free Shipping icon to make it consistent with color scheme */
.footer_1 i, 
.services_1 i,
.header_main i.fa-shipping-fast,
.header_main i.fa-truck {
    color: #fff !important;
    transition: color 0.3s ease !important;
}

.footer_1 i:hover, 
.services_1 i:hover,
.header_main i.fa-shipping-fast:hover,
.header_main i.fa-truck:hover {
    color: #ccc !important;
}

/* 3. Product Display – Featured Products Section */
/* Change orange background to neutral gray */
.product_home_1i {
    background-color: #f5f5f5 !important;
    transition: all 0.3s ease !important;
    border: 1px solid transparent !important;
}

.product_home_1i:hover {
    background-color: #eaeaea !important;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1) !important;
    border: 1px solid #ddd !important;
}

/* 4. Footer Spacing */
/* Increase spacing between footer sections */
.footer_col_section {
    margin-bottom: 20px !important;
}

.footer_1 h4 {
    margin-bottom: 15px !important;
    padding-bottom: 10px !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2) !important;
}

.footer_1 ul {
    margin-bottom: 20px !important;
}

/* Add more spacing between different footer sections */
.footer_1m, .footer_1r {
    margin-top: 15px !important;
}

/* 5. General UX Polish */
/* Ensuring consistency in hover states */
a:hover, 
.button:hover,
.footer_1 a:hover {
    transition: all 0.3s ease !important;
}

/* Ensure font sizes and colors remain accessible */
.footer_1 a,
.header_main a {
    color: #fff !important;
}

.footer_1 a:hover,
.header_main a:hover {
    color: #ccc !important;
}

/* Responsive adjustments */
@media (max-width: 767px) {
    .footer_1 .footer_1i {
        margin-bottom: 30px !important;
    }
    
    p.mgt.small {
        font-size: 14px !important;
        text-align: center !important;
    }
}
