/* ===== Provider / Product List — PC (1100px) ===== */

/* --- 頁面底色 --- */
body.page_provider_list,
body.page_product_list {
    background-color: var(--color-bg-base);
}

/* --- Banner --- */
#main_visual_ctr {
    margin-top: 20px;
    margin-bottom: 0;
    width: 1100px;
}

#main_visual_carousel_ctr_4 {
    margin-bottom: 0;
    width: 1100px;
    height: 575px;
}

/* --- Section Header Strip (provider name + intro) --- */
.provider-section-header {
    width: 1100px;
    background-color: var(--color-bg-section);
    border-top: 1px solid var(--color-border);
    border-bottom: 1px solid var(--color-border);
    padding: 16px 24px;
    margin: 0 auto;
    box-sizing: border-box;
}

.provider-section-header__name {
    font-family: "Noto Serif TC", serif;
    font-size: 22px;
    font-weight: 600;
    color: var(--color-text-dark);
    margin: 0 0 4px 0;
}

.provider-section-header__desc {
    font-size: 14px;
    color: var(--color-text-muted);
    margin: 0;
    line-height: 1.5;
}

/* --- Breadcrumb --- */
#bread_crumb {
    width: 1100px;
    font-size: 13px;
    height: 20px;
    line-height: 20px;
    vertical-align: middle;
    color: var(--color-text-muted);
    margin-top: 12px;
}

#bread_crumb > a:link,
#bread_crumb > a:visited {
    color: var(--color-text-muted);
    text-decoration: none;
}

#bread_crumb > a:hover {
    color: var(--color-text-body);
    text-decoration: underline;
}

#bread_crumb > a:active {
    color: var(--color-primary);
    text-decoration: none;
}

/* --- Product Grid --- */
#product_list_ctr {
    margin-top: 12px;
    width: 1120px;
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
}

/* --- Product Card --- */
.product_ctr {
    width: 333px;
    min-height: 460px;
    margin: 12px 20px;
    position: relative;
    background-color: var(--color-card);
    border: 1px solid var(--color-border-light);
    border-radius: 6px;
    overflow: hidden;
    transition: background-color 0.2s ease, box-shadow 0.2s ease;
    box-sizing: border-box;
}

.product_ctr:hover {
    background-color: var(--color-card-hover);
    box-shadow: 0 4px 16px rgba(14, 61, 105, 0.10);
}

/* --- Product Image --- */
.product_pic {
    width: 333px;
    height: 333px;
    background-position: center;
    background-size: cover;
    display: block;
}

/* --- Natural Hazard Badge --- */
.natural_harzard_ctr {
    width: 100px;
    height: 85px;
    background-color: var(--color-danger);
}

.natural_harzard_type {
    height: 50px;
    text-align: center;
    font-size: 30px;
    line-height: 50px;
    vertical-align: middle;
    color: var(--color-text-light);
    font-weight: bold;
    letter-spacing: 10px;
    padding-left: 10px;
}

.delay_days {
    height: 35px;
    text-align: center;
    font-size: 15px;
    line-height: 35px;
    vertical-align: middle;
    color: var(--color-text-light);
}

/* --- Product Name --- */
.product_name {
    margin-top: 10px;
    padding: 0 10px;
    width: 100%;
    box-sizing: border-box;
    line-height: 1.4;
    font-size: 17px;
    font-family: "Noto Serif TC", serif;
    font-weight: 500;
    text-align: center;
    color: var(--color-text-dark);
}

.product_name a:link,
.product_name a:visited {
    color: var(--color-text-dark);
    text-decoration: none;
}

.product_name a:hover {
    color: var(--color-primary);
    text-decoration: none;
}

.product_name a:active {
    color: var(--color-primary-dark);
    text-decoration: none;
}

/* --- Product Spec (variant selector) --- */
.product_spec {
    margin-top: 6px;
    padding: 0 8px;
    width: 100%;
    box-sizing: border-box;
    line-height: 26px;
    font-size: 14px;
    color: var(--color-text-muted);
    text-align: center;
}

.product_spec_divider {
    padding: 0 3px;
    color: var(--color-border);
}

.product_spec a:link,
.product_spec a:visited {
    color: var(--color-text-muted);
    text-decoration: none;
}

.product_spec a:hover {
    color: var(--color-primary);
    text-decoration: underline;
}

.product_spec a:active {
    color: var(--color-primary-dark);
    text-decoration: none;
}

/* --- Product Price --- */
.product_price {
    margin: 6px 0 12px;
    width: 100%;
    line-height: 28px;
    font-size: 20px;
    color: var(--color-primary);
    font-weight: 700;
    text-align: center;
    font-variant-numeric: tabular-nums;
}

/* --- Browse More Link --- */
.go_more_prod {
    width: 100%;
    display: flex;
    justify-content: center;
}

.go_more_prod a {
    font-size: 14px;
    color: var(--color-primary);
    margin: 6px 0;
    text-decoration: none;
    border-bottom: 1px solid var(--color-border);
    padding-bottom: 2px;
}

.go_more_prod a:hover {
    color: var(--color-gold);
    border-color: var(--color-gold);
}

/* --- Empty State --- */
.product-empty-state {
    width: 100%;
    text-align: center;
    padding: 60px 20px;
    color: var(--color-text-muted);
}

.product-empty-state__title {
    font-family: "Noto Serif TC", serif;
    font-size: 20px;
    font-weight: 500;
    color: var(--color-text-body);
    margin-bottom: 12px;
}

.product-empty-state__sub {
    font-size: 15px;
    margin-bottom: 24px;
}

.product-empty-state__btn {
    display: inline-block;
    padding: 10px 28px;
    background-color: var(--color-primary);
    color: var(--color-text-light);
    border-radius: 4px;
    text-decoration: none;
    font-size: 15px;
    transition: background-color 0.2s;
}

.product-empty-state__btn:hover {
    background-color: var(--color-primary-dark);
    color: var(--color-text-light);
}
