@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@100..900&display=swap');

.impex-product-card {
    display: block;
    text-decoration: none;
    color: inherit;
    width: 100%;
    max-width: 100%;
    overflow: hidden;
    position: relative;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.impex-product-image {
    width: 100%;
    aspect-ratio: 1 / 1;
    background-size: cover;
    background-position: center;
    transition: transform 1s ease;
    will-change: transform;
}

.impex-product-card:hover .impex-product-image {
    transform: scale(1.1);
}

.impex-product-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 40px;
    background: #ffffff;
    position: relative;
    z-index: 2;
}

.impex-product-content h4 {
    font-family: "Outfit", sans-serif;
    font-size: 16px;
    margin: 0;
    font-weight: 400;
}

.impex-arrow {
    font-size: 22px;
    color: #7a2424;
    font-weight: normal;
}
