main {
    width: 100%;
    height: auto;
    background-color: #faf8f0;
    overflow: hidden;
}

.cart_title {
    width: 300px;
    margin: 30px auto;
    height: 100px;
    background-color: #f47194;
    border-radius: 100px;
    font-family: Plus Jakarta Sans;
    font-size: 35px;
    font-weight: 700;
    line-height: 100px;
    text-align: center;
    color: #FAF8F0;

}

main .main_wall {
    width: 95%;
    margin: 0 auto;
}

main .main_header {
    width: 100%;
    height: 80px;
    border-radius: 10px;
    background-color: #f49fb6;
}

main .main_header .product {
    text-align: center;
    font-family: Plus Jakarta Sans;
    font-size: 25px;
    font-weight: 700;
    line-height: 80px;
    color: #FAF8F0;
}

.main_box {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

/* 购物车商品列表 */
.cart-items {
    margin-bottom: 30px;
}

.cart-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    background: #fff;
    border-radius: 10px;
    margin-bottom: 15px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.item-info {
    display: flex;
    gap: 20px;
    align-items: center;
    flex: 1;
}

.item-info img {
    width: 100px;
    height: 100px;
    object-fit: cover;
    border-radius: 8px;
}

.item-details h5 {
    font-size: 18px;
    margin-bottom: 8px;
}

.item-details p {
    color: #666;
    font-size: 14px;
}

.item-controls {
    display: flex;
    align-items: center;
    gap: 30px;
}

.quantity-control {
    display: flex;
    align-items: center;
    background: #f8e4e4;
    border-radius: 20px;
    padding: 5px;
}

.quantity-control button {
    border: none;
    background: none;
    color: #f49fb6;
    padding: 5px 12px;
    cursor: pointer;
}

.quantity-control .num {
    padding: 0 15px;
}

.delete {
    border: none;
    background: none;
    cursor: pointer;
    padding: 5px;
}

.delete img {
    width: 20px;
    height: 20px;
    opacity: 0.6;
}

/* 结算区域 */
.checkout-section {
    background: #fff;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.shipping-info {
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #f4d2d2;
}

.input-group {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
}

.input-group input {
    flex: 1;
    padding: 12px;
    border: 1px solid #f4d2d2;
    border-radius: 8px;
}

.action-buttons,
.checkout-buttons {
    display: flex;
    gap: 15px;
}

.secondary-btn,
.primary-btn {
    flex: 1;
    padding: 12px;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    font-size: 14px;
}

.secondary-btn {
    background: #f8e4e4;
    color: #f49fb6;
}

.primary-btn {
    background: #f49fb6;
    color: #fff;
}

.order-summary {
    padding-top: 20px;
}

.total-amount {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    font-size: 18px;
    font-weight: 500;
}

.amount {
    color: #f49fb6;
    font-weight: bold;
}