﻿/* 商品卡片样式 - 使用pd前缀，简化结构 */
.pd-product-card {
    width: 255px;
    /* height: 390px; */
    float: left;
    text-align: left;

    display: flex;
    flex-direction: column;
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    align-items: center;
    padding: 10px;
}

.pd-product-image {
    width: 235px;
    height: 264px;
    text-align: center;
    line-height: 264px;
    /* 添加背景图样式 */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    justify-content: center;
    align-items: center;
}

.pd-product-image .pd-product-image-overlay {
    width: 100%;
    height: 100%;
    background-color: #fff;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.pd-product-info {
    width: 235px;
}

.pd-product-title {
    width: 235px;
    height: 47px;
    text-align: center;
    font-size: 18px;
    margin: 0;
    
    /* 多行文本截断，只显示2行，超出显示省略号 */
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: 1.3;
}

.pd-product-price {
    width: 235px;
    height: 31px;
    text-align: center;
    color: #242424;
    font-size: 16px;
    line-height: 31px;
    margin: 0;
}

.pd-product-actions {
    width: 235px;
    height: 28px;
    text-align: center;
    line-height: 28px;
}

.pd-add-cart-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 28px;
    padding: 0 8px;
    cursor: pointer;
}

.pd-cart-icon {
    width: 24px;
    height: 28px;
    margin-right: 4px;
}

.pd-cart-text {
    font-size: 16px;
    line-height: 28px;
}

/* 悬停效果：鼠标移动到商品卡片上时隐藏img显示背景图 */
.pd-product-card:hover .pd-product-image .pd-product-image-overlay {
    display: none;
}