
/* 新增样式 */
.price-tag {
    color: #ff3b30; /* 亮红色价格 */
    font-size: 18px;
    font-weight: bold;
    padding: 8px 16px;
    border: 1px solid #ff3b30;
    border-radius: 4px;
    display: inline-block;
}

.buy-btn {
    background-color: #ff6464; /* 亮红色按钮 */
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    transition: background-color 0.3s;
}

.buy-btn:hover {
    background-color: #FE7A7B; /* 稍深的红色 hover 效果 */
    color: white;
}

.buy-btn:active,
.buy-btn:focus {
    color: white;
}

/* 购物车图标样式 */
.cart-icon {
    width: 18px;
    height: 18px;
    margin-right: 8px;
    fill: white;
}