:host {
    display: block;
}

.wrapper {
    position: relative;
    background-color: white;
    border-radius: 8px;
}

img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.product-name {
    font-weight: 600;
    line-height: 1.2;
}

.product-cost {
    font-size: 0.875rem;
    color: var(--color-dark-grape);
    font-weight: bold;
}

.product-quantity span {
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.7rem;
    font-weight: bold;
    margin-right: 10px;
}
.product-price {
    text-align: center;
    font-weight: 600;
    font-size: 0.875rem;
    color: var(--color-dark-grey-grey);
    text-align: end;
}

button {
    background: none;
    border: 0;
    font-weight: 600;
    text-decoration: underline;
    font-size: 0.875rem;
}

.remove-wrapper {
    display: flex;
    position: absolute;
    top: 0px;
    right: 5px;
    padding: 0;
}

.remove {
    position: relative;
    display: inline-block;
    padding: 0;
}

.quantity-input {
    border-radius: 0;
    box-shadow: none;
    border: 1px solid var(--color-grey);
    padding: 0.5rem 0rem 0.5rem 1rem;
    min-width: 50px;
}

.remove svg {
    width: 25px;
    height: auto;
    color: var(--color-dark-grey);
    cursor: pointer;
    fill: var(--color-dark-grey);
}

@media screen and (min-width: 768px) {
    img {
        width: 70px;
    }
    .border-left {
        border-left: 1px solid var(--color-grey);
        padding-left: 1rem;
    }
    .remove-wrapper {
        position: initial;
        padding-right: 0.75rem;
    }
    .product-price {
        font-weight: 600;
        font-size: var(--font-size-h5);
    }
}
