body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    font-family: "Poppins", sans-serif;
    padding-top: 80px;
}

.page-content {
    flex: 1;
    padding-bottom: 60px;
}

footer {
    margin-top: auto;
    background: #f8f9fa;
    padding: 20px 0;
}

.cart-item-img {
    width: 120px;
    height: 120px;
    object-fit: contain;
}

.quantity-input {
    width: 50px;
    height: 38px;
    text-align: center;
    font-size: 16px;
    border: 1px solid #ddd;
    border-radius: 4px;
    -moz-appearance: textfield;
    padding: 0;
}

.quantity-input::-webkit-outer-spin-button, .quantity-input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.cart-count-badge {
    position: absolute;
    top: -10px;
    right: -10px;
    background: red;
    color: white;
    font-size: 12px;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    z-index: 999;
}

.cart-menu-item {
    display: flex;
    align-items: center;
    padding: 5px;
}

.cart-icon-wrapper {
    position: relative;
    display: inline-block;
}

.cart-icon-wrapper .fa-shopping-cart {
    font-size: 1.4rem;
    color: #000;
}

#fixedAlertContainer .alert {
    animation: slideDown 0.5s ease-out;
    margin: 0 auto;
    max-width: 100%;
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.alert.fade {
    transition: opacity 0.5s linear, transform 0.5s ease-out;
}

.alert.show {
    opacity: 1;
    transform: translateY(0);
}