/* ==============================================
   左側分類區 - 文青生活風 (Style B)
============================================== */

.category-box {
    background: #ffffff;
    padding: 18px 16px;
    border-radius: 16px;
    border: 1px solid #e8e8e8;
    box-shadow: 0 4px 12px rgba(0,0,0,0.04);
}

/* 主分類 */
.category-main {
    font-weight: 600;
    display: block;
    padding: 10px 8px;
    margin-bottom: 6px;
    border-radius: 10px;
    color: #333;
    letter-spacing: 0.5px;
    transition: all 0.25s ease;
    text-decoration: none;
}

.category-main:hover {
    background: #f4f4f4;
    color: #d8732a; /* 柔橘色 */
}

.category-main.active {
    background: #fbeee5;  /* 柔淡橙 */
    border-left: 4px solid #d8732a;
    color: #d8732a;
}

.category-main.no-click {
    cursor: default;
    background: #fafafa;
    color: #666;
    border-left: none;
}

/* 次分類容器 */
.category-sub-box {
    margin-left: 10px;
    margin-bottom: 12px;
    padding-left: 10px;
    border-left: 2px dashed #ddd;
}

/* 次分類 */
.category-sub {
    display: block;
    padding: 7px 6px;
    color: #555;
    font-size: 14px;
    border-radius: 8px;
    letter-spacing: 0.3px;
    transition: all 0.25s ease;
    text-decoration: none;
}

.category-sub:hover {
    background: #f4f4f4;
    color: #d8732a;
}

.category-sub.active {
    background: #fbeee5;
    border-left: 4px solid #d8732a;
    color: #d8732a;
    font-weight: 600;
}

/* ==============================================
   右側商品列表 - 卡片 Grid
============================================== */

.product-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

@media (min-width: 992px) {
    .product-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

.product-card {
    display: block;
    background: #fff;
    border-radius: 12px;
    border: 1px solid #e5e5e5;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
    padding: 10px;
    text-decoration: none;
    color: #333;
    transition: 0.2s;
}

.product-card:hover {
    box-shadow: 0 4px 12px rgba(0,0,0,0.10);
    transform: translateY(-2px);
}

/* 商品圖片 1:1 */
.product-img-box {
    width: 100%;
    aspect-ratio: 1 / 1;
    border-radius: 10px;
    overflow: hidden;
    background: #fafafa;
    margin-bottom: 8px;
}

.product-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* 名稱 */
.product-title {
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 4px;
    min-height: 38px; /* 讓兩行文字高度一致 */
}

/* 價格 */
.product-price {
    font-size: 16px;
}

/* ==============================================
   分頁樣式
============================================== */

.pagination-box {
    text-align: center;
    flex-wrap: wrap;
}

.page-btn {
    display: inline-block;
    padding: 6px 10px;
    margin: 2px;
    border-radius: 6px;
    border: 1px solid #ddd;
    background: #fff;
    color: #333;
    text-decoration: none;
    font-size: 14px;
    min-width: 42px;
    transition: 0.2s;
}

.page-btn:hover {
    background: #f4f4f4;
}

.page-btn.active {
    background: #d8732a;
    color: #fff;
    border-color: #d8732a;
}

.page-btn.disabled {
    opacity: 0.5;
    cursor: not-allowed;
}
