:host {
    display: flex;
}

.product {
    box-shadow: 0px 3px 6px #00000053;
    border-radius: 8px;
    background-color: white;
    padding: 1rem;
    pointer-events: none;
    display: flex;
}

h5 {
    color: var(--color-black);
    font-size: var(--font-size-heading-h4);
    margin: 0;
    line-height: 1;
    margin-bottom: 0.5rem;
    font-weight: 600;
}
.img-wrapper {
    position: relative;
}

.img-wrapper::before {
    display: block;
    content: '';
    padding-top: 100%;
}

img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.premium {
    position: absolute;
    bottom: 5px;
    right: 5px;
    background-color: var(--color-black);
    padding: 0.125rem 0.75rem;
    border-radius: 20px;
    text-transform: uppercase;
    color: #fae59f;
    letter-spacing: 1px;
    font-size: 0.75rem;
}

.product-wrapper {
    display: flex;
    flex-direction: column;
    height: 100%;
}

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

.quantity-toggle {
    margin-left: auto;
    pointer-events: all;
    padding-top: 1rem;
    margin-top: auto;
    margin-left: auto;
}

.h-100 {
    height: 100%;
}
