/* 優惠活動列表組件樣式 - 完全按照 Figma 設計規格 */

/* 外層容器 */
.promotion-list {
    background-color: #ffffff;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 15px 0;
    width: 100%;
}

/* 內容區域 */
.promotion-list__container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 15px;
    width: 100%;
    box-sizing: border-box;
}

/* 主要內容區 */
.promotion-list__content {
    display: flex;
    flex-direction: column;
    gap: 10px;
    flex: 1 0 0;
    min-height: 1px;
    min-width: 1px;
}

/* 標題區塊 */
.promotion-list__header {
    display: flex;
    gap: 10px;
    align-items: start;
    width: 100%;
    flex-shrink: 0;
}

/* 標題內容 */
.promotion-list__header-content {
    display: flex;
    flex: 1 0 0;
    gap: 10px;
    align-items: center;
    min-height: 1px;
    min-width: 1px;
}

/* 橘色豎線裝飾 */
.promotion-list__header-bar {
    background-color: #ff7800;
    width: 3px;
    height: 16px;
    border-radius: 10px;
    flex-shrink: 0;
}

/* 標題文字 */
.promotion-list__header-title {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.promotion-list__header-text {
    font-size: 14px;
    font-weight: 700;
    line-height: 20px;
    letter-spacing: 0.42px;
    color: #333333;
    flex-shrink: 0;
}

/* 活動列表 */
.promotion-list__items {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    width: 100%;
    flex-shrink: 0;
}

/* 單個活動項目 */
.promotion-list__item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 5px 0 5px 10px;
    border-radius: 5px;
    width: 100%;
    flex-shrink: 0;
    text-decoration: none;
    cursor: pointer;
}

/* 無連結的項目 */
.promotion-list__item--no-link {
    cursor: default;
}

/* 活動項目左側內容 */
.promotion-list__item-content {
    display: flex;
    gap: 8px;
    align-items: center;
    flex-shrink: 0;
}

/* 橘色標籤 */
.promotion-list__tag {
    background-color: #ff7800;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 5px;
    border-radius: 3px;
    flex-shrink: 0;
}

.promotion-list__tag-text {
    font-size: 10px;
    font-weight: 700;
    line-height: 20px;
    letter-spacing: 0.3px;
    color: #ffffff;
    text-align: center;
    flex-shrink: 0;
}

/* 說明文字 */
.promotion-list__description {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.promotion-list__description-text {
    font-size: 12px;
    font-weight: 400;
    line-height: 20px;
    letter-spacing: 0.36px;
    color: #333333;
    flex-shrink: 0;
}

/* 右側箭頭圖標 */
.promotion-list__arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 5.003px;
    height: 9px;
    flex-shrink: 0;
    transform: rotate(90deg);
}

.promotion-list__arrow i {
    font-size: 10px;
    color: #aaaaaa;
}
