/* ==================== 頁面橫幅 ==================== */
.page-hero {
	height: 40vh;
	min-height: 340px;
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
	overflow: hidden;
	background: linear-gradient(160deg, #2C1F14 0%, #1a1008 50%, #2d1f14 100%);
}

.page-hero::before {
	content: '';
	position: absolute;
	inset: 0;
	background: radial-gradient(ellipse at 50% 40%, rgba(200, 164, 92, 0.1) 0%, transparent 70%);
}

.page-hero-content {
	text-align: center;
	z-index: 5;
	padding: 0 40px;
}

.page-hero-content .hero-eyebrow {
	font-size: 0.75rem;
	letter-spacing: 0.35em;
	color: var(--color-gold);
	text-transform: uppercase;
	margin-bottom: 20px;
}

.page-hero-content h1 {
	font-family: var(--font-display);
	font-size: clamp(2rem, 4vw, 3.5rem);
	color: #FDF8F0;
	letter-spacing: 0.06em;
	line-height: 1.3;
}

.page-hero-content p {
	color: rgba(255, 255, 255, 0.6);
	margin-top: 16px;
	font-size: 0.95rem;
	letter-spacing: 0.08em;
}

/* ==================== 業務板塊導航 ==================== */
.biz-nav-section {
	background: var(--color-white);
	padding: 28px 80px;
	position: sticky;
	top: 70px;
	z-index: 50;
	border-bottom: 1px solid rgba(0, 0, 0, 0.04);
}

.biz-nav-list {
	display: flex;
	gap: 40px;
	justify-content: center;
	list-style: none;
	flex-wrap: wrap;
}

.biz-nav-list a {
	text-decoration: none;
	font-size: 0.82rem;
	letter-spacing: 0.12em;
	color: var(--color-muted);
	padding: 10px 0;
	transition: all 0.3s ease;
	border-bottom: 2px solid transparent;
}

.biz-nav-list a:hover,
.biz-nav-list a.active {
	color: var(--color-gold);
	border-bottom-color: var(--color-gold);
}

/* ==================== 業務區塊 ==================== */
.biz-section {
	padding: 50px 80px;
	position: relative;
	z-index: 1;
}

.biz-section:nth-child(even) {

	background: var(--color-white);
}

.biz-section:nth-child(odd) {
	background: var(--color-soft-bg);
}

.biz-info {
	padding: 30px 40px;
	background: rgba(255, 255, 255, 0.9);
}

.biz-block {
	max-width: 1500px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 72px;
	align-items: center;
	position: absolute;
	top: 50%;
	left: 0;
	right: 0;
	transform: translateY(-50%);
}

.biz-visual {
	border-radius: 12px;
	overflow: hidden;
	box-shadow: var(--shadow-medium);
	transition: all 0.5s ease;
}

.biz-visual:hover {
	transform: scale(1.02);
	box-shadow: 0 20px 60px rgba(44, 31, 20, 0.15);
}

/* 不同板塊的視覺配色，依然保留美感 */
.biz-section:nth-child(1) .biz-visual {
	background: linear-gradient(160deg, #F5E0C3, #E8C98B, #D4A85C);
}

.biz-section:nth-child(2) .biz-visual {
	background: linear-gradient(160deg, #E8D5C4, #D4B896, #C49A6C);
}

.biz-section:nth-child(3) .biz-visual {
	background: linear-gradient(160deg, #F0E0D0, #DCC8A8, #C8A878);
}

.biz-section:nth-child(4) .biz-visual {
	background: linear-gradient(160deg, #F5E6D3, #E8D4A8, #D4B878);
}

.biz-section:nth-child(5) .biz-visual {
	background: linear-gradient(160deg, #E0D8C8, #C8B898, #A89870);
}

.biz-info .biz-tag {
	font-size: 0.7rem;
	letter-spacing: 0.28em;
	color: var(--color-gold);
	text-transform: uppercase;
	margin-bottom: 12px;
	display: block;
}

.biz-info h3 {
	font-family: var(--font-display);
	font-size: 1.8rem;
	color: var(--color-deep);
	letter-spacing: 0.05em;
	margin-bottom: 8px;
}

.biz-info .biz-subtitle {
	font-size: 0.88rem;
	color: var(--color-gold);
	letter-spacing: 0.12em;
	margin-bottom: 20px;
	font-style: italic;
}

.biz-info p {
	color: var(--color-muted);
	line-height: 2;
	margin-bottom: 24px;
	font-size: 0.93rem;
}

.biz-info .biz-highlights {
	list-style: none;
	display: flex;
	flex-wrap: wrap;
	gap: 16px;
}

.biz-info .biz-highlights li {
	background: var(--color-soft-bg);
	padding: 8px 18px;
	border-radius: 20px;
	font-size: 0.78rem;
	color: var(--color-text);
	letter-spacing: 0.06em;
}

/* ==================== 底部CTA ==================== */
.cta-section {
	background: var(--color-deep);
	text-align: center;
	padding: 100px 40px;
	color: #FDF8F0;
}

.cta-sectionbg {
	background: rgba(0, 0, 0, 0.7);
	width: fit-content;
	padding: 30px;
	display: inline-block;
}

.cta-section h2 {
	font-family: var(--font-display);
	font-size: clamp(1.6rem, 3vw, 2.4rem);
	letter-spacing: 0.06em;
	margin-bottom: 16px;
}

.cta-section p {
	color: rgba(255, 255, 255, 0.6);
	margin-bottom: 36px;
	font-size: 0.95rem;
}

/* ==================== 響應式 ==================== */
@media (max-width: 1024px) {
	.biz-section {
		padding: 72px 40px;
	}

	.biz-block {
		grid-template-columns: 1fr;
		gap: 40px;
	}

	.biz-nav-section {
		padding: 20px 40px;
	}

	.biz-nav-list {
		gap: 24px;
	}
}

@media (max-width: 768px) {
	.biz-section {
		padding: 56px 24px;
	}

	.biz-nav-section {
		padding: 16px 24px;
		top: 60px;
	}

	.biz-nav-list {
		gap: 16px;
	}

	.biz-nav-list a {
		font-size: 0.72rem;
	}

	.page-hero {
		height: 30vh;
		min-height: 260px;
	}
}



.faq-container {
	max-width: 800px;
	margin: 60px auto 0;
}

.faq-item {
	border-bottom: 1px solid rgba(0, 0, 0, 0.06);
	padding: 28px 0;
	cursor: pointer;
	transition: all 0.3s ease;
}

.faq-item:hover h3 {
	color: var(--color-gold);
}

.faq-item h3 {
	font-family: var(--font-display);
	font-size: 1.1rem;
	color: var(--color-deep);
	margin-bottom: 8px;
	letter-spacing: 0.05em;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.faq-item h3 .faq-icon {
	font-size: 1.5rem;
	transition: transform 0.3s ease;
}

.faq-item.open h3 .faq-icon {
	transform: rotate(45deg);
}

.faq-item .faq-answer {
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.4s ease, padding 0.4s ease;
}

.faq-item.open .faq-answer {
	max-height: 300px;
	padding-top: 12px;
}

.faq-item .faq-answer p {
	font-size: 0.9rem;
	color: var(--color-muted);
	line-height: 1.8;
}



.gift-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 36px;
	margin-top: 60px;
	max-width: 1000px;
	margin-left: auto;
	margin-right: auto;
}

.gift-card {
	background: #fff;
	border-radius: 12px;
	overflow: hidden;
	box-shadow: var(--shadow-soft);
	transition: all 0.4s ease;
}

.gift-card:hover {
	transform: translateY(-8px);
	box-shadow: var(--shadow-medium);
}

.gift-card-img {
	width: 100%;
	aspect-ratio: 16/10;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 4rem;
	transition: transform 0.5s ease;
}

.gift-card:hover .gift-card-img {
	transform: scale(1.05);
}

.gift-card:nth-child(1) .gift-card-img {
	background: linear-gradient(135deg, #F5E0C3, #E8C98B);
}

.gift-card:nth-child(2) .gift-card-img {
	background: linear-gradient(135deg, #E8D5C4, #D4B896);
}

.gift-card:nth-child(3) .gift-card-img {
	background: linear-gradient(135deg, #F0E0D0, #DCC8A8);
}

.gift-card:nth-child(4) .gift-card-img {
	background: linear-gradient(135deg, #F5E6D3, #E8D4A8);
}

.gift-card-body {
	padding: 28px;
}

.gift-card-body .gift-tag {
	font-size: 0.65rem;
	letter-spacing: 0.2em;
	color: var(--color-gold);
	background: rgba(200, 164, 92, 0.1);
	display: inline-block;
	padding: 4px 14px;
	border-radius: 2px;
	margin-bottom: 12px;
}

.gift-card-body h3 {
	font-family: var(--font-display);
	font-size: 1.4rem;
	color: var(--color-deep);
	margin-bottom: 8px;
}

.gift-card-body p {
	font-size: 0.88rem;
	color: var(--color-muted);
	line-height: 1.8;
}

.btn-outline {
	margin-top: 16px;
}

/* 招商入口條 */
.partner-strip {
	background: var(--color-gold);
	text-align: center;
	padding: 48px 40px;
	color: #fff;
}

.partner-strip h3 {
	font-family: var(--font-display);
	font-size: 1.4rem;
	letter-spacing: 0.06em;
	margin-bottom: 8px;
}

.partner-strip p {
	opacity: 0.8;
	margin-bottom: 20px;
	font-size: 0.9rem;
}

.btn-white-outline {
	display: inline-block;
	padding: 12px 36px;
	border: 1px solid #fff;
	color: #fff;
	text-decoration: none;
	font-size: 0.8rem;
	letter-spacing: 0.12em;
	transition: all 0.3s ease;
}

.btn-white-outline:hover {
	background: #fff;
	color: var(--color-gold);
}

@media (max-width: 768px) {
	.gift-grid {
		grid-template-columns: 1fr;
	}

	.partner-strip {
		padding: 36px 24px;
	}
}

.page-hero {
	height: 45vh;
	min-height: 360px;
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
	overflow: hidden;
	background: linear-gradient(160deg, #3a2e20 0%, #1a1510 50%, #2d1f14 100%);
}

.page-hero::before {
	content: '';
	position: absolute;
	inset: 0;
	background: radial-gradient(ellipse at 50% 40%, rgba(200, 164, 92, 0.1) 0%, transparent 70%);
}

.page-hero-content {
	text-align: center;
	z-index: 5;
	padding: 0 40px;
}

.page-hero-content .hero-eyebrow {
	font-size: 0.75rem;
	letter-spacing: 0.35em;
	color: var(--color-gold);
	text-transform: uppercase;
	margin-bottom: 16px;
	display: block;
}

.page-hero-content h1 {
	font-family: var(--font-display);
	font-size: clamp(2rem, 4vw, 3.5rem);
	color: #FDF8F0;
	letter-spacing: 0.06em;
	line-height: 1.3;
}

.page-hero-content .back-link {
	font-size: 0.8rem;
	letter-spacing: 0.12em;
	color: var(--color-gold);
	text-decoration: none;
	display: inline-block;
	margin-top: 20px;
	transition: all 0.3s ease;
}

.page-hero-content .back-link:hover {
	color: var(--color-gold-light);
}

/* 产品详情布局 */
.detail-section {
	background: var(--color-white);
	padding: 80px;
}

.detail-grid {
	max-width: 1100px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 72px;
	align-items: start;
}

.detail-visual {

	border-radius: 16px;
	overflow: hidden;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 8rem;
	background: linear-gradient(160deg, #F5E0C3, #E8C98B, #D4A85C);
	box-shadow: var(--shadow-medium);
}

.detail-info h3 {
	font-family: var(--font-display);
	font-size: 2rem;
	color: var(--color-deep);
	letter-spacing: 0.06em;
	margin-bottom: 6px;
}

.detail-info .tagline {
	font-size: 0.9rem;
	color: var(--color-gold);
	letter-spacing: 0.1em;
	margin-bottom: 20px;
	font-style: italic;
}

.detail-info .desc {
	color: var(--color-muted);
	line-height: 2;
	margin-bottom: 24px;
	font-size: 0.95rem;
}

/* 规格表格 */
.spec-table {
	width: 100%;
	border-collapse: collapse;
	margin-bottom: 28px;
}

.spec-table th,
.spec-table td {
	padding: 12px 16px;
	text-align: left;
	font-size: 0.85rem;
	border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.spec-table th {
	color: var(--color-deep);
	font-weight: 500;
	width: 30%;
	letter-spacing: 0.06em;
}

.spec-table td {
	color: var(--color-muted);
}

/* 卖点图标列表 */
.feature-list {
	list-style: none;
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 14px;
	margin-bottom: 24px;
}

.feature-list li {
	display: flex;
	align-items: center;
	gap: 10px;
	font-size: 0.85rem;
	color: var(--color-text);
}

.feature-list li .feat-icon {
	font-size: 1.2rem;
}

/* 规格选择卡片 */
.variant-section {
	background: var(--color-soft-bg);
	padding: 80px;
}

.variant-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 28px;
	margin-top: 48px;
	max-width: 1100px;
	margin-left: auto;
	margin-right: auto;
}

.variant-card {
	background: #fff;
	border-radius: 10px;
	padding: 32px 24px;
	text-align: center;
	box-shadow: var(--shadow-soft);
	transition: all 0.35s ease;
}

.variant-card:hover {
	transform: translateY(-6px);
	box-shadow: var(--shadow-medium);
}

.variant-card .v-icon {
	font-size: 3rem;
	margin-bottom: 12px;
}

.variant-card h4 {
	font-family: var(--font-display);
	font-size: 1.1rem;
	color: var(--color-deep);
	margin-bottom: 4px;
}

.variant-card .v-spec {
	font-size: 0.8rem;
	color: var(--color-gold);
	letter-spacing: 0.08em;
	margin-bottom: 8px;
}

.variant-card p {
	font-size: 0.82rem;
	color: var(--color-muted);
	line-height: 1.6;
	margin-bottom: 16px;
}

.variant-card .btn-outline {
	font-size: 0.72rem;
	padding: 8px 24px;
}

@media (max-width: 1024px) {
	.detail-section {
		padding: 60px 40px;
	}

	.detail-grid {
		grid-template-columns: 1fr;
		gap: 40px;
	}

	.variant-section {
		padding: 60px 40px;
	}

	.variant-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 768px) {
	.detail-section {
		padding: 44px 24px;
	}

	.variant-section {
		padding: 44px 24px;
	}

	.variant-grid {
		grid-template-columns: 1fr;
	}

	.feature-list {
		grid-template-columns: 1fr;
	}
}

/* 产品导航按钮样式 */
/* 产品导航按钮容器 */
.detail-navigation {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 60px;
    padding: 30px 0 20px;
    flex-wrap: wrap;
    border-top: 1px solid rgba(212, 184, 150, 0.3);
}

/* 按钮基础样式 */
.nav-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 32px;
    font-size: 0.95rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.35s cubic-bezier(0.2, 0.9, 0.4, 1.1);
    position: relative;
    overflow: hidden;
    cursor: pointer;
    backdrop-filter: blur(4px);
}

/* 按钮内部图标和文字 */
.nav-btn .btn-icon {
    font-size: 1.1rem;
    transition: transform 0.3s ease;
}

.nav-btn .btn-text {
    transition: transform 0.3s ease;
}

/* ===== 上一个产品按钮 ===== */
.nav-prev {
    background: transparent;
    color: #5a3e2b;
    border: 1.5px solid #d4b896;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.nav-prev:hover {
    background: linear-gradient(135deg, #8b6914 0%, #6b4f10 100%);
    color: #fff;
    border-color: #8b6914;
    transform: translateX(-6px);
    box-shadow: 0 8px 20px rgba(107, 79, 16, 0.35);
}

.nav-prev:hover .btn-icon {
    transform: translateX(-4px);
}

.nav-prev:hover .btn-text {
    transform: translateX(-2px);
}

/* ===== 返回列表按钮 ===== */
.nav-list {
    background: linear-gradient(135deg, #b8860b 0%, #8b6914 100%);
    color: #fff;
    border: none;
    box-shadow: 0 4px 12px rgba(184, 134, 11, 0.3);
}

.nav-list:hover {
    background: linear-gradient(135deg, #d4a017 0%, #b8860b 100%);
    transform: translateY(-4px);
    box-shadow: 0 12px 28px rgba(184, 134, 11, 0.45);
}

.nav-list:hover .btn-icon {
    transform: rotate(90deg);
}

/* ===== 下一个产品按钮 ===== */
.nav-next {
    background: transparent;
    color: #5a3e2b;
    border: 1.5px solid #d4b896;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.nav-next:hover {
    background: linear-gradient(135deg, #8b6914 0%, #6b4f10 100%);
    color: #fff;
    border-color: #8b6914;
    transform: translateX(6px);
    box-shadow: 0 8px 20px rgba(107, 79, 16, 0.35);
}

.nav-next:hover .btn-icon {
    transform: translateX(4px);
}

.nav-next:hover .btn-text {
    transform: translateX(2px);
}

/* ===== 禁用状态（无产品时） ===== */
.nav-btn.disabled {
    opacity: 0.45;
    cursor: not-allowed;
    pointer-events: none;
    filter: grayscale(0.15);
    background: rgba(212, 184, 150, 0.2);
    border-color: #c9b08c;
    color: #9b7a5a;
    transform: none !important;
}

/* ===== 响应式：手机端按钮缩小 ===== */
@media (max-width: 640px) {
    .detail-navigation {
        gap: 16px;
    }
    
    .nav-btn {
        padding: 8px 20px;
        gap: 6px;
        font-size: 0.8rem;
    }
    
    .nav-btn .btn-icon {
        font-size: 0.95rem;
    }
}

/* ===== 可选：按钮点击波纹效果 ===== */
.nav-btn:active {
    transform: scale(0.96) !important;
    transition: transform 0.1s ease;
}

.nav-list:active {
    transform: scale(0.96) translateY(-2px) !important;
}