.product-item {
    display: flex;
    flex-direction: column;
    border-radius: 16px;
    overflow: hidden;
    background: #fff;
    transition: transform 0.3s ease;
    position: relative;
    background-color: var(--e-global-color-accent);
    border-radius: 8px;
    height: 100%;
}

.product-item:hover {
    transform: translateY(-4px);
}

.product-item .product-link {
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    height: 100%;
    position: relative;
}

.product-brand-logo {
    position: absolute;
    top: 0px;
    right: 24px;
    width: 100%;
    max-width: 40px;
    aspect-ratio: 40.54/27.31;
    z-index: 10;
    display: flex;
    padding: 15px 9px;
    flex-direction: column;
    align-items: flex-start;
    background-color: #FFFFFF;
}

.product-brand-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.product-item .product-image {
    aspect-ratio: 1/1;
    overflow: hidden;
}

.product-item .product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-item .product-info {
    padding: 12px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    gap: 12px;
    justify-content: space-between;
}

.product-item .product-title {
    color: var(--Primary, #000);

    /* H4 */
    font-family: var(--theme-font-family);
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    letter-spacing: -0.36px;
}

.product-item .product-colors{
    color: var(--Primary, #000);
    font-family: var(--theme-font-family);
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: 120%; /* 16.8px */
    letter-spacing: -0.28px;
}

.product-item .product-price {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.product-item .product-price .price-label {
    color: var(--Primary, #000);
    font-family: var(--theme-font-family);
    font-size: 10px;
    font-style: normal;
    font-weight: 600;
    line-height: 100%; /* 10px */
}

.product-item .product-price .price-amount {
    color: var(--Primary, #000);
    font-family: var(--theme-font-family);
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
    line-height: 100%; /* 18px */
    letter-spacing: -0.18px;
}

