/* Container Spacing */
.products-main {
    padding-top: 120px;
    padding-bottom: 60px;
    padding-left: 20px;
    padding-right: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

/* Grid System */
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 40px;
}

/* Card Styling */
.product-card {
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
    display: flex;        /* Added: allows vertical layout */
    flex-direction: column; 
}

.product-card:hover {
    transform: translateY(-8px);
}

.product-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

/* Updated Info Section */
.product-info {
    padding: 20px;
    display: flex;        /* Added: helps push button to bottom */
    flex-direction: column;
    flex-grow: 1;         /* Fills the remaining card space */
}

.category-tag {
    color: #4a8d46;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.product-card h3 {
    margin: 0 0 10px 0;
    font-size: 1.4rem;
    color: #1a1a1a;
}

/* NEW: Description Styling - makes it visible */
.product-card p {
    font-size: 0.95rem;
    color: #555;
    line-height: 1.5;
    margin-bottom: 15px;
    flex-grow: 1; /* Pushes the button down if text is short */
}

/* Button stays at the bottom */
.btn-premier {
    display: inline-block;
    padding: 10px 20px;
    background: #1a1a1a;
    color: #fff;
    text-decoration: none;
    border-radius: 4px;
    align-self: flex-start; /* Keeps button size contained */
    transition: background 0.3s;
}

.btn-premier:hover {
    background: #4a8d46;
}

.no-products {
    padding: 50px;
    text-align: center;
    width: 100%;
}