/* ==========================================================================
   1. FAQ 區塊整體佈局（黃色背景背景）
   ========================================================================== */
.faq-section {
    padding: 60px 20px;
    background-color: #FFEE00; /* 亮黃色背景 */
    box-sizing: border-box;
}

.faq-container {
    max-width: 850px;
    margin: 0 auto;
}

/* ==========================================================================
   2. 主標題樣式（美式潮流黑粗邊、立體硬陰影）
   ========================================================================== */
.title-wrapper {
    text-align: center;
    margin-bottom: 40px;
}

.section-title {
    display: inline-block;
    background-color: #ffffff;
    color: #222222;
    font-size: 28px;
    font-weight: 900;
    padding: 15px 45px;
    border-radius: 50px;
    border: 4px solid #111111; /* 黑粗邊 */
    box-shadow: 5px 5px 0px #111111; /* 平面立體陰影 */
    margin: 0;
}

/* ==========================================================================
   3. 店鋪摘要樣式 (2x2 網格佈局)
   ========================================================================== */
.store-summary {
    background-color: #FFFFFA;
    border: 4px solid #111111;
    box-shadow: 6px 6px 0px #111111;
    border-radius: 24px;
    padding: 35px 40px;
    margin-bottom: 35px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px 40px;
}

.summary-item {
    display: flex;
    flex-direction: column;
}

.summary-label {
    font-size: 14px;
    color: #FF2A7A; /* 亮桃紅標籤 */
    font-weight: bold;
    margin-bottom: 8px;
}

.summary-value {
    font-size: 16px;
    color: #111111;
    font-weight: 800;
    line-height: 1.4;
}

/* ==========================================================================
   4. FAQ 卡片主體與點擊區域
   ========================================================================== */
.faq-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.faq-item {
    background-color: #FFFFFA;
    border: 4px solid #111111;
    box-shadow: 6px 6px 0px #111111;
    border-radius: 24px;
    overflow: hidden;
}

.faq-question {
    padding: 22px 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    user-select: none;
}

.question-left {
    display: flex;
    align-items: center;
    gap: 15px;
    flex: 1;
}

/* Q & A 獨立圖示方塊 */
.icon-q, .icon-a {
    font-weight: 900;
    font-size: 16px;
    width: 28px;
    height: 28px;
    border: 2px solid #111111;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 1px 2px 0px #111111;
}

.icon-q {
    background-color: #FFF200; /* Q 為黃底 */
    color: #111111;
}

.icon-a {
    background-color: #FF2A7A; /* A 為桃紅底 */
    color: #ffffff;
}

.faq-question h3 {
    margin: 0;
    font-size: 16px;
    color: #111111;
    font-weight: 800;
}

/* ==========================================================================
   5. 右側粗線型開合符號 (+ / -)
   ========================================================================== */
.faq-toggle {
    position: relative;
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}

.faq-toggle::before,
.faq-toggle::after {
    content: "";
    position: absolute;
    background-color: #111111;
    border-radius: 2px;
    transition: transform 0.2s ease, opacity 0.2s ease;
}

/* 粗橫線 */
.faq-toggle::before {
    top: 6px;
    left: 0;
    width: 16px;
    height: 4px;
}

/* 粗直線 */
.faq-toggle::after {
    top: 0;
    left: 6px;
    width: 4px;
    height: 16px;
}

/* 打開狀態 (is-open) 下，直線隱藏，轉為減號 */
.faq-item.is-open .faq-toggle::after {
    transform: rotate(90deg);
    opacity: 0;
}

/* ==========================================================================
   6. 答案展開區（預設隱藏）與內部虛線
   ========================================================================== */
.faq-answer {
    display: none; 
    border-top: 2px dotted #DDDDDD; /* 與圖片相符的灰色虛線 */
}

.faq-answer-inner {
    padding: 25px;
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.answer-content {
    font-size: 15px;
    color: #222222;
    font-weight: 700;
    line-height: 1.6;
    margin: 0;
}

/* RWD 行動裝置自適應調整 */
@media (max-width: 550px) {
    .store-summary {
        grid-template-columns: 1fr;
        padding: 25px;
        gap: 20px;
    }
    .section-title {
        font-size: 22px;
        padding: 10px 25px;
    }
}