
.explore-products {
    max-width: 1280px;
    margin: 40px auto;
    background-color: #f9fafb;
    border-radius: 24px;
    padding: 32px 24px;
    box-sizing: border-box;
    direction: rtl;
    text-align: right;
}
.explore-title {
    font-family: 'Open Sans', sans-serif;
    font-weight: 700;
    font-size: 28px;
    color: #222222;
    text-align: center;
    margin-bottom: 24px;
}
.products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    align-items: stretch;
}
.product-card {
    background: #ffffff;
    border-radius: 18px;
    border: 1px solid #e2e8f0;
    overflow: hidden;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
}
.product-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 14px rgba(0, 0, 0, 0.06);
}
.product-img {
    width: 100%;
    aspect-ratio: 4 / 3;
    overflow: hidden;
}
.product-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.product-info {
    padding: 14px 16px 18px;
    flex: 1;
    display: flex;
    flex-direction: column;
}
.product-title {
    font-weight: 700;
    font-size: 15px;
    color: #0047AB;
    margin-bottom: 8px;
    line-height: 1.3;
    white-space: nowrap;
    overflow-x: auto;
    overflow-y: hidden;
}
.product-info p {
    font-size: 12px;
    line-height: 1.45;
    color: #555555;
    margin-bottom: 12px;
    flex: 1;
}
.product-btn {
    display: inline-block;
    background: transparent;
    border: 2px solid #0047AB;
    border-radius: 40px;
    padding: 4px 12px;
    font-weight: 600;
    font-size: 11px;
    color: #0047AB;
    text-decoration: none;
    transition: background 0.2s, color 0.2s;
    align-self: flex-start;
    margin-top: auto;
}
.product-btn:hover {
    background: #0047AB;
    color: #ffffff;
}
@media (max-width: 1000px) {
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 18px;
    }
    .product-title {
        font-size: 14px;
    }
}
@media (max-width: 640px) {
    .explore-products {
        padding: 24px 20px;
    }
    .explore-title {
        font-size: 24px;
        margin-bottom: 20px;
    }
    .products-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    .product-info {
        padding: 12px 14px 16px;
    }
    .product-title {
        font-size: 14px;
        white-space: normal;
    }
    .product-info p {
        font-size: 12px;
    }
}
