/* templet2 首页专用样式 — 原创布局，与 templet1 独立 */

.t2-home { background: var(--t2-bg, #faf7f2); }

.t2-hero {
    background: linear-gradient(135deg, #2b2118 0%, #4a3728 50%, #6b4f3a 100%);
    color: #fff;
    padding: 48px 0 56px;
}
.t2-hero-inner {
    display: grid;
    grid-template-columns: 1fr 280px;
    gap: 32px;
    align-items: center;
}
.t2-hero-tag {
    font-size: 13px;
    letter-spacing: 2px;
    opacity: .85;
    margin-bottom: 12px;
}
.t2-hero-text h1 {
    font-family: Georgia, 'Times New Roman', serif;
    font-size: 36px;
    font-weight: 400;
    line-height: 1.35;
    margin-bottom: 16px;
}
.t2-hero-desc { font-size: 15px; opacity: .9; line-height: 1.7; max-width: 480px; }
.t2-hero-actions { display: flex; gap: 12px; margin-top: 28px; flex-wrap: wrap; }
.t2-btn {
    display: inline-block;
    padding: 11px 24px;
    border-radius: 4px;
    font-size: 14px;
    transition: opacity .2s;
}
.t2-btn-primary { background: #d4a853; color: #1a1a1a; }
.t2-btn-outline { border: 1px solid rgba(255,255,255,.6); color: #fff; }
.t2-btn:hover { opacity: .88; color: inherit; }

.t2-hero-visual { position: relative; min-height: 200px; }
.t2-hero-card {
    position: absolute;
    background: rgba(255,255,255,.12);
    border: 1px solid rgba(255,255,255,.2);
    padding: 14px 18px;
    border-radius: 8px;
    font-size: 13px;
    backdrop-filter: blur(4px);
}
.t2-hero-card-a { top: 0; right: 20px; }
.t2-hero-card-b { top: 70px; right: 0; }
.t2-hero-card-c { bottom: 10px; right: 40px; }

.t2-section-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
}
.t2-section-head h2 {
    font-family: Georgia, serif;
    font-size: 24px;
    font-weight: 400;
    color: #2b2118;
}
.t2-more { font-size: 14px; color: #c45c3e; }
.t2-more:hover { text-decoration: underline; }

.t2-category-showcase,
.t2-featured,
.t2-guides { padding: 40px 0; }
.t2-category-tabs {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 24px;
}
.t2-cat-tab {
    padding: 8px 20px;
    border: 1px solid #ddd;
    border-radius: 24px;
    font-size: 14px;
    color: #555;
    background: #fff;
}
.t2-cat-tab.is-active,
.t2-cat-tab:hover {
    background: #2b2118;
    border-color: #2b2118;
    color: #fff;
}

.t2-product-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}
.t2-product-grid-wide { grid-template-columns: repeat(4, 1fr); }
.t2-product-card {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0,0,0,.06);
    transition: transform .2s, box-shadow .2s;
}
.t2-product-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(0,0,0,.1);
}
.t2-product-thumb {
    aspect-ratio: 1;
    background: #f0ebe3;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
.t2-product-thumb img { width: 100%; height: 100%; object-fit: cover; }
.t2-no-img { color: #bbb; font-size: 13px; }
.t2-product-info { padding: 14px; }
.t2-product-info h3 {
    font-size: 14px;
    font-weight: 400;
    line-height: 1.5;
    height: 42px;
    overflow: hidden;
    margin-bottom: 8px;
}
.t2-price { color: #c45c3e; font-size: 18px; font-weight: 600; }

.t2-about {
    background: #fff;
    padding: 48px 0;
    border-top: 1px solid #ebe5dc;
}
.t2-about-inner {
    display: grid;
    grid-template-columns: 1fr 200px;
    gap: 40px;
    align-items: center;
}
.t2-about-text h2 {
    font-family: Georgia, serif;
    font-size: 26px;
    margin-bottom: 16px;
    color: #2b2118;
}
.t2-about-text p { color: #666; line-height: 1.8; font-size: 15px; margin-bottom: 16px; }
.t2-about-visual {
    min-height: 160px;
    border-radius: 8px;
    overflow: hidden;
    background: linear-gradient(145deg, #e8dfd3, #d4c4b0);
}
.t2-about-visual img {
    width: 100%;
    height: 100%;
    min-height: 200px;
    object-fit: cover;
    display: block;
    border-radius: 8px;
}

.t2-guide-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}
.t2-guide-item {
    display: block;
    background: #fff;
    padding: 20px;
    border-radius: 8px;
    border: 1px solid #ebe5dc;
}
.t2-guide-item h3 { font-size: 15px; margin-bottom: 10px; color: #333; }
.t2-guide-link { font-size: 13px; color: #c45c3e; }

@media (max-width: 900px) {
    .t2-hero-inner { grid-template-columns: 1fr; }
    .t2-hero-visual { display: none; }
    .t2-product-grid,
    .t2-product-grid-wide { grid-template-columns: repeat(2, 1fr); }
    .t2-guide-list { grid-template-columns: 1fr; }
    .t2-about-inner { grid-template-columns: 1fr; }
}
