/* =========================================================
   Southern Steel — Products Page (Intro Text Section)
   products-intro.css
   ========================================================= */

:root {
    --ss-text: #333333;
    --ss-border: #a9a9a9;
    --ss-max-width: 1280px;
}
.products-banner {
    width: 100%;
    background-color: #fa2660;
}
.products-banner img {
    width: 100%;
    height: 320px;
    object-fit: cover;
    display: block;
}
.pi-section {
    background: #ffffff;
    padding: 0 24px 60px;
    font-family: Arial, "Helvetica Neue", Helvetica, sans-serif;
    color: var(--ss-text);
}
.pi-inner {
    max-width: var(--ss-max-width);
    margin: 0 auto;
}
.pi-divider {
    border: none;
    border-top: 1.5px solid var(--ss-border);
    margin: 0 0 34px 0;
}
.pi-text p {
    font-size: 16px;
    line-height: 1.75;
    margin: 0 0 24px 0;
}
.pi-text p:last-child {
    margin-bottom: 0;
}
.pi-products-section {
    background: #ffffff;
    padding: 10px 24px 60px;
}
.pi-products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}
.pi-product-card {
    display: flex;
    flex-direction: column;
    background: #ffffff;
    text-decoration: none;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    border: 1px solid #e2e2e4;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.pi-product-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.14);
}
.pi-product-img {
    aspect-ratio: 4 / 3;
    overflow: hidden;
}
.pi-product-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.pi-product-label {
    background: #fa2660;
    color: #ffffff;
    text-align: center;
    font-weight: 700;
    font-size: 15px;
    letter-spacing: 0.3px;
    padding: 16px 12px;
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1.4;
}

@media (max-width: 900px) {
    .products-banner img {
        height: 220px;
    }
}

@media (max-width: 600px) {
    .products-banner img {
        height: 160px;
    }
}

@media (max-width: 768px) {
    .pi-text p {
        font-size: 15px;
        margin-bottom: 20px;
    }
    .pi-products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .pi-section {
        padding: 0 16px 40px;
    }
    .pi-divider {
        margin-bottom: 24px;
    }
    .pi-text p {
        font-size: 14px;
        line-height: 1.7;
    }
    .pi-products-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    .pi-products-section {
        padding: 10px 16px 40px;
    }
}