/*
Theme Name: HomeSmartz Astra Child
Theme URI: https://homesmartz.store
Description: A clean affiliate grid theme for HomeSmartz using Astra parent theme.
Author: HomeSmartz
Template: astra
Version: 1.0.0
*/

/* Custom Grid Styling */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin: 20px 0;
}

.products-grid .product-card {
    border: 1px solid #eee;
    border-radius: 10px;
    padding: 15px;
    text-align: center;
    background: #fff;
    transition: transform 0.2s ease;
}

.products-grid .product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.product-card img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
}

.product-card h3 {
    font-size: 1.1rem;
    margin: 10px 0;
    color: #333;
}

.product-card .buy-btn {
    display: inline-block;
    background: #0073e6;
    color: #fff;
    padding: 8px 16px;
    border-radius: 5px;
    text-decoration: none;
    margin-top: 10px;
    font-weight: bold;
}

.product-card .buy-btn:hover {
    background: #005bb5;
}
