/* Mobile cart page */
body.mobile-home-ui .cart {
    padding-block: 16px 100px !important;
}

.cart-mobile-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.cart-mobile-item {
    display: grid;
    grid-template-columns: 88px 1fr;
    gap: 12px;
    padding: 12px;
    border: 1px solid #ececec;
    border-radius: 16px;
    background: #fff;
    box-shadow: 0 8px 22px rgba(15, 23, 42, 0.04);
}

.cart-mobile-item__thumb {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 88px;
    height: 88px;
    border-radius: 12px;
    overflow: hidden;
    background: #fff;
    border: 1px solid #f3f4f6;
}

.cart-mobile-item__thumb img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.cart-mobile-item__body {
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.cart-mobile-item__top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 8px;
}

.cart-mobile-item__title {
    margin: 0;
    font-size: 0.9rem;
    font-weight: 600;
    line-height: 1.35;
}

.cart-mobile-item__remove {
    width: 32px;
    height: 32px;
    border: 0;
    border-radius: 50%;
    background: #fef2f2;
    color: #dc2626;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.cart-mobile-item__price {
    font-size: 0.85rem;
    font-weight: 600;
    color: #111827;
}

.cart-mobile-item__footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    margin-top: auto;
}

.cart-mobile-item__qty {
    flex-shrink: 0;
}

.cart-mobile-item__subtotal {
    text-align: end;
    min-width: 0;
}

.cart-mobile-item__subtotal-label {
    display: block;
    font-size: 0.68rem;
    color: #6b7280;
    margin-bottom: 2px;
}

.cart-mobile-item__subtotal strong {
    font-size: 0.9rem;
    color: #111827;
}

.cart-mobile-empty {
    text-align: center;
    padding: 48px 16px;
    border: 1px solid #ececec;
    border-radius: 16px;
    background: #fff;
}

.cart-mobile-coupon {
    display: flex;
    gap: 8px;
    margin-top: 12px;
}

.cart-mobile-coupon .common-input {
    flex: 1;
    min-width: 0;
}

.cart-mobile-summary {
    margin-top: 16px;
    padding: 16px;
    border: 1px solid #ececec;
    border-radius: 16px;
    background: #fff;
}

.cart-mobile-summary__row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding-block: 8px;
    font-size: 0.88rem;
}

.cart-mobile-summary__row--total {
    border-top: 1px solid #ececec;
    margin-top: 8px;
    padding-top: 12px;
    font-size: 1rem;
    font-weight: 700;
}

.cart-mobile-checkout-bar {
    position: fixed;
    left: 16px;
    right: 16px;
    bottom: calc(78px + env(safe-area-inset-bottom, 0));
    z-index: 1040;
    padding: 10px;
    border-radius: 999px;
    background: #fff;
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.14);
}

.cart-mobile-checkout-bar .btn {
    border-radius: 999px;
    font-weight: 700;
}

@media (min-width: 992px) {
    .cart-mobile-list,
    .cart-mobile-summary-wrap,
    .cart-mobile-checkout-bar {
        display: none !important;
    }
}
