
.explore-products {
    max-width: 1200px;
    margin: 30px auto;
    background-color: #f9fafb;
    border-radius: 20px;
    padding: 16px 20px;
    box-sizing: border-box;
}
.section-title {
    font-family: 'Open Sans', sans-serif;
    font-weight: 700;
    font-size: 24px;
    color: #222222;
    text-align: center;
    margin-bottom: 16px;
}
.products-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}
.product-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 12px 12px 14px;
    border: 1px solid #e2e8f0;
    transition: box-shadow 0.2s, transform 0.2s;
    text-align: center;
    display: flex;
    flex-direction: column;
}
.product-card:hover {
    box-shadow: 0 6px 14px rgba(0,0,0,0.06);
    transform: translateY(-2px);
}
.product-image {
    margin-bottom: 10px;
    width: 100%;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f9fafb;
    border-radius: 10px;
}
.product-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}
.product-title {
    font-weight: 700;
    font-size: 18px;
    color: #0047AB;
    margin-bottom: 6px;
}
.product-desc {
    font-size: 12px;
    line-height: 1.4;
    color: #555555;
    margin-bottom: 8px;
}
.product-formats {
    font-size: 11px;
    color: #555555;
    margin-bottom: 12px;
}
.product-formats strong {
    font-weight: 600;
    color: #333333;
}
.product-btn {
    display: inline-block;
    background-color: #0047AB;
    color: white;
    padding: 6px 18px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 13px;
    text-decoration: none;
    transition: background-color 0.2s;
    align-self: center;
    margin-top: auto;
}
.product-btn:hover {
    background-color: #003580;
}
@media (max-width: 768px) {
    .explore-products {
        padding: 16px 16px;
        margin: 24px auto;
    }
    .section-title {
        font-size: 22px;
        margin-bottom: 14px;
    }
    .products-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }
    .product-card {
        padding: 10px 10px 12px;
    }
    .product-title {
        font-size: 17px;
        margin-bottom: 4px;
    }
    .product-btn {
        padding: 5px 16px;
        font-size: 12px;
    }
}
