/* ================================================
   FEATURED PRODUCTS - Grid Section
   ================================================ */
.featured-products {
    width: 100%;
    padding: 100px 5% 40px;
    background: var(--pg-white);
}

.featured-container {
    max-width: 1400px;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header .subtitle {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--pg-grey-light);
    margin-bottom: 12px;
}

.section-header h2 {
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--pg-dark);
    letter-spacing: -0.02em;
}

/* Section separators — centered lines before/after titles */
.pg-home section h2 {
    display: flex;
    align-items: center;
    gap: 20px;
    justify-content: center;
}

.pg-home section h2::before,
.pg-home section h2::after {
    content: '';
    flex: 0 0 60px;
    height: 1px;
    background: var(--pg-border);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.product-card {
    background: var(--pg-white);
    border-radius: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    cursor: pointer;
    text-decoration: none;
    color: inherit;
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.product-image {
    width: 100%;
    aspect-ratio: 1 / 1;
    background: var(--pg-bg-page);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--pg-grey-light);
    font-size: 0.9rem;
    position: relative;
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-info {
    padding: 24px;
    text-align: center;
}

.product-info h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--pg-dark);
    margin-bottom: 8px;
}

.product-info p {
    font-size: 1rem;
    color: var(--pg-grey);
}

