/* ============================================
   CART
============================================ */
#cart {
    display: none;
    min-height: 100vh;
    padding: 60px 20px 100px 20px;
}

#cart.active {
    display: block;
}

.cart-header {
    font-family: 'Montserrat', sans-serif;
    font-weight: 900;
    font-size: 1.8rem;
    letter-spacing: 0.15em;
    margin-bottom: 30px;
    text-align: center;
}

.cart-empty {
    text-align: center;
    font-weight: 500;
    opacity: 0.6;
    margin-top: 100px;
}

.cart-items {
    max-width: 600px;
    margin: 0 auto;
}

.cart-item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid var(--concrete-grey);
}

.cart-item-image {
    width: 100px;
    height: 133px;
    object-fit: cover;
}

.cart-item-info {
    flex: 1;
}

.cart-item-name {
    font-weight: 900;
    font-size: 1rem;
    margin-bottom: 10px;
}

.cart-item-price {
    font-weight: 500;
    font-size: 0.9rem;
}

.btn-remove {
    background: transparent;
    color: var(--alert-red);
    border: 1px solid var(--alert-red);
    padding: 5px 15px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    font-size: 0.8rem;
    cursor: pointer;
    margin-top: 10px;
}

.cart-total {
    max-width: 600px;
    margin: 30px auto;
    text-align: right;
    font-weight: 900;
    font-size: 1.3rem;
}

.btn-checkout {
    display: block;
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
    padding: 18px;
    background: var(--signal-white);
    color: var(--void-black);
    border: 2px solid var(--signal-white);
    font-family: 'Montserrat', sans-serif;
    font-weight: 900;
    font-size: 1rem;
    letter-spacing: 0.2em;
    cursor: pointer;
}
