/**
 * 綠意家園 - 主樣式表
 * 溫暖療癒綠配色方案
 * 
 * 配色：
 * - 主色：#66BB6A (柔和綠)
 * - 輔色：#A5D6A7 (粉綠)
 * - 強調：#388E3C (森林綠)
 * - 背景：#E8F5E9 (奶綠背景)
 * - 文字：#2E7D32 (深綠)
 */

/* ========== 字體設定 ========== */
@import url('https://fonts.googleapis.com/css2?family=Noto+Serif+TC:wght@400;500;600;700&display=swap');

/* ========== 01. Reset & Base ========== */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html, body {
    margin: 0;
    padding: 0;
    width: 100%;
    overflow-x: hidden;
    scroll-behavior: smooth;
}

body {
    font-family: "Noto Serif TC", "PingFang TC", "Microsoft JhengHei", sans-serif;
    color: #2E7D32;
    line-height: 1.7;
    background: #F9F6F0;
    background-image: 
        linear-gradient(90deg, rgba(139, 90, 43, 0.02) 1px, transparent 1px),
        linear-gradient(rgba(139, 90, 43, 0.02) 1px, transparent 1px);
    background-size: 60px 60px;
}

a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #66BB6A;
}

img, video {
    display: block;
    max-width: 100%;
    height: auto;
}

/* ========== 02. Layout ========== */
.l-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.l-main {
    margin-top: 80px;
    min-height: 60vh;
}

@media (max-width: 767px) {
    .l-main {
        margin-top: 72px;
    }
    .l-inner {
        padding: 0 16px;
    }
}

/* ========== 03. 載入動畫 ========== */
#site_loader_overlay {
    position: fixed;
    z-index: 99999;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.95);
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 1;
    transition: opacity 0.5s ease;
}

#site_loader_overlay.fade-out {
    opacity: 0;
    pointer-events: none;
}

#site_loader_animation {
    width: 250px;
    height: 250px;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    animation: pulse 1.5s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.05); opacity: 0.8; }
}

/* ========== 04. Header ========== */
.l-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: linear-gradient(135deg, rgba(249, 246, 240, 0.98) 0%, rgba(255, 253, 247, 0.98) 100%);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 10px rgba(139, 90, 43, 0.12), 0 1px 0 rgba(139, 90, 43, 0.05);
    border-bottom: 1px solid rgba(139, 90, 43, 0.1);
    transform: translateY(0);
    transition: transform 0.4s ease, box-shadow 0.3s ease;
}

.l-header.header-hidden {
    transform: translateY(-100%);
    box-shadow: none;
}

.l-header.header-visible {
    transform: translateY(0);
    box-shadow: 0 4px 15px rgba(139, 90, 43, 0.15), 0 2px 0 rgba(139, 90, 43, 0.08);
}

.l-header__inner {
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.l-header__desktop {
    display: flex;
    align-items: center;
    gap: 20px;
    flex: 1;
    justify-content: flex-end;
}

.brand-link {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 700;
    font-size: 1.5rem;
    color: #5D4E37;
    letter-spacing: 0.5px;
    text-shadow: 0 1px 2px rgba(139, 90, 43, 0.1);
}

.brand-logo {
    width: 50px;
    height: 50px;
    object-fit: contain;
}

/* 導航選單 */
.p-global-nav {
    display: flex;
    margin-left: auto;
}

.p-global-nav ul {
    list-style: none;
    display: flex;
    gap: 8px;
}

.p-global-nav a {
    display: block;
    padding: 12px 20px;
    border-radius: 8px;
    color: #5D4E37;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    background: transparent;
}

.p-global-nav a::before {
    content: '';
    position: absolute;
    bottom: 8px;
    left: 20px;
    right: 20px;
    height: 2px;
    background: linear-gradient(90deg, #8B5A2B, #A0826D);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.p-global-nav a:hover {
    background: linear-gradient(135deg, rgba(139, 90, 43, 0.08), rgba(160, 130, 109, 0.08));
    color: #8B5A2B;
    transform: translateY(-2px);
}

.p-global-nav a:hover::before {
    transform: scaleX(0.6);
}

.p-global-nav a.active {
    background: linear-gradient(135deg, rgba(139, 90, 43, 0.15), rgba(160, 130, 109, 0.12));
    color: #8B5A2B;
    font-weight: 600;
    box-shadow: inset 0 2px 4px rgba(139, 90, 43, 0.1);
}

.p-global-nav a.active::before {
    transform: scaleX(1);
    background: linear-gradient(90deg, #8B5A2B, #D4AF37);
}

/* LINE 按鈕 */
.l-header__actions {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-left: 20px;
}

.c-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 18px;
    border-radius: 25px;
    background: linear-gradient(135deg, #66BB6A, #81C784);
    color: white;
    font-weight: 500;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(102, 187, 106, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.c-btn:hover {
    background: linear-gradient(135deg, #388E3C, #66BB6A);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(102, 187, 106, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

/* 手機版 LINE 按鈕（在選單內） */
.p-mobile-line {
    display: none;
}

/* 手機版選單按鈕 */
.p-menu-btn {
    display: none;
    position: relative;
    width: 32px;
    height: 32px;
    border: 0;
    background: none;
    cursor: pointer;
    z-index: 1001;
    margin-left: auto;
}

.p-menu-btn::before,
.p-menu-btn::after,
.p-menu-btn .c-menu-btn__line {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    height: 3px;
    background: #388E3C;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.p-menu-btn::before { top: 8px; }
.p-menu-btn .c-menu-btn__line { top: 15px; }
.p-menu-btn::after { bottom: 8px; }

.p-menu-btn.is-active::before {
    top: 15px;
    transform: rotate(45deg);
}

.p-menu-btn.is-active .c-menu-btn__line {
    opacity: 0;
}

.p-menu-btn.is-active::after {
    bottom: 15px;
    transform: rotate(-45deg);
}

/* 手機版導航 */
@media (max-width: 767px) {
    .l-header__inner {
        height: 72px;
    }
    
    .brand-link {
        font-size: 1.2rem;
    }
    
    .brand-logo {
        width: 40px;
        height: 40px;
    }
    
    .l-header__desktop {
        position: static;
    }
    
    .p-menu-btn {
        display: inline-block;
        order: 3;
    }
    
    .p-global-nav {
        display: none;
        position: fixed;
        left: 0;
        right: 0;
        top: 72px;
        background: linear-gradient(135deg, rgba(249, 246, 240, 0.98) 0%, rgba(255, 253, 247, 0.98) 100%);
        backdrop-filter: blur(10px);
        box-shadow: 0 6px 16px rgba(139, 90, 43, 0.15);
        max-height: calc(100vh - 72px);
        overflow-y: auto;
        border-top: 1px solid rgba(139, 90, 43, 0.1);
    }
    
    .p-global-nav.is-active {
        display: block;
    }
    
    .p-global-nav ul {
        flex-direction: column;
        gap: 0;
    }
    
    .p-global-nav li {
        border-bottom: 1px solid rgba(139, 90, 43, 0.08);
    }
    
    .p-global-nav a {
        padding: 16px 20px;
        border-radius: 0;
    }
    
    /* 手機版隱藏桌面版 LINE 按鈕 */
    .l-header__actions {
        display: none;
    }
    
    /* 手機版顯示選單內的 LINE 按鈕 */
    .p-mobile-line {
        display: block;
        padding: 20px;
        border-top: 2px solid rgba(139, 90, 43, 0.15);
        background: rgba(102, 187, 106, 0.05);
    }
    
    .c-btn--mobile {
        width: 100%;
        justify-content: center;
        display: flex;
        gap: 10px;
        padding: 14px 20px;
        font-size: 1rem;
    }
    
    .c-btn--mobile svg {
        flex-shrink: 0;
    }
}

/* ========== 05. Hero Section ========== */
.p-index-hero {
    position: relative;
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #F9F6F0 0%, #FFF8E7 50%, #E8F5E9 100%);
    overflow: hidden;
}

.p-index-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(139, 90, 43, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(102, 187, 106, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.p-hero__content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 60px 20px;
}

.p-hero__title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    color: #388E3C;
    margin-bottom: 20px;
    font-weight: 700;
    line-height: 1.3;
}

.p-hero__subtitle {
    font-size: clamp(1.1rem, 2.5vw, 1.5rem);
    color: #66BB6A;
    margin-bottom: 40px;
    font-weight: 500;
}

.p-hero__cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 40px;
    background: linear-gradient(135deg, #66BB6A 0%, #81C784 100%);
    color: white;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    box-shadow: 
        0 6px 20px rgba(102, 187, 106, 0.4),
        inset 0 2px 0 rgba(255, 255, 255, 0.25),
        inset 0 -2px 4px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
}

.p-hero__cta:hover {
    background: linear-gradient(135deg, #388E3C 0%, #66BB6A 100%);
    transform: translateY(-3px);
    box-shadow: 
        0 8px 25px rgba(102, 187, 106, 0.5),
        inset 0 2px 0 rgba(255, 255, 255, 0.3),
        inset 0 -2px 4px rgba(0, 0, 0, 0.15);
}

/* Hero SVG 裝飾 */
.p-hero__decoration {
    position: absolute;
    z-index: 1;
    opacity: 0.15;
    pointer-events: none;
}

.p-hero__decoration--1 {
    top: 10%;
    left: 5%;
    width: 150px;
    animation: float 6s ease-in-out infinite;
}

.p-hero__decoration--2 {
    top: 20%;
    right: 10%;
    width: 120px;
    animation: float 5s ease-in-out infinite 1s;
}

.p-hero__decoration--3 {
    bottom: 15%;
    left: 15%;
    width: 100px;
    animation: float 7s ease-in-out infinite 2s;
}

.p-hero__decoration--4 {
    bottom: 10%;
    right: 8%;
    width: 130px;
    animation: float 6.5s ease-in-out infinite 1.5s;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(5deg); }
}

@media (max-width: 767px) {
    .p-index-hero {
        min-height: 60vh;
    }
    
    .p-hero__decoration {
        opacity: 0.08;
    }
    
    .p-hero__decoration--1,
    .p-hero__decoration--2 {
        width: 80px;
    }
    
    .p-hero__decoration--3,
    .p-hero__decoration--4 {
        width: 70px;
    }
}

/* ========== 06. 區塊標題 ========== */
.p-section {
    padding: 80px 0;
}

.p-section__header {
    text-align: center;
    margin-bottom: 60px;
}

.p-section__title {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    color: #388E3C;
    margin-bottom: 15px;
    font-weight: 700;
    position: relative;
    display: inline-block;
}

.p-section__title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, #8B5A2B, #D4AF37, #66BB6A);
    border-radius: 2px;
    box-shadow: 0 2px 4px rgba(139, 90, 43, 0.2);
}

.p-section__subtitle {
    font-size: 1.1rem;
    color: #66BB6A;
    margin-top: 25px;
}

@media (max-width: 767px) {
    .p-section {
        padding: 50px 0;
    }
    
    .p-section__header {
        margin-bottom: 40px;
    }
}

/* ========== 07. 商品網格 ========== */
.p-products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

@media (max-width: 1024px) {
    .p-products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
}

@media (max-width: 767px) {
    .p-products-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

/* 商品卡片 */
.p-product-card {
    background: linear-gradient(135deg, #FFFEF9 0%, #FFF8F0 100%);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 
        0 4px 15px rgba(139, 90, 43, 0.08),
        0 1px 3px rgba(139, 90, 43, 0.12),
        inset 0 1px 0 rgba(255, 255, 255, 0.5);
    border: 1px solid rgba(139, 90, 43, 0.08);
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(30px);
}

.p-product-card.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.p-product-card:hover {
    transform: translateY(-8px);
    box-shadow: 
        0 8px 25px rgba(102, 187, 106, 0.2),
        0 4px 12px rgba(139, 90, 43, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.6);
    border-color: rgba(139, 90, 43, 0.15);
}

.p-product-card__image {
    position: relative;
    width: 100%;
    padding-top: 75%;
    overflow: hidden;
    background: #F5F5F5;
}

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

.p-product-card:hover .p-product-card__image img {
    transform: scale(1.08);
}

.p-product-card__content {
    padding: 20px;
}

.p-product-card__title {
    font-size: 1.1rem;
    color: #2E7D32;
    margin-bottom: 10px;
    font-weight: 600;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.p-product-card__desc {
    font-size: 0.9rem;
    color: #66BB6A;
    margin-bottom: 15px;
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.p-product-card__cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #66BB6A;
    font-weight: 500;
    transition: all 0.3s ease;
}

.p-product-card__cta:hover {
    color: #388E3C;
    gap: 12px;
}

/* ========== 08. 分類篩選 ========== */
.p-filter-section {
    margin-bottom: 40px;
}

/* 分類篩選按鈕 */
.p-category-filter {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    margin-bottom: 10px;
}

.p-category-btn {
    padding: 10px 20px;
    font-size: 0.95rem;
    font-weight: 500;
    color: #388E3C;
    background: #fff;
    border: 2px solid #E8F5E9;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
    font-family: inherit;
}

.p-category-btn:hover {
    background: #E8F5E9;
    border-color: #81C784;
    transform: translateY(-2px);
}

.p-category-btn.active {
    background: linear-gradient(135deg, #66BB6A 0%, #43A047 100%);
    color: #fff;
    border-color: #43A047;
    box-shadow: 0 4px 12px rgba(67, 160, 71, 0.3);
}

.p-category-btn.active:hover {
    background: linear-gradient(135deg, #43A047 0%, #2E7D32 100%);
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .p-category-filter {
        gap: 8px;
    }
    
    .p-category-btn {
        padding: 8px 16px;
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    .p-category-filter {
        justify-content: flex-start;
    }
    
    .p-category-btn {
        padding: 7px 14px;
        font-size: 0.8rem;
    }
}

/* ========== 09. 商品詳情頁 ========== */
.p-product-detail {
    padding: 60px 0;
}

.p-product-detail__container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
}

@media (max-width: 1024px) {
    .p-product-detail__container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

/* 商品圖片區 */
.p-product-images {
    position: sticky;
    top: 100px;
}

.p-product-images__main {
    width: 100%;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 6px 20px rgba(46, 125, 50, 0.1);
    margin-bottom: 20px;
    background: #F5F5F5;
}

.p-product-images__main img {
    width: 100%;
    height: auto;
    display: block;
}

.p-product-images__thumbnails {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.p-product-images__thumb {
    width: 80px;
    height: 80px;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    opacity: 0.6;
}

.p-product-images__thumb:hover,
.p-product-images__thumb.active {
    border-color: #66BB6A;
    opacity: 1;
}

.p-product-images__thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* 商品資訊區 */
.p-product-info__title {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    color: #388E3C;
    margin-bottom: 20px;
    font-weight: 700;
    line-height: 1.3;
}

.p-product-info__price {
    font-size: 1.3rem;
    color: #66BB6A;
    margin-bottom: 30px;
    font-weight: 600;
}

.p-product-info__desc {
    font-size: 1rem;
    color: #2E7D32;
    line-height: 1.8;
    margin-bottom: 30px;
}

.p-product-info__buy-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 40px;
    background: #66BB6A;
    color: white;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    box-shadow: 0 6px 20px rgba(102, 187, 106, 0.4);
    transition: all 0.3s ease;
}

.p-product-info__buy-btn:hover {
    background: #388E3C;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(102, 187, 106, 0.5);
}

/* 相關商品 */
.p-related-products {
    margin-top: 80px;
    padding-top: 60px;
    border-top: 2px solid #E8F5E9;
}

.p-related-products__title {
    text-align: center;
    font-size: 2rem;
    color: #388E3C;
    margin-bottom: 40px;
    font-weight: 700;
}

/* ========== 10. 關於我們頁面 ========== */
.p-about {
    padding: 60px 0;
}

.p-about__content {
    max-width: 800px;
    margin: 0 auto;
}

.p-about__title {
    font-size: clamp(2rem, 4vw, 2.8rem);
    color: #388E3C;
    text-align: center;
    margin-bottom: 40px;
    font-weight: 700;
}

.p-about__section {
    margin-bottom: 50px;
}

.p-about__section-title {
    font-size: 1.5rem;
    color: #66BB6A;
    margin-bottom: 20px;
    font-weight: 600;
    padding-left: 15px;
    border-left: 4px solid #66BB6A;
}

.p-about__text {
    font-size: 1.05rem;
    color: #2E7D32;
    line-height: 1.9;
    margin-bottom: 20px;
    text-align: justify;
}

.p-about__highlight {
    background: #E8F5E9;
    padding: 30px;
    border-radius: 15px;
    border-left: 5px solid #66BB6A;
}

.p-about__highlight p {
    font-size: 1.1rem;
    color: #388E3C;
    line-height: 1.8;
    margin-bottom: 15px;
}

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

/* ========== 11. 聯絡我們頁面 ========== */
.p-contact {
    padding: 60px 0;
}

.p-contact__content {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.p-contact__title {
    font-size: clamp(2rem, 4vw, 2.8rem);
    color: #388E3C;
    margin-bottom: 30px;
    font-weight: 700;
}

.p-contact__text {
    font-size: 1.1rem;
    color: #66BB6A;
    margin-bottom: 40px;
    line-height: 1.8;
}

.p-contact__line {
    background: #E8F5E9;
    padding: 40px;
    border-radius: 20px;
    margin-bottom: 30px;
}

.p-contact__line-id {
    font-size: 2rem;
    color: #388E3C;
    font-weight: 700;
    margin-bottom: 20px;
}

.p-contact__line-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 50px;
    background: #06c755;
    color: white;
    font-size: 1.2rem;
    font-weight: 600;
    border-radius: 50px;
    box-shadow: 0 6px 20px rgba(6, 199, 85, 0.4);
    transition: all 0.3s ease;
}

.p-contact__line-btn:hover {
    background: #05b04c;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(6, 199, 85, 0.5);
}

/* ========== 12. Footer ========== */
.l-footer {
    background: linear-gradient(135deg, #5D4E37 0%, #4A3F2F 50%, #388E3C 100%);
    color: white;
    padding: 60px 0 0;
    margin-top: 80px;
    box-shadow: 
        inset 0 4px 8px rgba(0, 0, 0, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    border-top: 2px solid rgba(139, 90, 43, 0.3);
}

/* Footer Grid 布局 */
.p-footer__grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

/* 品牌區塊 */
.p-footer__brand-section {
    padding-right: 20px;
}

.p-footer__brand {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
}

.p-footer__logo {
    width: 50px;
    height: 50px;
    object-fit: contain;
    border-radius: 8px;
    background: white;
    padding: 5px;
}

.p-footer__brand h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0;
}

.p-footer__slogan {
    font-size: 1rem;
    color: #D4AF37;
    margin: 10px 0;
    font-weight: 500;
}

.p-footer__desc {
    font-size: 0.9rem;
    line-height: 1.6;
    opacity: 0.85;
    margin-top: 15px;
}

/* Footer 標題 */
.p-footer__title {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid rgba(212, 175, 55, 0.5);
    display: inline-block;
}

/* Footer 連結列表 */
.p-footer__links ul,
.p-footer__categories ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.p-footer__links li,
.p-footer__categories li {
    margin-bottom: 12px;
}

.p-footer__links a,
.p-footer__categories a {
    color: rgba(255, 255, 255, 0.8);
    transition: all 0.3s ease;
    display: inline-block;
    position: relative;
    padding-left: 15px;
}

.p-footer__links a::before,
.p-footer__categories a::before {
    content: '→';
    position: absolute;
    left: 0;
    opacity: 0;
    transform: translateX(-5px);
    transition: all 0.3s ease;
}

.p-footer__links a:hover,
.p-footer__categories a:hover {
    color: #D4AF37;
    padding-left: 20px;
}

.p-footer__links a:hover::before,
.p-footer__categories a:hover::before {
    opacity: 1;
    transform: translateX(0);
}

/* 聯絡資訊 */
.p-footer__contact-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 15px;
    padding: 10px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    font-size: 0.9rem;
}

.p-footer__contact-item.p-footer__line-main {
    background: rgba(102, 187, 106, 0.15);
    border: 1px solid rgba(102, 187, 106, 0.3);
    padding: 15px;
}

.p-footer__icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    margin-top: 2px;
}

.p-footer__line-id {
    font-size: 1.1rem;
    font-weight: 600;
    letter-spacing: 1px;
    color: #D4AF37;
    margin-top: 5px;
}

.p-footer__cta {
    display: inline-block;
    margin-top: 15px;
    padding: 12px 25px;
    background: linear-gradient(135deg, #66BB6A, #81C784);
    color: white;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(102, 187, 106, 0.3);
}

.p-footer__cta:hover {
    background: linear-gradient(135deg, #81C784, #A5D6A7);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(102, 187, 106, 0.4);
}

/* Footer 底部 */
.p-footer__bottom {
    padding: 25px 0;
    text-align: center;
}

.p-footer__copyright {
    font-size: 0.85rem;
    opacity: 0.7;
    margin-bottom: 10px;
}

.p-footer__copyright p {
    margin: 5px 0;
}

.p-footer__motto {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    font-size: 0.95rem;
    font-style: italic;
    opacity: 0.8;
    margin-top: 10px;
}

.p-footer__motto span:first-child,
.p-footer__motto span:last-child {
    font-size: 1.2rem;
}

/* 響應式設計 */
@media (max-width: 1024px) {
    .p-footer__grid {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }
}

@media (max-width: 767px) {
    .l-footer {
        padding: 40px 0 0;
    }
    
    .p-footer__grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .p-footer__brand-section {
        padding-right: 0;
        text-align: center;
    }
    
    .p-footer__brand {
        justify-content: center;
    }
    
    .p-footer__title {
        display: block;
        text-align: center;
    }
    
    .p-footer__links,
    .p-footer__categories {
        text-align: center;
    }
    
    .p-footer__links ul,
    .p-footer__categories ul {
        display: inline-block;
    }
    
    .p-footer__contact {
        text-align: center;
    }
    
    .p-footer__contact-item {
        justify-content: center;
    }
    
    .p-footer__motto {
        flex-direction: column;
        gap: 8px;
    }
}

/* ========== 13. 回到頂部按鈕（淡入淡出） ========== */
.p-pagetop {
    position: fixed;
    right: 20px;
    bottom: 20px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, #66BB6A, #A5D6A7);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    z-index: 900;
    box-shadow: 0 4px 15px rgba(102, 187, 106, 0.4);
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px) scale(0.8);
    transition: opacity 0.4s ease, visibility 0.4s ease, transform 0.4s ease, box-shadow 0.3s ease;
}

.p-pagetop.is-active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

.p-pagetop:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 6px 20px rgba(102, 187, 106, 0.6);
}

.p-pagetop.is-active:hover {
    transform: translateY(-5px) scale(1.05);
}

/* ========== 14. LINE 浮動按鈕 ========== */
/* 已移除 - 使用 Footer 中的 LINE CTA 按鈕 */

/* ========== 15. 進場動畫 ========== */
.u-inview {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.u-inview.is-inview {
    opacity: 1;
    transform: translateY(0);
}

/* 延遲動畫 */
.u-inview-delay-1 { transition-delay: 0.2s; }
.u-inview-delay-2 { transition-delay: 0.4s; }
.u-inview-delay-3 { transition-delay: 0.6s; }

/* ========== 16. Section SVG 裝飾與互動效果 ========== */
.p-section--with-decorations {
    position: relative;
    overflow: hidden;
}

.p-section__decoration {
    position: absolute;
    pointer-events: none;
    opacity: 0;
    transition: opacity 1s ease, transform 0.3s ease;
    will-change: transform;
}

.p-section__decoration.is-visible {
    opacity: 1;
}

/* 裝飾位置配置 */
.p-section__decoration--1 {
    top: 10%;
    left: 5%;
    width: 120px;
    height: 120px;
    animation: float 6s ease-in-out infinite;
}

.p-section__decoration--2 {
    top: 20%;
    right: 8%;
    width: 100px;
    height: 100px;
    animation: float 7s ease-in-out infinite reverse;
}

.p-section__decoration--3 {
    bottom: 15%;
    left: 10%;
    width: 80px;
    height: 80px;
    animation: rotate360 20s linear infinite;
}

.p-section__decoration--4 {
    top: 50%;
    right: 5%;
    width: 150px;
    height: 150px;
    animation: float 8s ease-in-out infinite;
}

.p-section__decoration--5 {
    bottom: 10%;
    right: 15%;
    width: 200px;
    height: 60px;
    animation: wave 10s ease-in-out infinite;
}

.p-section__decoration--6 {
    top: 70%;
    left: 3%;
    width: 90px;
    height: 90px;
    animation: float 9s ease-in-out infinite reverse;
}

/* 動畫效果 */
@keyframes float {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-20px) rotate(5deg);
    }
}

@keyframes rotate360 {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

@keyframes wave {
    0%, 100% {
        transform: translateX(0);
    }
    50% {
        transform: translateX(10px);
    }
}

/* Hover 互動效果 - 整個 section */
.p-section--with-decorations:hover .p-section__decoration {
    animation-play-state: paused;
    transition: transform 0.3s ease;
}

.p-section--with-decorations:hover .p-section__decoration--1 {
    transform: scale(1.1) rotate(10deg);
}

.p-section--with-decorations:hover .p-section__decoration--2 {
    transform: scale(1.15) rotate(-10deg);
}

.p-section--with-decorations:hover .p-section__decoration--3 {
    transform: scale(1.08);
}

/* 響應式調整 */
@media (max-width: 1024px) {
    .p-section__decoration--1,
    .p-section__decoration--2,
    .p-section__decoration--3 {
        width: 80px;
        height: 80px;
    }
    
    .p-section__decoration--4 {
        width: 100px;
        height: 100px;
    }
    
    .p-section__decoration--5 {
        width: 150px;
        height: 50px;
    }
}

@media (max-width: 767px) {
    .p-section__decoration {
        opacity: 0.3 !important;
    }
    
    .p-section__decoration--1,
    .p-section__decoration--2,
    .p-section__decoration--3 {
        width: 60px;
        height: 60px;
    }
    
    .p-section__decoration--4,
    .p-section__decoration--5,
    .p-section__decoration--6 {
        display: none;
    }
}

/* ========== 17. 載入更多按鈕 ========== */
.p-load-more-btn {
    display: inline-block;
    padding: 16px 40px;
    background: linear-gradient(135deg, #66BB6A, #81C784);
    color: white;
    font-size: 1.1rem;
    font-weight: 600;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 
        0 6px 20px rgba(102, 187, 106, 0.3),
        inset 0 2px 0 rgba(255, 255, 255, 0.2);
}

.p-load-more-btn:hover {
    background: linear-gradient(135deg, #388E3C, #66BB6A);
    transform: translateY(-3px);
    box-shadow: 
        0 8px 25px rgba(102, 187, 106, 0.4),
        inset 0 2px 0 rgba(255, 255, 255, 0.3);
}

.p-load-more-btn:active {
    transform: translateY(-1px);
}

.p-load-more-btn__text {
    display: block;
    margin-bottom: 5px;
}

.p-load-more-btn__count {
    display: block;
    font-size: 0.9rem;
    opacity: 0.9;
}

/* 載入指示器 */
.p-loading {
    text-align: center;
    padding: 20px;
}

.p-loading__spinner {
    width: 50px;
    height: 50px;
    margin: 0 auto 15px;
    border: 4px solid rgba(102, 187, 106, 0.2);
    border-top-color: #66BB6A;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

.p-loading p {
    color: #66BB6A;
    font-size: 1rem;
}

/* 響應式 */
@media (max-width: 767px) {
    .p-load-more-btn {
        padding: 14px 30px;
        font-size: 1rem;
    }
    
    .p-load-more-btn__text {
        font-size: 1rem;
    }
    
    .p-load-more-btn__count {
        font-size: 0.85rem;
    }
}

/* ========== 18. 工具類別 ========== */
.text-center { text-align: center; }
.text-green { color: #66BB6A; }
.bg-light-green { background: #E8F5E9; }
.mt-1 { margin-top: 20px; }
.mt-2 { margin-top: 40px; }
.mt-3 { margin-top: 60px; }
.mb-1 { margin-bottom: 20px; }
.mb-2 { margin-bottom: 40px; }
.mb-3 { margin-bottom: 60px; }
.pt-1 { padding-top: 20px; }
.pt-2 { padding-top: 40px; }
.pb-1 { padding-bottom: 20px; }
.pb-2 { padding-bottom: 40px; }

/* ========== 17. Lightbox（圖片放大） ========== */
.lightbox {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    cursor: pointer;
    align-items: center;
    justify-content: center;
}

.lightbox.active {
    display: flex;
}

.lightbox img {
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
    animation: zoomIn 0.3s ease;
}

@keyframes zoomIn {
    from { transform: scale(0.8); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}

.lightbox__close {
    position: absolute;
    top: 20px;
    right: 30px;
    color: white;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    z-index: 10001;
    transition: opacity 0.3s ease;
}

.lightbox__close:hover {
    opacity: 0.7;
}

/* ========== 18. 無障礙設計 ========== */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
}

/* ========== 18-1. 工商招募頁面樣式 ========== */
.p-business-recruitment {
    padding: 60px 0;
    min-height: 70vh;
}

.p-business__content {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
}

.p-business__title {
    text-align: center;
    font-size: 2.5rem;
    color: #2E7D32;
    margin-bottom: 50px;
    font-weight: 600;
}

.p-business__coming-soon {
    margin-bottom: 40px;
}

/* 準備上架中卡片 */
.p-coming-soon-card {
    background: linear-gradient(135deg, #ffffff 0%, #f8fdf9 100%);
    border-radius: 20px;
    padding: 60px 40px;
    text-align: center;
    box-shadow: 
        0 10px 40px rgba(102, 187, 106, 0.15),
        0 2px 8px rgba(0, 0, 0, 0.05);
    border: 2px solid #E8F5E9;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.p-coming-soon-card:hover {
    transform: translateY(-5px);
    box-shadow: 
        0 15px 50px rgba(102, 187, 106, 0.2),
        0 5px 15px rgba(0, 0, 0, 0.08);
}

.p-coming-soon-card__icon {
    font-size: 4rem;
    margin-bottom: 25px;
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}

.p-coming-soon-card__title {
    font-size: 2rem;
    color: #388E3C;
    margin-bottom: 20px;
    font-weight: 600;
}

.p-coming-soon-card__text {
    font-size: 1.1rem;
    color: #66BB6A;
    line-height: 1.8;
    margin-bottom: 35px;
}

.p-coming-soon-card__divider {
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, #A5D6A7 0%, #66BB6A 50%, #A5D6A7 100%);
    margin: 35px auto;
    border-radius: 2px;
}

.p-coming-soon-card__info {
    background: #F1F8E9;
    border-radius: 15px;
    padding: 30px;
    margin-top: 30px;
    border-left: 4px solid #66BB6A;
}

.p-coming-soon-card__info ul li {
    padding: 15px;
    background: white;
    border-radius: 10px;
    margin-bottom: 15px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    border: 1px solid #E8F5E9;
}

.p-coming-soon-card__info ul li:hover {
    transform: translateX(5px);
    box-shadow: 0 4px 12px rgba(102, 187, 106, 0.15);
}

.p-coming-soon-card__info ul li:last-child {
    margin-bottom: 0;
}

.p-business__contact {
    margin-top: 40px;
}

/* ========== 店家選擇頁面樣式 ========== */
.p-business__subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: #66BB6A;
    margin-bottom: 50px;
    line-height: 1.6;
}

.p-business__stores {
    display: flex;
    flex-direction: column;
    gap: 40px;
    max-width: 800px;
    margin: 0 auto;
}

/* 店家卡片 */
.p-store-card {
    background: white;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 8px 30px rgba(102, 187, 106, 0.15);
    border: 2px solid #E8F5E9;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: grid;
    grid-template-columns: 200px 1fr;
    gap: 30px;
    align-items: start;
}

.p-store-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(102, 187, 106, 0.2);
}

.p-store-card__image {
    overflow: hidden;
    border-radius: 15px;
    aspect-ratio: 1;
}

.p-store-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.p-store-card__image:hover img {
    transform: scale(1.1);
}

.p-store-card__content {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.p-store-card__header {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
}

.p-store-card__name {
    font-size: 1.8rem;
    color: #2E7D32;
    font-weight: 700;
    margin: 0;
}

.p-store-card__badge {
    background: linear-gradient(135deg, #66BB6A 0%, #4CAF50 100%);
    color: white;
    padding: 6px 15px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    box-shadow: 0 3px 10px rgba(102, 187, 106, 0.3);
}

.p-store-card__description {
    color: #66BB6A;
    line-height: 1.7;
    margin: 0;
}

.p-store-card__info {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.p-store-info-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
    border-bottom: 1px solid #F1F8E9;
}

.p-store-info-label {
    font-weight: 600;
    color: #81C784;
    font-size: 0.9rem;
}

.p-store-info-value {
    color: #2E7D32;
    font-weight: 500;
    font-size: 0.9rem;
}

.p-store-info-value.highlight {
    color: #E74C3C;
    font-weight: 700;
}

.p-store-card__actions {
    display: flex;
    gap: 15px;
    margin-top: 10px;
}

.p-store-card__btn {
    padding: 12px 25px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.95rem;
}

.p-store-card__btn.primary {
    background: linear-gradient(135deg, #66BB6A 0%, #4CAF50 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(102, 187, 106, 0.3);
}

.p-store-card__btn.primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(102, 187, 106, 0.4);
    background: linear-gradient(135deg, #4CAF50 0%, #388E3C 100%);
}

.p-store-card__btn.secondary {
    background: white;
    color: #66BB6A;
    border: 2px solid #E8F5E9;
}

.p-store-card__btn.secondary:hover {
    background: #F1F8E9;
    border-color: #C8E6C9;
    transform: translateY(-2px);
}

/* 返回按鈕 */
.p-breadcrumb {
    margin-bottom: 30px;
}

.p-breadcrumb__link {
    color: #66BB6A;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.p-breadcrumb__link:hover {
    color: #4CAF50;
}

.p-seller-description {
    text-align: center;
    color: #81C784;
    font-size: 1.1rem;
    margin-top: 15px;
    line-height: 1.6;
}

/* ========== 商家展示區樣式 ========== */
.p-business__showcase {
    margin-top: 40px;
}

/* 賣家標題區 */
.p-seller-header {
    text-align: center;
    margin-bottom: 50px;
    position: relative;
}

.p-seller-name {
    font-size: 2.2rem;
    color: #2E7D32;
    margin-bottom: 15px;
    font-weight: 700;
}

.p-seller-badge {
    display: inline-block;
    background: linear-gradient(135deg, #66BB6A 0%, #4CAF50 100%);
    color: white;
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(102, 187, 106, 0.3);
}

/* 店家精選商品 */
.p-featured-product {
    position: relative;
    background: linear-gradient(135deg, #F8FDF9 0%, #E8F5E9 100%);
    border-radius: 20px;
    padding: 25px;
    margin-bottom: 50px;
    border: 2px solid #C8E6C9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.p-featured-product__badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #FFD700 0%, #FFA000 100%);
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 700;
    box-shadow: 0 4px 15px rgba(255, 193, 7, 0.4);
    display: flex;
    align-items: center;
    gap: 6px;
    z-index: 2;
}

.p-badge-icon {
    font-size: 1rem;
}

.p-featured-product__content {
    display: grid;
    grid-template-columns: 180px 1fr;
    gap: 25px;
    align-items: center;
}

.p-featured-product__image {
    overflow: hidden;
    border-radius: 15px;
    aspect-ratio: 1;
    box-shadow: 0 6px 20px rgba(102, 187, 106, 0.2);
}

.p-featured-product__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
    cursor: pointer;
}

.p-featured-product__image:hover img {
    transform: scale(1.08);
}

.p-featured-product__info {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.p-featured-product__title {
    font-size: 1.4rem;
    color: #2E7D32;
    font-weight: 700;
    margin: 0;
}

.p-featured-product__desc {
    color: #66BB6A;
    font-size: 0.95rem;
    line-height: 1.5;
    margin: 0;
}

.p-featured-product__highlight {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.p-highlight-item {
    display: flex;
    align-items: center;
    gap: 6px;
    background: white;
    padding: 6px 12px;
    border-radius: 15px;
    font-size: 0.85rem;
    color: #388E3C;
    font-weight: 600;
    box-shadow: 0 2px 8px rgba(102, 187, 106, 0.15);
}

.p-highlight-icon {
    font-size: 0.9rem;
}

/* 主商品展示（舊版，保留備用） */
.p-main-product {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 8px 30px rgba(102, 187, 106, 0.1);
    border: 2px solid #E8F5E9;
    margin-bottom: 60px;
}

.p-main-product__image {
    overflow: hidden;
    border-radius: 15px;
    aspect-ratio: 1;
}

.p-main-product__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
    cursor: pointer;
}

.p-main-product__image:hover img {
    transform: scale(1.05);
}

.p-main-product__info h3 {
    font-size: 1.8rem;
    color: #2E7D32;
    margin-bottom: 15px;
    font-weight: 600;
}

.p-main-product__info p {
    font-size: 1.1rem;
    color: #66BB6A;
    line-height: 1.6;
}

/* 商品網格 */
.p-product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

/* 商品卡片 */
.p-product-card {
    background: white;
    border-radius: 20px;
    padding: 25px;
    box-shadow: 0 8px 30px rgba(102, 187, 106, 0.1);
    border: 2px solid #E8F5E9;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
}

.p-product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 50px rgba(102, 187, 106, 0.2);
}

/* 商品編號標籤 */
.p-product-card__number {
    position: absolute;
    top: 15px;
    right: 15px;
    background: linear-gradient(135deg, #66BB6A 0%, #4CAF50 100%);
    color: white;
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 700;
    box-shadow: 0 4px 15px rgba(102, 187, 106, 0.3);
    z-index: 2;
}

/* 商品圖片輪播 */
.p-product-card__gallery {
    margin-bottom: 20px;
}

.p-gallery__main {
    border-radius: 15px;
    overflow: hidden;
    margin-bottom: 15px;
    aspect-ratio: 1;
    background: #f8f8f8;
}

.p-gallery__main-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
    cursor: pointer;
}

.p-gallery__main:hover .p-gallery__main-img {
    transform: scale(1.05);
}

.p-gallery__thumbs {
    display: flex;
    gap: 8px;
    justify-content: center;
    flex-wrap: wrap;
}

.p-gallery__thumb {
    width: 60px;
    height: 60px;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    border: 2px solid transparent;
    transition: border-color 0.3s ease, transform 0.3s ease;
}

.p-gallery__thumb.active {
    border-color: #66BB6A;
    transform: scale(1.1);
}

.p-gallery__thumb:hover {
    border-color: #81C784;
    transform: scale(1.05);
}

.p-gallery__thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* 商品資訊 */
.p-product-card__info {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.p-product-card__title {
    font-size: 1.3rem;
    color: #2E7D32;
    font-weight: 600;
    margin: 0;
    text-align: center;
}

.p-product-card__specs {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.p-spec-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.p-spec-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    background: #F8FDF9;
    border-radius: 12px;
    border-left: 4px solid #E8F5E9;
    transition: all 0.3s ease;
}

.p-spec-item:hover {
    background: #F1F8E9;
    border-left-color: #66BB6A;
    transform: translateX(3px);
}

.p-spec-item.price {
    background: linear-gradient(135deg, #FFF9C4 0%, #FFF59D 100%);
    border-left-color: #FFD54F;
}

.p-spec-item.price:hover {
    background: linear-gradient(135deg, #FFF59D 0%, #FFF176 100%);
    border-left-color: #FFC107;
}

.p-spec-icon {
    font-size: 1.2rem;
    flex-shrink: 0;
}

.p-spec-content {
    display: flex;
    flex-direction: column;
    gap: 2px;
    min-width: 0;
}

.p-spec-label {
    font-size: 0.8rem;
    color: #81C784;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.p-spec-value {
    font-size: 0.95rem;
    color: #2E7D32;
    font-weight: 600;
}

.p-spec-item.price .p-spec-value {
    color: #E74C3C;
    font-weight: 700;
    font-size: 1.1rem;
}

/* 商品詢問按鈕 */
.p-product-card__btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: linear-gradient(135deg, #00B900 0%, #00A000 100%);
    color: white;
    padding: 12px 20px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 185, 0, 0.3);
    margin-top: 5px;
}

.p-product-card__btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 185, 0, 0.4);
    background: linear-gradient(135deg, #00A000 0%, #008000 100%);
}

/* 商品列表（舊版，保留備用） */
.p-product-showcase {
    display: flex;
    flex-direction: column;
    gap: 40px;
    margin-bottom: 60px;
}

.p-showcase-item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    align-items: center;
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.p-showcase-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(102, 187, 106, 0.15);
}

/* 奇數項左右交替 */
.p-showcase-item:nth-child(odd) {
    grid-template-columns: 1fr 1fr;
}

.p-showcase-item:nth-child(even) {
    grid-template-columns: 1fr 1fr;
    direction: rtl;
}

.p-showcase-item:nth-child(even) > * {
    direction: ltr;
}

/* 商品圖片區 */
.p-showcase-item__images {
    display: grid;
    grid-template-columns: 1fr;
    gap: 15px;
}

.p-showcase-item__image {
    overflow: hidden;
    border-radius: 12px;
    background: #f5f5f5;
}

.p-showcase-item__image.main {
    grid-column: 1;
}

.p-showcase-item__image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
    cursor: pointer;
}

.p-showcase-item__image:hover img {
    transform: scale(1.08);
}

/* 商品資訊區 */
.p-showcase-item__info {
    padding: 20px 0;
}

.p-showcase-item__title {
    font-size: 1.4rem;
    color: #2E7D32;
    margin-bottom: 20px;
    font-weight: 600;
}

.p-showcase-item__details {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.p-detail-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid #E8F5E9;
}

.p-detail-item:last-child {
    border-bottom: none;
}

.p-detail-item.price {
    background: #F1F8E9;
    padding: 15px;
    border-radius: 10px;
    border-bottom: none;
}

.p-detail-label {
    font-weight: 600;
    color: #66BB6A;
    font-size: 0.95rem;
}

.p-detail-value {
    color: #2E7D32;
    font-weight: 500;
}

.p-detail-item.price .p-detail-value {
    font-size: 1.3rem;
    color: #E74C3C;
    font-weight: 700;
}

/* 套組優惠區塊 */
.p-bundle-offer {
    position: relative;
    background: linear-gradient(135deg, #F8FDF9 0%, #E8F5E9 100%);
    border-radius: 25px;
    padding: 35px;
    margin: 50px auto;
    max-width: 700px;
    border: 2px solid #C8E6C9;
    box-shadow: 0 15px 40px rgba(102, 187, 106, 0.15);
    overflow: hidden;
}

.p-bundle-offer::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.6), transparent);
    animation: shine 4s infinite;
}

@keyframes shine {
    0% { left: -100%; }
    100% { left: 100%; }
}

.p-bundle-offer__badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #E74C3C 0%, #C0392B 100%);
    color: white;
    padding: 8px 18px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(231, 76, 60, 0.3);
    display: flex;
    align-items: center;
    gap: 6px;
    z-index: 3;
    border: 2px solid white;
}

.p-bundle-offer__badge::after {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, #E74C3C, #F39C12, #E74C3C);
    border-radius: 22px;
    z-index: -1;
    animation: glow 2s ease-in-out infinite alternate;
}

@keyframes glow {
    0% { opacity: 0.7; }
    100% { opacity: 1; }
}

.p-offer-badge-icon {
    font-size: 1.1rem;
}

.p-bundle-offer__content {
    position: relative;
    z-index: 2;
}

.p-bundle-offer__header {
    text-align: center;
    margin-bottom: 30px;
}

.p-bundle-offer__title {
    font-size: 1.8rem;
    color: #2E7D32;
    font-weight: 700;
    margin: 0 0 10px 0;
}

.p-bundle-offer__subtitle {
    color: #66BB6A;
    font-size: 1rem;
    margin: 0;
    font-weight: 500;
}

.p-bundle-offer__pricing {
    margin-bottom: 25px;
}

.p-pricing-comparison {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 20px;
    align-items: center;
    background: white;
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.p-original-price, .p-special-price {
    text-align: center;
}

.p-price-label {
    display: block;
    font-size: 0.85rem;
    color: #666;
    font-weight: 600;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.p-price-breakdown {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.p-breakdown-item {
    font-size: 0.9rem;
    color: #888;
}

.p-original-amount {
    font-size: 1.3rem;
    color: #999;
    text-decoration: line-through;
    font-weight: 600;
}

.p-price-arrow {
    font-size: 1.5rem;
    color: #66BB6A;
    font-weight: 700;
}

.p-special-amount {
    font-size: 2.2rem;
    color: #E74C3C;
    font-weight: 900;
    text-shadow: 2px 2px 4px rgba(231, 76, 60, 0.2);
}

.p-savings {
    font-size: 0.9rem;
    color: #4CAF50;
    font-weight: 700;
    background: #E8F5E9;
    padding: 4px 12px;
    border-radius: 15px;
    margin-top: 5px;
    display: inline-block;
}

.p-bundle-offer__highlights {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.p-highlight-tag {
    display: flex;
    align-items: center;
    gap: 6px;
    background: linear-gradient(135deg, #4CAF50 0%, #388E3C 100%);
    color: white;
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    box-shadow: 0 3px 10px rgba(76, 175, 80, 0.3);
}

.p-tag-icon {
    font-size: 1rem;
}

.p-bundle-offer__actions {
    text-align: center;
}

.p-bundle-offer__btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #00B900 0%, #00A000 100%);
    color: white;
    padding: 15px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(0, 185, 0, 0.4);
    margin-bottom: 15px;
}

.p-bundle-offer__btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(0, 185, 0, 0.5);
    background: linear-gradient(135deg, #00A000 0%, #008000 100%);
}

.p-bundle-offer__note {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: #66BB6A;
    font-size: 0.9rem;
    font-weight: 500;
}

.p-note-icon {
    font-size: 1rem;
}

/* 響應式設計 - 平板 */
@media (max-width: 991px) {
    .p-business__title {
        font-size: 2rem;
    }
    
    .p-featured-product__content {
        grid-template-columns: 150px 1fr;
        gap: 20px;
    }
    
    .p-featured-product {
        padding: 20px;
        margin-bottom: 40px;
    }
    
    .p-main-product {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .p-showcase-item {
        grid-template-columns: 1fr;
    }
    
    .p-showcase-item:nth-child(even) {
        direction: ltr;
    }
    
    .p-product-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 25px;
    }
    
    .p-product-card {
        padding: 20px;
    }
    
    .p-spec-row {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    
    .p-store-card {
        grid-template-columns: 1fr;
        gap: 20px;
        text-align: center;
    }
    
    .p-store-card__image {
        max-width: 250px;
        margin: 0 auto;
    }
    
    .p-store-card__info {
        grid-template-columns: 1fr;
    }
    
    .p-store-card__actions {
        justify-content: center;
    }
    
    .p-coming-soon-card {
        padding: 50px 30px;
    }
    
    .p-coming-soon-card__title {
        font-size: 1.8rem;
    }
    
    .p-coming-soon-card__icon {
        font-size: 3.5rem;
    }
}

/* 響應式設計 - 手機 */
@media (max-width: 767px) {
    .p-business-recruitment {
        padding: 40px 0;
    }
    
    .p-business__content {
        padding: 0 15px;
    }
    
    .p-business__title {
        font-size: 1.8rem;
        margin-bottom: 35px;
    }
    
    .p-seller-name {
        font-size: 1.8rem;
    }
    
    .p-featured-product {
        padding: 18px;
        margin-bottom: 30px;
        max-width: none;
    }
    
    .p-featured-product__content {
        grid-template-columns: 1fr;
        gap: 15px;
        text-align: center;
    }
    
    .p-featured-product__image {
        max-width: 200px;
        margin: 0 auto;
    }
    
    .p-featured-product__highlight {
        justify-content: center;
        gap: 10px;
    }
    
    .p-main-product {
        grid-template-columns: 1fr;
        padding: 25px;
        gap: 20px;
    }
    
    .p-showcase-item {
        grid-template-columns: 1fr;
        padding: 20px;
        gap: 20px;
    }
    
    .p-showcase-item__title {
        font-size: 1.2rem;
    }
    
    .p-detail-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 5px;
    }
    
    .p-bundle-offer {
        padding: 25px 20px;
        margin: 40px auto;
    }
    
    .p-pricing-comparison {
        grid-template-columns: 1fr;
        gap: 15px;
        padding: 20px;
    }
    
    .p-price-arrow {
        transform: rotate(90deg);
        font-size: 1.2rem;
    }
    
    .p-bundle-offer__highlights {
        gap: 10px;
    }
    
    .p-special-offer {
        padding: 30px 20px;
    }
    
    .p-special-offer__title {
        font-size: 1.5rem;
    }
    
    .p-offer-price {
        font-size: 2rem;
    }
    
    .p-store-card {
        padding: 20px;
        gap: 15px;
    }
    
    .p-store-card__name {
        font-size: 1.5rem;
    }
    
    .p-store-card__actions {
        flex-direction: column;
        gap: 10px;
    }
    
    .p-store-card__btn {
        justify-content: center;
        width: 100%;
    }
    
    .p-product-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .p-product-card {
        padding: 18px;
    }
    
    .p-product-card__number {
        top: 12px;
        right: 12px;
        padding: 6px 12px;
        font-size: 0.8rem;
    }
    
    .p-gallery__thumbs {
        gap: 6px;
    }
    
    .p-gallery__thumb {
        width: 50px;
        height: 50px;
    }
    
    .p-spec-row {
        grid-template-columns: 1fr;
        gap: 10px;
    }
    
    .p-spec-item {
        padding: 10px;
        gap: 10px;
    }
    
    .p-spec-icon {
        font-size: 1rem;
    }
    
    .p-spec-label {
        font-size: 0.75rem;
    }
    
    .p-spec-value {
        font-size: 0.9rem;
    }
    
    .p-product-card__btn {
        padding: 10px 18px;
        font-size: 0.85rem;
    }
    
    .p-bundle-offer {
        padding: 20px 15px;
        margin: 30px auto;
    }
    
    .p-bundle-offer__title {
        font-size: 1.4rem;
    }
    
    .p-pricing-comparison {
        padding: 15px;
    }
    
    .p-special-amount {
        font-size: 1.8rem;
    }
    
    .p-bundle-offer__btn {
        padding: 12px 25px;
        font-size: 1rem;
    }
    
    .p-coming-soon-card {
        padding: 40px 25px;
        border-radius: 15px;
    }
    
    .p-coming-soon-card__icon {
        font-size: 3rem;
        margin-bottom: 20px;
    }
    
    .p-coming-soon-card__title {
        font-size: 1.6rem;
        margin-bottom: 15px;
    }
    
    .p-coming-soon-card__text {
        font-size: 1rem;
        margin-bottom: 25px;
    }
    
    .p-coming-soon-card__divider {
        width: 60px;
        margin: 25px auto;
    }
    
    .p-coming-soon-card__info {
        padding: 20px;
    }
    
    .p-coming-soon-card__info ul li {
        padding: 12px;
        margin-bottom: 12px;
    }
    
    .p-business__contact > div {
        padding: 25px 20px !important;
    }
}

/* 響應式設計 - 小手機 */
@media (max-width: 480px) {
    .p-business__title {
        font-size: 1.6rem;
    }
    
    .p-coming-soon-card {
        padding: 30px 20px;
    }
    
    .p-coming-soon-card__icon {
        font-size: 2.5rem;
    }
    
    .p-coming-soon-card__title {
        font-size: 1.4rem;
    }
    
    .p-coming-soon-card__text {
        font-size: 0.95rem;
    }
    
    .p-coming-soon-card__info h3 {
        font-size: 1rem !important;
    }
    
    .p-coming-soon-card__info ul li {
        font-size: 0.9rem;
    }
}

/* ========== 18-2. 關於我們頁面樣式 ========== */
.p-about__feature-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    margin-bottom: 40px;
    padding: 30px;
    background: linear-gradient(135deg, #ffffff 0%, #f8fdf9 100%);
    border-radius: 20px;
    border: 2px solid #E8F5E9;
    box-shadow: 0 5px 20px rgba(102, 187, 106, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.p-about__feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(102, 187, 106, 0.15);
}

.p-about__feature-image {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.p-about__feature-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.p-about__feature-card:hover .p-about__feature-image img {
    transform: scale(1.05);
}

.p-about__feature-content {
    padding: 10px 20px;
}

.p-about__feature-content h3 {
    margin-bottom: 15px;
    font-size: 1.3rem;
    color: #388E3C;
}

.p-about__feature-content p {
    line-height: 1.8;
    color: #555;
}

/* 響應式設計 - 平板 */
@media (max-width: 991px) {
    .p-about__feature-card {
        gap: 30px;
        padding: 25px;
    }
    
    .p-about__feature-content h3 {
        font-size: 1.2rem;
    }
}

/* 響應式設計 - 手機 */
@media (max-width: 767px) {
    .p-about__feature-card {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 20px;
        margin-bottom: 30px;
    }
    
    .p-about__feature-content {
        padding: 0;
    }
    
    .p-about__feature-content h3 {
        font-size: 1.1rem;
        margin-bottom: 12px;
    }
    
    .p-about__feature-content p {
        font-size: 0.95rem;
    }
}

/* 響應式設計 - 小手機 */
@media (max-width: 480px) {
    .p-about__feature-card {
        padding: 15px;
        margin-bottom: 25px;
    }
    
    .p-about__feature-content h3 {
        font-size: 1rem;
    }
    
    .p-about__feature-content p {
        font-size: 0.9rem;
        line-height: 1.6;
    }
}

/* ========== 19. 商品展示區樣式 ========== */
/* 賣家標題區 */
.p-seller-header {
    text-align: center;
    margin-bottom: 40px;
    padding: 30px;
    background: linear-gradient(135deg, #ffffff 0%, #f8fdf9 100%);
    border-radius: 20px;
    border: 2px solid #E8F5E9;
    box-shadow: 0 5px 20px rgba(102, 187, 106, 0.1);
}

.p-seller-name {
    font-size: 2.2rem;
    color: #388E3C;
    margin-bottom: 15px;
    font-weight: 700;
    text-shadow: 0 2px 4px rgba(56, 142, 60, 0.1);
}

.p-seller-badge {
    display: inline-block;
    padding: 8px 20px;
    background: linear-gradient(135deg, #66BB6A, #81C784);
    color: white;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    box-shadow: 0 4px 12px rgba(102, 187, 106, 0.3);
}

/* 主商品區 */
.p-main-product {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    margin-bottom: 50px;
    padding: 40px;
    background: linear-gradient(135deg, #F1F8E9 0%, #E8F5E9 100%);
    border-radius: 20px;
    border: 2px solid rgba(102, 187, 106, 0.2);
    box-shadow: 0 8px 25px rgba(102, 187, 106, 0.15);
}

.p-main-product__image {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease;
}

.p-main-product__image:hover {
    transform: scale(1.02);
}

.p-main-product__image img {
    width: 100%;
    height: auto;
    display: block;
    cursor: pointer;
}

.p-main-product__info h3 {
    font-size: 1.8rem;
    color: #388E3C;
    margin-bottom: 15px;
    font-weight: 700;
}

.p-main-product__info p {
    font-size: 1.1rem;
    color: #66BB6A;
    line-height: 1.6;
}

/* 商品展示列表 */
.p-product-showcase {
    margin-bottom: 50px;
}

.p-showcase-item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: flex-start;
    margin-bottom: 40px;
    padding: 30px;
    background: linear-gradient(135deg, #ffffff 0%, #fafffe 100%);
    border-radius: 20px;
    border: 1px solid rgba(139, 90, 43, 0.1);
    box-shadow: 0 5px 20px rgba(139, 90, 43, 0.08);
    transition: all 0.3s ease;
}

.p-showcase-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(102, 187, 106, 0.15);
    border-color: rgba(102, 187, 106, 0.3);
}

.p-showcase-item:nth-child(even) {
    grid-template-columns: 1fr 1fr;
}

.p-showcase-item:nth-child(even) .p-showcase-item__images {
    order: 2;
}

.p-showcase-item:nth-child(even) .p-showcase-item__info {
    order: 1;
}

/* 商品圖片區 */
.p-showcase-item__images {
    display: grid;
    gap: 15px;
}

.p-showcase-item__image {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.p-showcase-item__image.main {
    grid-column: 1 / -1;
}

.p-showcase-item__image:hover {
    transform: scale(1.03);
}

.p-showcase-item__image img {
    width: 100%;
    height: auto;
    display: block;
    cursor: pointer;
}

/* 商品資訊區 */
.p-showcase-item__info {
    padding: 10px 0;
}

.p-showcase-item__title {
    font-size: 1.4rem;
    color: #388E3C;
    margin-bottom: 20px;
    font-weight: 700;
    line-height: 1.3;
}

.p-showcase-item__details {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.p-detail-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid rgba(139, 90, 43, 0.1);
}

.p-detail-item:last-child {
    border-bottom: none;
}

.p-detail-item.price {
    background: rgba(102, 187, 106, 0.05);
    padding: 15px;
    border-radius: 10px;
    border: 1px solid rgba(102, 187, 106, 0.2);
    margin-top: 10px;
}

.p-detail-label {
    font-weight: 600;
    color: #2E7D32;
    font-size: 0.95rem;
}

.p-detail-value {
    font-weight: 500;
    color: #66BB6A;
    font-size: 1rem;
}

.p-detail-item.price .p-detail-value {
    font-size: 1.2rem;
    font-weight: 700;
    color: #388E3C;
}

/* 特別優惠區 */
.p-special-offer {
    margin-top: 60px;
    text-align: center;
}

.p-special-offer__content {
    background: linear-gradient(135deg, #66BB6A 0%, #81C784 100%);
    color: white;
    padding: 50px 40px;
    border-radius: 25px;
    box-shadow: 
        0 15px 40px rgba(102, 187, 106, 0.4),
        inset 0 2px 0 rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
}

.p-special-offer__content::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    animation: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {
    0%, 100% { transform: rotate(0deg); }
    50% { transform: rotate(180deg); }
}

.p-special-offer__title {
    font-size: 2rem;
    margin-bottom: 25px;
    font-weight: 700;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.p-special-offer__price {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    margin-bottom: 25px;
}

.p-offer-text {
    font-size: 1.2rem;
    font-weight: 500;
    opacity: 0.9;
}

.p-offer-price {
    font-size: 3rem;
    font-weight: 900;
    text-shadow: 0 3px 6px rgba(0, 0, 0, 0.3);
    background: linear-gradient(45deg, #FFD700, #FFF8DC);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.p-special-offer__desc {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 35px;
    opacity: 0.95;
}

.p-special-offer__btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 40px;
    background: linear-gradient(135deg, #388E3C 0%, #2E7D32 100%);
    color: white;
    font-size: 1.2rem;
    font-weight: 700;
    border-radius: 50px;
    box-shadow: 
        0 8px 25px rgba(0, 0, 0, 0.3),
        inset 0 2px 0 rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    text-decoration: none;
    position: relative;
    z-index: 1;
}

.p-special-offer__btn:hover {
    background: linear-gradient(135deg, #2E7D32 0%, #1B5E20 100%);
    transform: translateY(-3px);
    box-shadow: 
        0 12px 35px rgba(0, 0, 0, 0.4),
        inset 0 2px 0 rgba(255, 255, 255, 0.3);
    color: white;
}

/* 響應式設計 */
@media (max-width: 1024px) {
    .p-main-product,
    .p-showcase-item {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .p-showcase-item:nth-child(even) .p-showcase-item__images,
    .p-showcase-item:nth-child(even) .p-showcase-item__info {
        order: unset;
    }
    
    .p-seller-name {
        font-size: 1.8rem;
    }
    
    .p-special-offer__title {
        font-size: 1.6rem;
    }
    
    .p-offer-price {
        font-size: 2.5rem;
    }
}

@media (max-width: 767px) {
    .p-seller-header {
        padding: 20px;
        margin-bottom: 30px;
    }
    
    .p-seller-name {
        font-size: 1.6rem;
    }
    
    .p-main-product {
        padding: 25px;
        margin-bottom: 35px;
    }
    
    .p-main-product__info h3 {
        font-size: 1.4rem;
    }
    
    .p-showcase-item {
        padding: 20px;
        margin-bottom: 30px;
    }
    
    .p-showcase-item__title {
        font-size: 1.2rem;
    }
    
    .p-special-offer__content {
        padding: 35px 25px;
    }
    
    .p-special-offer__title {
        font-size: 1.4rem;
    }
    
    .p-offer-price {
        font-size: 2rem;
    }
    
    .p-special-offer__btn {
        padding: 15px 30px;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .p-seller-header {
        padding: 15px;
    }
    
    .p-seller-name {
        font-size: 1.4rem;
    }
    
    .p-main-product {
        padding: 20px;
    }
    
    .p-showcase-item {
        padding: 15px;
    }
    
    .p-showcase-item__title {
        font-size: 1.1rem;
    }
    
    .p-detail-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 5px;
    }
    
    .p-special-offer__content {
        padding: 25px 20px;
    }
    
    .p-offer-price {
        font-size: 1.8rem;
    }
}

/* ========== 20. Print Styles ========== */
@media print {
    .l-header,
    .p-pagetop,
    .p-menu-btn {
        display: none !important;
    }
    
    .l-main {
        margin-top: 0;
    }
}

