{
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
    font-family: 'Tajawal', sans-serif; /* Example: Using a modern, readable font */
}

/* --- Faster Image Loading --- */
img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* --- Responsive Design Improvements --- */
@media (max-width: 768px) {
    /* Adjustments for smaller screens */
    .product-grid {
        grid-template-columns: repeat(2, 1fr); /* 2 products per row on mobile */
    }
}

/* --- Button Enhancements --- */
.button, .product-add-to-cart-button {
    transition: all 0.3s ease;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.button:hover, .product-add-to-cart-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.15);
}