/**
 * 老勤農 - 分類頁額外樣式
 * （主要樣式在 style.css）
 */

/* ========================================
   Category Hero Banner
   ======================================== */
.lq-cat-hero {
    background: linear-gradient(135deg, #6B4226 0%, #8B6914 50%, #C68B00 100%);
    color: #fff;
    padding: 48px 0 40px;
    margin-bottom: var(--lq-spacing-lg);
    position: relative;
    overflow: hidden;
}

/* 右上角浮動圓 */
.lq-cat-hero::before {
    content: '';
    position: absolute;
    top: -40%;
    right: -8%;
    width: 400px;
    height: 400px;
    background: rgba(255, 255, 255, 0.07);
    border-radius: 50%;
}

/* 左下角浮動圓 */
.lq-cat-hero::after {
    content: '';
    position: absolute;
    bottom: -50%;
    left: -5%;
    width: 350px;
    height: 350px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
}

/* 徽章標籤 */
.lq-cat-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 16px;
    border: 1px solid rgba(255, 255, 255, 0.25);
    position: relative;
    z-index: 1;
}

/* 標題 */
.lq-cat-hero-title {
    font-size: 36px;
    font-weight: 700;
    margin: 0 0 8px;
    line-height: 1.2;
    position: relative;
    z-index: 1;
    color: #fff;
}

/* 描述 */
.lq-cat-hero-desc {
    font-size: 15px;
    line-height: 1.6;
    opacity: 0.9;
    margin: 0 0 20px;
    max-width: 700px;
    position: relative;
    z-index: 1;
    color: #fff;
}

/* 底部統計 + 按鈕 */
.lq-cat-hero-footer {
    display: flex;
    align-items: center;
    gap: 20px;
    font-size: 14px;
    opacity: 0.95;
    position: relative;
    z-index: 1;
    flex-wrap: wrap;
}

.lq-cat-hero-stat {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.lq-cat-hero-stat svg {
    opacity: 0.85;
}

/* 白色按鈕（在漸變背景上） */
.lq-btn-white {
    background: #fff;
    color: var(--lq-primary);
    border: none;
    font-weight: 600;
}

.lq-btn-white:hover {
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.15);
}

/* ========================================
   Filter Chips
   ======================================== */
.lq-filter-chip {
    transition: box-shadow 0.25s ease;
}

/* ========================================
   Responsive
   ======================================== */
@media (max-width: 768px) {
    .lq-cat-hero {
        padding: 32px 0 28px;
    }
    .lq-cat-hero-title {
        font-size: 26px;
    }
    .lq-cat-hero-footer {
        gap: 12px;
    }
    .lq-cat-hero-footer .lq-circle-toggle-btn {
        margin-left: 0 !important;
        margin-top: 8px;
        width: 100%;
    }
}
