/*--------------copyright by alva start-------------------------------*/

/* ── Tokens ───────────────────────────────── */
:root {
    --white: #ffffff;
    --cream: #fdfaf6;
    --bg-light: #f7f5f0;
    --bg-card: #ffffff;
    --border: rgba(44, 44, 42, 0.10);
    --border-md: rgba(44, 44, 42, 0.18);
    --text: #2c2c2a;
    --text-sub: #5f5e5a;
    --text-muted: #88878060;
    --accent: #185fa5;
    --accent-lt: #e6f1fb;
    --green: #0f6e56;
    --green-lt: #e1f5ee;
    --amber: #854f0b;
    --amber-lt: #faeeda;
    --line: #06c755;
    --radius: 10px;
    --radius-sm: 6px;
    --shadow-sm: 0 1px 4px rgba(0, 0, 0, .06);
    --shadow: 0 2px 12px rgba(0, 0, 0, .08);
}

.bnbinner {
    background: #fff;
    width: 1420px;
    max-width: 100%;
    margin: 0 auto;
    padding: 5rem 2rem 10rem;
    text-align: left;
}



.warp1 {
    width: 1100px;
    max-width: 100%;
    margin: 0 auto;
}



/* ── Breadcrumb ───────────────────────────── */
.breadcrumb {
    padding: 14px 0 0;
    font-size: 12px;
    color: var(--text-sub);
    margin-bottom: 18px;
    background: #fff;
    text-align: left;
}

.breadcrumb a {
    color: var(--text-sub);
    text-decoration: none;
    display: inline-block;
}

.breadcrumb a:hover {
    color: var(--accent);
}

.breadcrumb .sep {
    margin: 0 6px;
    opacity: .5;
}


/* ── bnbinfo1 Band ────────────────────────────── */
.bnbinfo1 {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 22px;
    margin-bottom: 18px;
    display: flex;
    gap: 20px;
    align-items: flex-start;
    box-shadow: var(--shadow-sm);
}

.bnbinfo1-thumb {
    width: 160px;
    height: 112px;
    border-radius: var(--radius-sm);
    overflow: hidden;
    flex-shrink: 0;
    border: 1px solid var(--border);
}

.bnbinfo1-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .3s ease;
}

.bnbinfo1-thumb:hover img {
    transform: scale(1.05);
}

.bnbinfo1-body {
    flex: 1;
    min-width: 0;
    text-align: left;
}

.bnbinfo1-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 10px;
}

.tag {
    font-size: 11px;
    font-weight: 500;
    padding: 3px 10px;
    border-radius: 20px;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    letter-spacing: .02em;
}

.tag-green {
    background: var(--green-lt);
    color: var(--green);
}

.tag-blue {
    background: var(--accent-lt);
    color: var(--accent);
}

.tag-amber {
    background: var(--amber-lt);
    color: var(--amber);
}

.bnbinfo1-name {
    font-family: 'Noto Serif TC', serif;
    font-size: 22px;
    font-weight: 700;
    color: var(--text);
    line-height: 1.3;
    margin-bottom: 5px;
}

.bnbinfo1-sub {
    font-size: 13px;
    color: var(--text-sub);
    line-height: 1.65;
    margin-bottom: 11px;
}

.bnbinfo1-meta {
    display: flex;
    flex-direction: column;
    gap: 3px;
    font-size: 12px;
    color: var(--text-sub);
}

.bnbinfo1-meta li {
    display: flex;
    align-items: center;
    gap: 6px;
    list-style: none;
}

.ico {
    width: 15px;
    height: 15px;
    flex-shrink: 0;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
    vertical-align: middle;
}


/* ── Section Label ────────────────────────── */
.sec-label {
    font-size: 11px;
    font-weight: 500;
    letter-spacing: .1em;
    color: var(--text-sub);
    text-transform: uppercase;
    margin: 22px 0 9px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.sec-label::after {
    content: '';
    flex: 1;
    height: 1px;
    background: var(--border);
}

/* ── Photo Grid ───────────────────────────── */
.photo-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
    margin-bottom: 18px;
}

.photo-cell {
    border-radius: var(--radius-sm);
    overflow: hidden;
    border: 1px solid var(--border);
    aspect-ratio: 4 / 3;
    position: relative;
    background: var(--bg-light);
    cursor: pointer;
}

.photo-cell img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .35s ease;
}

.photo-cell:hover img {
    transform: scale(1.06);
}

.photo-cap {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 5px 9px;
    background: linear-gradient(transparent, rgba(0, 0, 0, .52));
    color: #fff;
    font-size: 11px;
    letter-spacing: .03em;
}

/* ── Desc Card ────────────────────────────── */
.card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 18px 20px;
    margin-bottom: 18px;
    box-shadow: var(--shadow-sm);
}

.card p {
    font-size: 14px;
    color: var(--text);
    line-height: 1.85;
    margin-bottom: 11px;
}

.card p:last-child {
    margin-bottom: 0;
}

/* ── Spec Grid ────────────────────────────── */
.spec-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(148px, 1fr));
    gap: 10px;
    margin-bottom: 18px;
}

.spec-item {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 14px 16px;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    box-shadow: var(--shadow-sm);
}

.spec-icon {
    width: 36px;
    height: 36px;
    border-radius: var(--radius-sm);
    background: var(--accent-lt);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.spec-icon svg {
    width: 18px;
    height: 18px;
    stroke: var(--accent);
}

.spec-text {}

.spec-label {
    font-size: 11px;
    color: var(--text-sub);
    margin-bottom: 2px;
}

.spec-val {
    font-size: 14px;
    font-weight: 500;
    color: var(--text);
    line-height: 1.3;
}

/* ── Price Table ──────────────────────────── */
.price-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    margin-bottom: 18px;
    box-shadow: var(--shadow-sm);
}
.price-head {
  background: #f0f4fa;
  padding: 11px 18px;
  font-size: 13.5px;
  font-weight: 500;
  color: var(--text);
  border-bottom: 1px solid var(--border);
}
.price-note {
    font-size: 13.5px;
    color: var(--text-sub);
    padding: 10px 16px;
    border-top: 1px solid var(--border);
    background: var(--bg-light);
    line-height: 1.7;
}
.price-note ul{
	margin: 10px 0 0;
}
.price-note ul li{
	display: flex;
}
.price-note ul li p{
	margin: 0 0 1rem 0;
}
.price-note ul li p:first-child{
    width: 3%;
}
.price-note ul li p:last-child{
    width: 98%;
}

/* ── Facility Grid ────────────────────────── */
.fac-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(138px, 1fr));
    gap: 8px;
    margin-bottom: 18px;
}

.fac-item {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 9px 13px;
    font-size: 13px;
    color: var(--text);
    display: flex;
    align-items: center;
    gap: 9px;
    box-shadow: var(--shadow-sm);
}

.fac-item svg {
    width: 16px;
    height: 16px;
    stroke: var(--text-sub);
    flex-shrink: 0;
}

/* ── Transport Card ───────────────────────── */
.trans-list {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.trans-row {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    border-bottom: 1px solid var(--border);
    font-size: 13.5px;
    color: var(--text);
}

.trans-row:last-child {
    border-bottom: none;
}

.trans-row svg {
    width: 16px;
    height: 16px;
    stroke: var(--text-sub);
    flex-shrink: 0;
    margin-top: 2px;
}

.trans-dist {
    font-weight: 500;
    color: var(--accent);
    min-width: 52px;
    flex-shrink: 0;
}

/* ── Scenic Grid ──────────────────────────── */
.scenic-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    margin-bottom: 18px;
}

.scenic-item {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 9px 12px;
    font-size: 12.5px;
    color: var(--text-sub);
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: var(--shadow-sm);
}

.scenic-item svg {
    width: 15px;
    height: 15px;
    stroke: var(--text-sub);
    flex-shrink: 0;
}

/* ── Rules ────────────────────────────────── */
.rule-list {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.rule-row {
    display: flex;
    align-items: flex-start;
    gap: 11px;
    padding: 9px 0;
    border-bottom: 1px solid var(--border);
    font-size: 13.5px;
    color: var(--text);
    line-height: 1.65;
}

.rule-row:last-child {
    border-bottom: none;
}

.rule-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--border-md);
    flex-shrink: 0;
    margin-top: 8px;
}

/* ── CTA Bar ──────────────────────────────── */
.cta-bar {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 20px 22px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
    box-shadow: var(--shadow-sm);
}

.cta-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.cta-name {
    font-family: 'Noto Serif TC', serif;
    font-size: 17px;
    font-weight: 700;
    color: var(--text);
}

.cta-line {
    font-size: 12.5px;
    color: var(--text-sub);
    display: flex;
    align-items: center;
    gap: 6px;
}

.cta-line svg {
    width: 14px;
    height: 14px;
    stroke: var(--text-sub);
}

.cta-btns {
    display: flex;
    gap: 9px;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 9px 18px;
    border-radius: var(--radius-sm);
    border: 1px solid var(--border-md);
    font-family: 'Noto Sans TC', sans-serif;
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    text-decoration: none;
    transition: opacity .15s, transform .15s;
    background: var(--bg-card);
    color: var(--text);
}

.btn:hover {
    opacity: .85;
    transform: translateY(-1px);
}

.btn svg {
    width: 15px;
    height: 15px;
    stroke: currentColor;
}

.btn-primary {
    background: var(--accent);
    border-color: var(--accent);
    color: #fff;
}

.btn-line {
    background: var(--line);
    border-color: var(--line);
    color: #fff;
}


/* ── Responsive ───────────────────────────── */
@media (max-width: 600px) {
    .bnbinner {
    padding: 5rem 2rem;
}
    .bnbinfo1 {
        flex-direction: column;
    }

    .bnbinfo1-thumb {
        width: 100%;
        height: 180px;
    }

    .photo-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .spec-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .scenic-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .cta-bar {
        flex-direction: column;
        align-items: flex-start;
    }

    .price-note ul li p:first-child {
    width: 10%;
}
	.price-note ul li p:last-child{
    width: 90%;
}
}