/* ── Product Grid ── */
.gh-products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    padding: 8px 0;
}
@media (max-width: 900px) { .gh-products-grid { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 600px) { .gh-products-grid { grid-template-columns: 1fr; } }

.gh-product-card {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.07);
    display: flex;
    flex-direction: column;
    transition: box-shadow 0.2s ease, transform 0.2s ease;
}
.gh-product-card:hover {
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
    transform: translateY(-2px);
}
.gh-product-image {
    background: #f0f9f6;
    padding: 16px;
    text-align: center;
}
.gh-product-image img {
    width: 100%;
    height: 180px;
    object-fit: contain;
    display: block;
    margin: 0 auto;
}
.gh-product-body {
    padding: 16px;
    flex: 1;
    display: flex;
    flex-direction: column;
}
.gh-product-name {
    font-size: 16px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 8px;
    line-height: 1.3;
}
.gh-product-desc {
    font-size: 13px;
    color: #6b7280;
    line-height: 1.5;
    margin: 0 0 12px;
    flex: 1;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.gh-product-price {
    font-size: 22px;
    font-weight: 700;
    color: #018262;
    margin: 0 0 0;
}
.gh-product-footer {
    padding: 0 16px 16px;
}
.gh-btn-cart {
    display: block;
    width: 100%;
    background: #22c4ec;
    color: #fff;
    border: none;
    padding: 10px 16px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: background 0.2s ease;
    margin-top: 12px;
}
.gh-btn-cart:hover { background: #18a8cc; }

/* ── Categories ── */
.gh-categories {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 24px;
}
.gh-cat-btn {
    background: #f3f4f6;
    border: 1px solid #e5e7eb;
    border-radius: 50px;
    padding: 8px 20px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    color: #374151;
    transition: all 0.2s ease;
}
.gh-cat-btn:hover,
.gh-cat-btn.active {
    background: #22c4ec;
    border-color: #22c4ec;
    color: #fff;
}
