﻿/**
 * Theme Name: Blocksy Child
 * Description: Blocksy Child theme
 * Author: Creative Themes
 * Template: blocksy
 * Text Domain: blocksy
 */
/* ===== 产品列表布局 ===== */
/* ===== 外层容器（控制整体宽度 + 左右留白） ===== */
.custom-products-wrapper {
    max-width: 1400px;
    margin: 60px auto;
    padding: 0 20px;
}

/* ===== 产品网格 ===== */
.custom-products {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

/* ===== 卡片 ===== */
.product-card {
    background: #fff;
    border-radius: 14px;
    overflow: hidden;
    position: relative;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0,0,0,0.06);
}

/* hover效果（更高级一点） */
.product-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.12);
}

/* ===== 整卡点击 ===== */
.product-link {
    position: absolute;
    inset: 0;
    z-index: 3;
}

/* ===== 图片区域 ===== */
.product-image {
    overflow: hidden;
}

.product-image img {
    width: 100%;
    display: block;
    transition: transform 0.4s ease;
}

/* 图片hover微放大 */
.product-card:hover img {
    transform: scale(1.05);
}

/* ===== 标签（左上） ===== */
.badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: #2872fa;
    color: #fff;
    padding: 5px 12px;
    font-size: 12px;
    border-radius: 20px;
    font-weight: 600;
    z-index: 4;
}

/* ===== 折扣（右上） ===== */
.discount {
    position: absolute;
    top: 12px;
    right: 12px;
    background: #2872fa;
    color: #fff;
    padding: 5px 12px;
    font-size: 12px;
    border-radius: 20px;
    font-weight: 600;
    z-index: 4;
}

/* ===== 内容区域 ===== */
.product-info {
    padding: 18px 16px 20px;
    text-align: center;
}

/* ===== 标题 ===== */
.product-title {
    font-size: 15px;
    color: #000;
    font-weight: 600;
    line-height: 1.4;
    margin: 10px 0 12px;
}

/* 防止标题过长 */
.product-title {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* ===== 价格 ===== */
.price {
    font-size: 16px;
    color: #000;
    font-weight: 700;
    margin-bottom: 8px;
}

/* 原价 */
.price del {
    color: #999;
    font-weight: 400;
    margin-right: 6px;
}

/* 现价 */
.price ins {
    text-decoration: none;
    color: #000;
}

/* ===== 评分 ===== */
.rating {
    font-size: 14px;
}

/* 星星 */
.stars {
    color: #2872fa;
    font-size: 14px;
}

/* 评论数 */
.reviews {
    color: #2872fa;
    margin-left: 6px;
    font-size: 13px;
}

/* ===== 平板 ===== */
@media (max-width: 1024px) {
    .custom-products {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ===== 手机（关键） ===== */
@media (max-width: 768px) {
    .custom-products {
        grid-template-columns: 1fr !important;
    }

    .custom-products-wrapper {
        padding: 0 12px;
        margin: 30px auto;
    }

    .product-title {
        font-size: 14px;
    }
}