/*========shop-index.css========*/

/* 商品區域置中 */
.container-shop {
    max-width: 1200px;
    margin: 40px auto;
    padding: 0 20px;
}

/* 核心：CSS Grid 自動網格 */
.product-show {
    display: grid;
    /* auto-fill: 自動填滿一行 | minmax: 每格最小 250px，多的平分 */
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    /* 設定水平與垂直的間距 */
    gap: 30px; 
}

/* 商品區域樣式 */
.product-card {
    border: 1px solid #eaeaea;
    border-radius: 10px;
    padding: 15px;
    text-align: center;
    background-color: #fff;
    transition: 0.3s;
    overflow: hidden;
}

.product-card:hover {
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

/* 圖片區域 */
.product-img {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    background-color: #f5f5f5;
    border-radius: 5px;
    margin-bottom: 15px;
    display:block
}

.price {
    color: #e44d26;
    font-weight: bold;
    margin: 10px 0;
}

.buy-btm {
    display: inline-block;
    padding: 8px 20px;
    background-color: #7f6a6a;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    font-size: 14px;
}














