/* ============================================
   Section Header - Bogura Bazar Theme
============================================ */

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: linear-gradient(135deg, #00A65A, #008D4C);
    padding: 8px 24px;
    border-radius: 12px;
    margin-bottom: 20px;
}

.section-title {
    font-size: 18px;
    font-weight: 700;
    margin: 0;
    color: #ffffff;
}

.section-link {
    color: #ffffff;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    background: rgba(255, 255, 255, 0.2);
    padding: 6px 18px;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.section-link:hover {
    background: rgba(255, 255, 255, 0.35);
    transform: translateX(3px);
}

@media (max-width: 768px) {
    .section-header {
        padding: 8px 16px;
        margin-bottom: 18px;
    }
    .section-title {
        font-size: 16px;
    }
    .section-link {
        font-size: 14px;
        padding: 4px 12px;
    }
}
