/* ================================================
   FEATURED PRODUCTS SECTION
   ================================================ */

.featured-products-section {
    padding: 0 0 2rem;
    background: #fff;
}

/* Custom 5-column grid */
.col-lg-1-5 {
    flex: 0 0 auto;
    width: 20%;
}

/* ── Card ─────────────────────────────────────── */
.product-card-featured {
    background: #fff;
    border: 1px solid #e8e8e8;
    border-radius: 10px;
    overflow: hidden;
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.product-card-featured:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 28px rgba(30, 79, 160, 0.13);
    border-color: #1e4fa0;
}

/* ── Image ────────────────────────────────────── */
.product-card-featured .product-image {
    position: relative;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    background: #f5f5f5;
}

.product-card-featured .product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
    display: block;
}

.product-card-featured:hover .product-image img {
    transform: scale(1.06);
}

/* No-image placeholder — shared via style.css .pc-no-image */

/* ── Overlay ──────────────────────────────────── */
.product-card-featured .product-overlay {
    position: absolute;
    inset: 0;
    background: rgba(30, 79, 160, 0.55);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.25s ease;
    text-decoration: none;
}

.product-card-featured:hover .product-overlay {
    opacity: 1;
}

.product-card-featured .product-overlay i {
    font-size: 1.4rem;
    color: #fff;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.85);
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.15);
    transition: transform 0.2s ease;
}

.product-card-featured .product-overlay:hover i {
    transform: scale(1.12);
}

/* ── Info panel ───────────────────────────────── */
.product-card-featured .product-info {
    padding: 0.75rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.product-card-featured .product-title {
    font-size: 0.8125rem;
    font-weight: 500;
    margin: 0 0 0.5rem;
    line-height: 1.45;
    flex: 1;
}

.product-card-featured .product-title a {
    color: #222;
    text-decoration: none;
    transition: color 0.2s ease;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.product-card-featured .product-title a:hover {
    color: #1e4fa0;
}

/* ── Responsive ───────────────────────────────── */
@media (max-width: 1199.98px) {
    .col-lg-1-5 { width: 25%; }
}

@media (max-width: 991.98px) {
    .col-lg-1-5 { width: 33.333%; }
}

@media (max-width: 767.98px) {
    .col-lg-1-5 { width: 50%; }

    .product-card-featured .product-info {
        padding: 0.625rem;
    }

    .product-card-featured .product-title {
        font-size: 0.75rem;
    }
}
