.cart-icon {
    position: relative;
}

.cart-button {
    background-color: #F0E3CA;
    border: none;
}

.your-cart {
    position: absolute;
    background-color: #FF8303;
    color: #1B1A17;
    padding: 1em 1em;
    width: 30%;
    transition: transform 250ms ease-in, right 250ms ease-in;
    z-index: 999;
    top: 100px;
    transform: translate(100%);
    right: 0;
}


.your-cart-text {
    margin-top: 1em;
    margin-left: 1em;
    font-size: 20px;
    font-weight: 700;
}

.empty-text {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    width: 100%;
    font-size: 40px;
    display: none;
}

.product-added-cart {
    margin-top: 1em;
    margin-left: 1em;
    margin-right: 1em;
    display: none;
    flex-direction: row;
    background-color: #F0E3CA;
    gap: 1em;
    position: relative;
}

.product-img-container {
    display: flex;
    max-width: 120px;
}

.product-img {
    max-width: 100%;
    object-fit: cover;
}

.product-name-price {
    display: flex;
    flex-direction: column;
}

.sub-value-add-button-container {
    position: absolute;
    display: flex;
    flex-direction: row;
    font-size: 20px;
    background-color: #1B1A17;
    color: #F0E3CA;
    bottom: 0;
    right: 0;
}

.common-wh {
    height: 30px;
    width: 30px;
}

.sub-button-cart,
.add-button-cart {
    background-color: #1B1A17;
    color: #F0E3CA;
    font-size: 20px;
    border: none;
    display: flex;
    padding: 0;
    justify-content: center;
    align-items: center;
}

.sub-button-cart img,
.add-button-cart img {
    object-fit: cover;
}

.value {
    text-align: center;
}

.subtotal-value {
    margin-top: 1em;
    width: 100%;
    background-color: #F0E3CA;
    color: #1B1A17;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    min-height: 60px;
    font-weight: 700;
}

.subtotal-text {
    margin-left: 1em;
}

.total-value {
    margin-right: 1em;
}

.address-form {
    margin-top: 2em;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
    gap: 1em;
    margin-bottom: 1em;
}

.address-form input {
    background-color: transparent;
    border: none;
    border-bottom: 2px solid #F0E3CA;
    width: 300px;
    outline: none;
    color: #F0E3CA;
    font-size: 16px;
}

::placeholder {
    color: #F0E3CA;
    font-family: inherit;
    font-size: 16px;
}

.checkout-pay-button-container {
    display: flex;
}

.checkout-pay-button {
    font-size: 20px;
    font-weight: 700;
    font-family: inherit;
    padding: 0.5em 2em;
    background-color: #1B1A17;
    color: #F0E3CA;
    border: none;
}

@media screen and (max-width:1250px) {
    .your-cart {
        width: 50%;
    }
}

.add-cart-alert {
    position: fixed;
    border-radius: 20px;
    padding: 20px;
    bottom: 20px;
    right: 20px;
    z-index: 2000;
    background-color: #36b53e;
    color: white;
    transition: transform 250ms ease-in;
    transform: translate(120%);
    display: inline-block;
    /* max-width: 250px; */
}