/* 购物车样式 */
.cart-title {
    font-size: 24px;
    margin: 20px 0;
    color: #333;
    text-align: center;
}

.cart-items {
    margin-bottom: 30px;
    border: 1px solid #eee;
    border-radius: 8px;
    overflow: hidden;
}

.cart-item {
    display: flex;
    align-items: center;
    padding: 15px;
    border-bottom: 1px solid #eee;
    background: #fff;
}

.cart-item:last-child {
    border-bottom: none;
}

.item-img {
    width: 80px;
    height: 80px;
    margin-right: 15px;
}

.item-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 4px;
}

.item-info {
    flex: 1;
    margin-right: 15px;
}

.item-info h3 {
    font-size: 16px;
    margin-bottom: 5px;
    color: #333;
}

.item-info p {
    font-size: 12px;
    color: #999;
}

.item-price {
    width: 100px;
    text-align: center;
    font-weight: bold;
    color: #ff6700;
}

.item-quantity {
    display: flex;
    align-items: center;
    width: 120px;
}

.item-quantity button {
    width: 30px;
    height: 30px;
    border: 1px solid #ddd;
    background: #f5f5f5;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s;
}

.item-quantity button:hover {
    background: #eee;
}

.item-quantity input {
    width: 40px;
    height: 28px;
    text-align: center;
    border: 1px solid #ddd;
    border-left: none;
    border-right: none;
}

.item-total {
    width: 100px;
    text-align: center;
    font-weight: bold;
    color: #ff6700;
}

.item-remove button {
    padding: 5px 10px;
    background: #ff4d4f;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s;
}

.item-remove button:hover {
    background: #ff7875;
}

.cart-summary {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    margin-top: 20px;
}

.cart-total {
    margin-right: 20px;
    font-size: 18px;
}

.total-price {
    font-size: 24px;
    color: #ff6700;
    font-weight: bold;
}

.checkout-btn {
    padding: 10px 30px;
    background: #ff6700;
    color: white;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s;
}

.checkout-btn:hover {
    background: #ff8533;
}