/* =========================================
   product.css — 產品頁樣式
   ========================================= */

/* 產品卡片 */
.corp-product-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 16px;
}
.corp-product-card {
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    overflow: hidden;
    transition: box-shadow 0.2s;
}
.corp-product-card:hover {
    box-shadow: 0 4px 16px rgba(0,0,0,0.1);
}
.corp-product-card__link {
    display: block;
    text-decoration: none;
    color: inherit;
}
.corp-product-card__thumb img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}
.corp-product-card__body {
    padding: 16px;
}
.corp-product-card__title {
    font-size: 1rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 8px;
}
.corp-product-card__excerpt {
    font-size: 0.875rem;
    color: #64748b;
    line-height: 1.6;
}

/* 產品單頁 */
.corp-single-product {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: start;
}
.corp-single-product__media img {
    width: 100%;
    border-radius: 8px;
}
.corp-single-product__title {
    font-size: 1.75rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 12px;
}
.corp-single-product__cats {
    margin-bottom: 20px;
}
.corp-single-product__cats a {
    display: inline-block;
    padding: 4px 12px;
    background: #eff6ff;
    color: #2563eb;
    border-radius: 20px;
    font-size: 0.8rem;
    text-decoration: none;
    margin-right: 6px;
}
.corp-single-product__content {
    line-height: 1.8;
    color: #475569;
}
