/* Accessibility improvements for better color contrast */

/* Improve contrast for red discount text */
span[style*="color: red"] {
    color: #c41e3a !important; /* Darker red for better contrast */
}

/* Improve contrast for old prices */
.old {
    color: #666 !important; /* Darker gray instead of light gray */
}

/* Improve contrast for copyright text */
.copyright {
    color: #555 !important; /* Darker text for better readability */
}

/* Improve contrast for product card text */
.product-card {
    color: #333 !important; /* Ensure dark text on light backgrounds */
}

/* Improve contrast for footer copyright */
.footer2-copyright .copyright {
    color: #555 !important;
}

/* Ensure sufficient contrast for any light gray text */
.text-muted,
.text-light-gray {
    color: #666 !important;
}