/* 尚品购（ShangPinGou） - 购物车结算页面专用样式表 (cart.css) */

.cart-main {
    background-color: #ffffff;
    border-radius: 6px;
    padding: 25px;
    margin-top: 15px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.cart-header-title {
    font-size: 18px;
    font-weight: bold;
    color: #333333;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #e4393c;
}

/* 购物车表格 */
.cart-table {
    width: 100%;
    border-collapse: collapse;
}

.cart-table th {
    background-color: #f5f5f5;
    padding: 12px 15px;
    font-size: 13px;
    color: #666666;
    text-align: left;
    border-bottom: 1px solid #e0e0e0;
}

.cart-table td {
    padding: 20px 15px;
    border-bottom: 1px solid #eeeeee;
    vertical-align: middle;
}

/* 复选框样式 */
.cart-table input[type="checkbox"] {
    width: 16px;
    height: 16px;
    cursor: pointer;
    accent-color: #e4393c;
}

/* 商品卡片信息 */
.cart-goods-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.cart-goods-item img {
    width: 70px;
    height: 70px;
    object-fit: contain;
    border: 1px solid #eeeeee;
    border-radius: 4px;
}

.cart-goods-item .goods-title {
    font-size: 13px;
    color: #333333;
    line-height: 1.4;
}

.unit-price {
    font-size: 14px;
    color: #333333;
    font-weight: 500;
}

.item-subtotal {
    font-size: 16px;
    font-weight: bold;
    color: #e4393c;
}

/* 数量选择器 */
.cart-count-wrap {
    display: inline-flex;
    border: 1px solid #cccccc;
    border-radius: 3px;
    overflow: hidden;
}

.cart-count-wrap button {
    width: 28px;
    height: 28px;
    background-color: #f5f5f5;
    font-size: 14px;
    font-weight: bold;
    color: #555555;
}

.cart-count-wrap button:hover {
    background-color: #e0e0e0;
}

.cart-count-wrap input {
    width: 40px;
    height: 28px;
    text-align: center;
    font-size: 13px;
    font-weight: bold;
}

.btn-del-item {
    color: #999999;
    font-size: 13px;
    cursor: pointer;
}

.btn-del-item:hover {
    color: #e4393c;
}

/* 结算总结工具条 */
.cart-summary {
    margin-top: 25px;
    background-color: #f9f9f9;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cart-summary-left {
    display: flex;
    align-items: center;
    gap: 20px;
    font-size: 13px;
    color: #666666;
}

.cart-summary-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.total-amount-box {
    font-size: 14px;
    color: #333333;
}

.total-amount-box .total-price {
    font-size: 24px;
    font-weight: bold;
    color: #e4393c;
    margin-left: 8px;
}

.btn-checkout {
    height: 44px;
    padding: 0 40px;
    background-color: #e4393c;
    color: #ffffff;
    font-size: 16px;
    font-weight: bold;
    border-radius: 4px;
    transition: background-color 0.2s ease;
}

.btn-checkout:hover {
    background-color: #c02d30;
}
