/* SEO-friendly styles */

/* Highlighted product styling */
.highlighted-product {
    transform: scale(1.03);
    transition: all 0.5s ease;
    position: relative;
    z-index: 2;
}

/* SEO-friendly image styling */
img {
    /* Ensure all images have alt text through HTML */
    max-width: 100%;
    height: auto;
}

/* Improve content readability for SEO */
p, h1, h2, h3, h4, h5, h6 {
    margin-bottom: 0.5em;
    line-height: 1.5;
}

/* Ensure proper heading hierarchy */
h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

h2 {
    font-size: 2rem;
    margin-bottom: 0.8rem;
}

h3 {
    font-size: 1.5rem;
    margin-bottom: 0.6rem;
}

/* Improve link accessibility */
a:focus {
    outline: 2px solid #4CAF50;
    outline-offset: 2px;
}

/* Improve mobile responsiveness for SEO */
@media (max-width: 768px) {
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.7rem;
    }
    
    h3 {
        font-size: 1.3rem;
    }
}