/*====== Gift Guide 情境導購頁面 ======*/

/*====== Hero 區 ======*/
.gift-guide-hero {
    padding: 4rem 0;
    margin-bottom: 4rem;
}

.gift-guide-hero-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.gift-guide-hero-text {
    display: flex;
    flex-direction: column;
    gap: 1.6rem;
}

/* Breadcrumb */
.breadcrumb-nav {
    margin: 0;
    padding: 0;
    font-size: 1.4rem;
}

.breadcrumb-list {
    display: flex;
    align-items: center;
    gap: 1rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.breadcrumb-list li {
    display: flex;
    align-items: center;
    margin: 0;
}

.breadcrumb-list li:not(:last-child)::after {
    content: '/';
    margin-left: 1rem;
    color: #ccc;
}

.breadcrumb-list a {
    color: #888;
    text-decoration: none;
    transition: color 0.2s ease;
}

.breadcrumb-list a:hover {
    color: var(--sgtn-terracotta);
}

.breadcrumb-list li[aria-current="page"] {
    color: var(--sgtn-terracotta);
    font-weight: 600;
}

/* 主標題 */
.gift-guide-hero-title {
    font-family: 'Noto Serif TC', serif;
    font-size: 3.6rem;
    font-weight: 700;
    color: var(--sgtn-cocoa);
    line-height: 1.3;
    margin: 0;
}

/* 說明文字 */
.gift-guide-hero-desc {
    font-size: 1.6rem;
    color: #666;
    line-height: 1.8;
    margin: 0;
}

/* CTA 按鈕 */
.gift-guide-hero-cta {
    margin-top: 1.6rem;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 1.2rem 2.4rem;
    border: none;
    border-radius: 6px;
    font-size: 1.5rem;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-primary {
    background: var(--sgtn-terracotta);
    color: #fff;
}

.btn-primary:hover {
    background: var(--sgtn-terracotta-hover);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(201, 95, 74, 0.3);
}

.btn-outline {
    border: 1.5px solid var(--sgtn-terracotta);
    color: var(--sgtn-terracotta);
    background: transparent;
}

.btn-outline:hover {
    background: var(--sgtn-terracotta);
    color: #fff;
}

/* 圖片容器 */
.gift-guide-hero-image {
    position: relative;
}

.gift-guide-hero-image figure {
    margin: 0;
    padding: 0;
    overflow: hidden;
    border-radius: 8px;
    background: var(--sgtn-line-sand);
}

.gift-guide-hero-image img {
    width: 100%;
    height: auto;
    display: block;
}

/*====== 區塊標題（共用） ======*/
.gift-guide-section-header {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    margin-bottom: 3rem;
    text-align: left;
}

.gift-guide-section-header h2 {
    font-family: 'Noto Serif TC', serif;
    font-size: 3rem;
    font-weight: 700;
    color: var(--sgtn-cocoa);
    margin: 0;
    line-height: 1.3;
}

.gift-guide-section-header p {
    font-size: 1.5rem;
    color: #888;
    margin: 0;
    line-height: 1.5;
}

/*====== 精選禮盒區 ======*/
.gift-guide-featured {
    padding: 4rem 0;
    background: var(--sgtn-warm-white);
    background-image: var(--texture-paper);
}

.gift-guide-featured-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem 1.6rem;
}

/* 禮盒卡片 */
.gift-guide-product-card {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.gift-guide-product-card-link {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    height: 100%;
    text-decoration: none;
    transition: transform 0.28s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.gift-guide-product-card-link:hover {
    transform: translateY(-6px);
}

/* 商品圖片 */
.gift-guide-product-image {
    position: relative;
    width: 100%;
    padding-bottom: 100%;
    overflow: hidden;
    border-radius: 8px;
    background: var(--sgtn-line-sand);
}

.gift-guide-product-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.3s ease;
}

.gift-guide-product-card-link:hover .gift-guide-product-image img {
    transform: scale(1.05);
}

/* 情境標籤 */
.gift-guide-product-tag {
    position: absolute;
    top: 1.2rem;
    right: 1.2rem;
    padding: 0.5rem 1rem;
    background: rgba(201, 95, 74, 0.85);
    color: #fff;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 4px;
    backdrop-filter: blur(4px);
    z-index: 2;
}

/* 商品資訊 */
.gift-guide-product-info {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    flex: 1;
}

.gift-guide-product-info h3 {
    font-family: 'Noto Serif TC', serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--sgtn-cocoa);
    margin: 0;
    line-height: 1.3;
    transition: color 0.2s ease;
}

.gift-guide-product-card-link:hover .gift-guide-product-info h3 {
    color: var(--sgtn-terracotta);
}

/* 商品說明 */
.gift-guide-product-desc {
    font-size: 1.4rem;
    color: #888;
    margin: 0;
    line-height: 1.5;
    flex: 1;
}

/* 商品價格 */
.gift-guide-product-price {
    margin-top: auto;
}

.gift-guide-product-price .price {
    font-size: 2rem;
    font-weight: 700;
    color: var(--sgtn-terracotta);
}

/*====== 祝福方向導引區 ======*/
.gift-guide-subcategories {
    padding: 4rem 0;
    background: var(--sgtn-warm-white);
}

.gift-guide-subcategories-nav {
    margin: 0;
    padding: 0;
}

.gift-guide-subcategories-list {
    display: flex;
    flex-wrap: wrap;
    gap: 1rad;
    list-style: none;
    margin: 0;
    padding: 0;
}

.gift-guide-subcategory-pill {
    display: inline-flex;
    align-items: center;
    padding: 0.8rem 2rem;
    border: 1.5px solid rgba(201, 95, 74, 0.3);
    border-radius: 999px;
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--sgtn-cocoa);
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
}

.gift-guide-subcategory-pill:hover {
    border-color: var(--sgtn-terracotta);
    background: var(--sgtn-terracotta);
    color: #fff;
}

/*====== 推薦商品列表 ======*/
.gift-guide-recommendations {
    padding: 4rem 0;
}

.gift-guide-products-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem 1.6rem;
}

.gift-guide-product-list-item {
    display: flex;
}

.gift-guide-product-list-item a {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    width: 100%;
    text-decoration: none;
    transition: transform 0.28s ease;
}

.gift-guide-product-list-item a:hover {
    transform: translateY(-4px);
}

.gift-guide-product-list-image {
    position: relative;
    width: 100%;
    padding-bottom: 100%;
    overflow: hidden;
    border-radius: 6px;
    background: var(--sgtn-line-sand);
}

.gift-guide-product-list-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gift-guide-product-list-item a:hover .gift-guide-product-list-image img {
    transform: scale(1.04);
}

.gift-guide-product-list-item h3 {
    font-size: 1.6rem;
    font-weight: 600;
    color: var(--sgtn-cocoa);
    margin: 0;
    line-height: 1.4;
}

.gift-guide-product-list-item p {
    margin: 0;
    font-size: 1.4rem;
    line-height: 1.4;
}

.product-category {
    color: #999;
    font-style: italic;
}

.product-price {
    color: var(--sgtn-terracotta);
    font-weight: 700;
    font-size: 1.8rem;
}

/*====== 送禮小指南 ======*/
.gift-guide-tips {
    padding: 5rem 0;
    background: linear-gradient(135deg, rgba(255, 244, 240, 0.5) 0%, rgba(240, 235, 227, 0.5) 100%);
}

.gift-guide-tips-inner {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.gift-guide-tips-header {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.gift-guide-tips-header h2 {
    font-family: 'Noto Serif TC', serif;
    font-size: 3rem;
    font-weight: 700;
    color: var(--sgtn-cocoa);
    margin: 0;
    line-height: 1.3;
}

.gift-guide-tips-header p {
    font-size: 1.5rem;
    color: #999;
    margin: 0;
}

.gift-guide-tips-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.4rem 2rem;
}

.gift-guide-tip-item {
    display: flex;
    gap: 1.6rem;
}

.gift-guide-tip-number {
    flex-shrink: 0;
    width: 4.8rem;
    height: 4.8rem;
    border-radius: 50%;
    background: var(--sgtn-terracotta);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 700;
    font-family: 'Noto Serif TC', serif;
}

.gift-guide-tip-content {
    display: flex;
    align-items: center;
    flex: 1;
}

.gift-guide-tip-content p {
    font-size: 1.5rem;
    color: #333;
    line-height: 1.7;
    margin: 0;
}

/*====== 回到情境選購 CTA ======*/
.gift-guide-back-to-scenarios {
    padding: 4rem 0;
    background: var(--sgtn-warm-white);
}

.gift-guide-cta-block {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    text-align: center;
    padding: 3rem 2rem;
    border: 2px solid rgba(201, 95, 74, 0.15);
    border-radius: 8px;
    background: #fff;
}

.gift-guide-cta-block h3 {
    font-family: 'Noto Serif TC', serif;
    font-size: 2.4rem;
    font-weight: 700;
    color: var(--sgtn-cocoa);
    margin: 0;
}

/*====== Category Placeholder ======*/
.gift-guide-category-placeholder {
    padding: 4rem 2rem;
    text-align: center;
    background: #fff;
    border: 1px solid var(--sgtn-line-sand);
    border-radius: 8px;
}

.gift-guide-category-placeholder p {
    font-size: 1.6rem;
    color: #666;
    margin: 0;
    line-height: 1.6;
}

/*====== RWD: 平板版本 (≤ 1024px) ======*/
@media (max-width: 1024px) {
    .gift-guide-hero-inner {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .gift-guide-featured-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.6rem 1.2rem;
    }

    .gift-guide-products-list {
        grid-template-columns: repeat(2, 1fr);
    }

    .gift-guide-tips-list {
        grid-template-columns: 1fr;
        gap: 1.8rem;
    }

    .gift-guide-hero-title {
        font-size: 2.8rem;
    }

    .gift-guide-section-header h2 {
        font-size: 2.4rem;
    }
}

/*====== RWD: 手機版本 (≤ 768px) ======*/
@media (max-width: 768px) {
    .gift-guide-hero {
        padding: 2rem 0;
        margin-bottom: 2rem;
    }

    .gift-guide-hero-text {
        gap: 1.2rem;
    }

    .gift-guide-hero-title {
        font-size: 2.2rem;
    }

    .gift-guide-hero-desc {
        font-size: 1.5rem;
    }

    .btn {
        width: 100%;
        justify-content: center;
    }

    .gift-guide-featured-grid {
        grid-template-columns: 1fr;
        gap: 1.6rem;
    }

    .gift-guide-products-list {
        grid-template-columns: 1fr;
    }

    .gift-guide-section-header {
        margin-bottom: 2rem;
    }

    .gift-guide-section-header h2 {
        font-size: 2rem;
    }

    .gift-guide-section-header p {
        font-size: 1.4rem;
    }

    .gift-guide-subscategories-list {
        gap: 0.8rem;
    }

    .gift-guide-subcategory-pill {
        padding: 0.6rem 1.4rem;
        font-size: 1.3rem;
    }

    .gift-guide-tips-list {
        gap: 1.6rem;
    }

    .gift-guide-tip-item {
        gap: 1.2rem;
    }

    .gift-guide-tip-number {
        width: 4rem;
        height: 4rem;
        font-size: 1.6rem;
        flex-shrink: 0;
    }

    .gift-guide-tip-content p {
        font-size: 1.4rem;
    }

    .gift-guide-cta-block {
        padding: 2rem 1.6rem;
        gap: 1.6rem;
    }

    .gift-guide-cta-block h3 {
        font-size: 1.8rem;
    }

    .breadcrumb-list {
        flex-wrap: wrap;
        gap: 0.6rem;
    }

    .breadcrumb-list li:not(:last-child)::after {
        margin-left: 0.6rem;
    }
}
